diff --git a/README.md b/README.md index aaaafdfb..839f724e 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ nuget-license [options] | `-mapping`, `--licenseurl-to-license-mappings ` | JSON dictionary mapping license URLs to license types. See [docs/licenseurl-mappings-json.md](docs/licenseurl-mappings-json.md). | | `-override`, `--override-package-information ` | JSON list to override package/license info. See [docs/override-package-json.md](docs/override-package-json.md). | | `-d`, `--license-information-download-location ` | Download all license files to the specified folder. | -| `-o`, `--output ` | Output format: `Table`, `Json`, or `JsonPretty` (default: Table). | +| `-o`, `--output ` | Output format: `Table`, `Markdown`, `Json` or `JsonPretty` (default: Table). | | `-err`, `--error-only` | Only show validation errors. | | `-include-ignored`, `--include-ignored-packages` | Include ignored packages in output. | | `-exclude-projects`, `--exclude-projects-matching ` | Exclude projects by name or pattern (supports wildcards or JSON file). See [docs/exclude-projects-json.md](docs/exclude-projects-json.md). | diff --git a/src/NuGetUtility/Output/Table/TableOutputFormatter.cs b/src/NuGetUtility/Output/Table/TableOutputFormatter.cs index 3c49e1ba..181d2baa 100644 --- a/src/NuGetUtility/Output/Table/TableOutputFormatter.cs +++ b/src/NuGetUtility/Output/Table/TableOutputFormatter.cs @@ -9,11 +9,13 @@ public class TableOutputFormatter : IOutputFormatter { private readonly bool _printErrorsOnly; private readonly bool _skipIgnoredPackages; + private readonly bool _printMarkdown; - public TableOutputFormatter(bool printErrorsOnly, bool skipIgnoredPackages) + public TableOutputFormatter(bool printErrorsOnly, bool skipIgnoredPackages, bool printMarkdown = false) { _printErrorsOnly = printErrorsOnly; _skipIgnoredPackages = skipIgnoredPackages; + _printMarkdown = printMarkdown; } public async Task Write(Stream stream, IList results) @@ -52,7 +54,7 @@ public async Task Write(Stream stream, IList results) ColumnDefinition[] relevantColumns = columnDefinitions.Where(c => c.Enabled).ToArray(); await TablePrinterExtensions - .Create(stream, relevantColumns.Select(d => d.Title)) + .Create(stream, relevantColumns.Select(d => d.Title), _printMarkdown) .FromValues( results, license => relevantColumns.Select(d => d.PropertyAccessor(license))) diff --git a/src/NuGetUtility/Output/Table/TablePrinter.cs b/src/NuGetUtility/Output/Table/TablePrinter.cs index d7b02deb..42936327 100644 --- a/src/NuGetUtility/Output/Table/TablePrinter.cs +++ b/src/NuGetUtility/Output/Table/TablePrinter.cs @@ -14,12 +14,14 @@ public class TablePrinter private readonly List _rows = new List(); private readonly Stream _stream; private readonly string[] _titles; + private readonly bool _printMarkdown; - public TablePrinter(Stream stream, IEnumerable titles) + public TablePrinter(Stream stream, IEnumerable titles, bool printMarkdown) { _stream = stream; _titles = titles.ToArray(); _lengths = _titles.Select(t => t.Length).ToArray(); + _printMarkdown = printMarkdown; } public void AddRow(object?[] row) @@ -89,11 +91,14 @@ private async Task WriteRow(string[] values, TextWriter writer) private async Task WriteSeparator(TextWriter writer) { + string startOfLine = _printMarkdown ? "| " : "+-"; + char endOfColumn = _printMarkdown ? ' ' : '-'; + string endOfLine = _printMarkdown ? "|" : "+"; foreach (int l in _lengths) { - await writer.WriteAsync("+-" + new string('-', l) + '-'); + await writer.WriteAsync(startOfLine + new string('-', l) + endOfColumn); } - await writer.WriteLineAsync("+"); + await writer.WriteLineAsync(endOfLine); } } } diff --git a/src/NuGetUtility/Output/Table/TablePrinterExtensions.cs b/src/NuGetUtility/Output/Table/TablePrinterExtensions.cs index 24b5ce4b..7e5f6765 100644 --- a/src/NuGetUtility/Output/Table/TablePrinterExtensions.cs +++ b/src/NuGetUtility/Output/Table/TablePrinterExtensions.cs @@ -7,11 +7,11 @@ internal static class TablePrinterExtensions { public static TablePrinter Create(Stream stream, params string[] headings) { - return new TablePrinter(stream, headings); + return new TablePrinter(stream, headings, false); } - public static TablePrinter Create(Stream stream, IEnumerable headings) + public static TablePrinter Create(Stream stream, IEnumerable headings, bool printMarkdown) { - return new TablePrinter(stream, headings); + return new TablePrinter(stream, headings, printMarkdown); } public static TablePrinter FromValues(this TablePrinter printer, diff --git a/src/NuGetUtility/OutputType.cs b/src/NuGetUtility/OutputType.cs index 4605a123..74525e51 100644 --- a/src/NuGetUtility/OutputType.cs +++ b/src/NuGetUtility/OutputType.cs @@ -7,6 +7,7 @@ public enum OutputType { Table, Json, - JsonPretty + JsonPretty, + Markdown } } diff --git a/src/NuGetUtility/Program.cs b/src/NuGetUtility/Program.cs index 9ee694f8..2896b326 100644 --- a/src/NuGetUtility/Program.cs +++ b/src/NuGetUtility/Program.cs @@ -202,6 +202,7 @@ private IOutputFormatter GetOutputFormatter() OutputType.Json => new JsonOutputFormatter(false, ReturnErrorsOnly, !IncludeIgnoredPackages), OutputType.JsonPretty => new JsonOutputFormatter(true, ReturnErrorsOnly, !IncludeIgnoredPackages), OutputType.Table => new TableOutputFormatter(ReturnErrorsOnly, !IncludeIgnoredPackages), + OutputType.Markdown => new TableOutputFormatter(ReturnErrorsOnly, !IncludeIgnoredPackages, printMarkdown: true), _ => throw new ArgumentOutOfRangeException($"{OutputType} not supported") }; } diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_000702dd06d13d73.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_000702dd06d13d73.verified.txt new file mode 100644 index 00000000..9ec6e1cf --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_000702dd06d13d73.verified.txt @@ -0,0 +1,113 @@ +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Global Paradigm Assistant | 8.0.5 | Expression | We need to calculate the solid state HTTP hard drive! | | | https://randy.org | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Regional Metrics Strategist | 1.2.1 | Unknown | | Try to override the GB driver, maybe it will override the digital driver! | | | | | +| Principal Intranet Architect | 4.9.3 | Unknown | | | | | | | +| Senior Configuration Developer | 4.0.9 | Url | Use the primary SCSI matrix, then you can program the primary matrix! | If we parse the interface, we can get to the JSON interface through the mobile JSON interface! | Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle | | | | +| District Interactions Supervisor | 4.5.2 | Url | The XSS capacitor is down, generate the bluetooth capacitor so we can generate the XSS capacitor! | The ADP firewall is down, input the primary firewall so we can input the ADP firewall! | | | | | +| Future Tactics Assistant | 1.5.5 | Expression | The IB sensor is down, reboot the virtual sensor so we can reboot the IB sensor! | If we calculate the matrix, we can get to the SMS matrix through the bluetooth SMS matrix! | | https://giovanny.net | | | +| Lead Program Technician | 5.8.9 | Expression | | We need to transmit the back-end AGP sensor! | Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer | http://curtis.org | | | +| Future Research Planner | 8.8.9 | Ignored | | | | https://yvette.com | | | +| Forward Usability Specialist | 5.6.9 | Overwrite | I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth! | | | | | | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | | | +| Direct Brand Director | 4.7.4 | Url | You can't navigate the capacitor without programming the solid state SQL capacitor! | | | | | | +| International Division Architect | 8.2.4 | Ignored | | | Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins | http://murphy.name | | | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | | | +| Internal Program Designer | 7.2.5 | Ignored | We need to hack the auxiliary COM hard drive! | | | | | | +| Customer Solutions Officer | 4.5.2 | Expression | You can't copy the matrix without compressing the wireless AGP matrix! | | | https://rylan.name | | | +| Global Optimization Engineer | 8.7.9 | Expression | | quantifying the transmitter won't do anything, we need to synthesize the auxiliary FTP transmitter! | | http://aniya.org | | | +| National Assurance Planner | 2.7.7 | Unknown | | I'll reboot the online AGP alarm, that should alarm the AGP alarm! | Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag | | | | +| Investor Accounts Facilitator | 7.7.8 | Expression | | | Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman | http://scottie.biz | | | +| Customer Division Manager | 1.3.9 | Ignored | 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! | Rafael Altenwerth,Rafael Altenwerth,Rafael Altenwerth | | | | +| Direct Division Officer | 6.5.6 | Url | transmitting the protocol won't do anything, we need to generate the multi-byte THX protocol! | | Glenda Schuppe,Glenda Schuppe | http://catherine.name | | | +| Legacy Interactions Supervisor | 9.7.2 | Ignored | | Try to generate the SAS matrix, maybe it will generate the cross-platform matrix! | Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn | | | | +| International Optimization Coordinator | 6.5.5 | Ignored | | | Darnell Terry | http://antoinette.org | | | +| Regional Functionality Agent | 5.9.9 | Overwrite | We need to index the 1080p SAS hard drive! | I'll connect the digital JBOD application, that should application the JBOD application! | Gloria Williamson,Gloria Williamson,Gloria Williamson,Gloria Williamson | http://arthur.net | | | +| Product Solutions Manager | 9.5.2 | Overwrite | I'll hack the primary SDD card, that should card the SDD card! | hacking the transmitter won't do anything, we need to index the open-source CSS transmitter! | Sergio Bailey,Sergio Bailey,Sergio Bailey | | | | +| Future Identity Agent | 8.8.0 | Ignored | I'll parse the 1080p USB protocol, that should protocol the USB protocol! | | | https://reva.name | | | +| Investor Quality Associate | 0.5.1 | Expression | | Try to reboot the SSL alarm, maybe it will reboot the solid state alarm! | Carrie Hansen,Carrie Hansen,Carrie Hansen,Carrie Hansen | https://ezequiel.biz | | | +| Senior Paradigm Analyst | 1.1.1 | Ignored | | If we navigate the alarm, we can get to the XML alarm through the cross-platform XML alarm! | | | | | +| Dynamic Branding Manager | 1.4.0 | Overwrite | You can't navigate the application without generating the cross-platform COM application! | Try to program the FTP alarm, maybe it will program the virtual alarm! | | http://dario.info | | | +| Chief Factors Developer | 5.9.5 | Url | | Try to connect the ADP system, maybe it will connect the solid state system! | Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady | | | | +| Principal Operations Assistant | 0.9.0 | Url | I'll copy the auxiliary HDD bus, that should bus the HDD bus! | I'll copy the digital USB circuit, that should circuit the USB circuit! | | | | | +| Dynamic Data Technician | 4.2.3 | Url | I'll copy the optical RAM feed, that should feed the RAM feed! | | June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds | http://nia.info | | | +| Corporate Intranet Specialist | 3.5.6 | Expression | | | Edmund Lehner,Edmund Lehner,Edmund Lehner,Edmund Lehner | | | | +| Customer Communications Engineer | 6.9.4 | Overwrite | | | Tanya Reinger,Tanya Reinger,Tanya Reinger | http://tito.name | | | +| Central Division Administrator | 1.0.4 | Overwrite | We need to program the optical COM microchip! | We need to hack the haptic SAS microchip! | | | | | +| Future Configuration Officer | 7.6.0 | Unknown | You can't compress the alarm without parsing the optical JBOD alarm! | I'll compress the back-end SSL system, that should system the SSL system! | Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie | | | | +| Regional Optimization Administrator | 3.6.4 | Expression | | I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive! | | http://serenity.info | | | +| Global Optimization Architect | 1.5.0 | Unknown | Try to navigate the SCSI sensor, maybe it will navigate the mobile sensor! | | | | | | +| Customer Program Developer | 2.9.8 | Expression | | You can't transmit the pixel without calculating the bluetooth FTP pixel! | | http://lenora.com | | | +| District Assurance Technician | 8.5.5 | Overwrite | | | | http://zander.com | | | +| Future Tactics Specialist | 0.2.2 | Ignored | We need to override the primary SQL pixel! | We need to transmit the redundant EXE driver! | Alejandro Cruickshank,Alejandro Cruickshank,Alejandro Cruickshank,Alejandro Cruickshank | | | | +| Central Research Technician | 2.8.8 | Url | | You can't generate the program without connecting the bluetooth USB program! | | | | | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| Human Markets Planner | 5.0.1 | Expression | Try to back up the COM driver, maybe it will back up the bluetooth driver! | | | | | | +| Corporate Marketing Coordinator | 3.6.1 | Overwrite | | | | https://marcos.org | | | +| Legacy Security Facilitator | 1.9.0 | Expression | | Use the cross-platform ADP alarm, then you can back up the cross-platform alarm! | | https://edythe.info | | | +| Customer Metrics Developer | 2.2.9 | Ignored | | | Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir | | | | +| Human Identity Representative | 4.1.5 | Overwrite | The SAS bus is down, program the neural bus so we can program the SAS bus! | | Joyce Auer,Joyce Auer,Joyce Auer | http://alyce.biz | | | +| Principal Brand Executive | 7.2.7 | Unknown | | | | https://dariana.com | | | +| Global Identity Supervisor | 0.9.1 | Overwrite | | | | | | | +| Dynamic Division Representative | 7.3.5 | Unknown | | I'll index the haptic FTP alarm, that should alarm the FTP alarm! | Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson | http://taurean.net | | | +| Dynamic Security Director | 0.0.2 | Url | transmitting the feed won't do anything, we need to navigate the redundant SDD feed! | Try to parse the HTTP port, maybe it will parse the bluetooth port! | Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block | | | | +| Lead Solutions Technician | 1.5.7 | Unknown | | | | | | | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | | | +| Customer Branding Orchestrator | 8.3.7 | Overwrite | | We need to bypass the neural USB capacitor! | Nora Dietrich | http://nona.com | | | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | | | +| Central Implementation Planner | 7.6.0 | Ignored | | Try to generate the HDD panel, maybe it will generate the solid state panel! | | | | | +| Human Tactics Facilitator | 5.7.0 | Url | Try to bypass the HTTP application, maybe it will bypass the digital application! | | | | | | +| District Optimization Technician | 5.2.3 | Overwrite | | | Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti | https://douglas.info | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | | | +| International Tactics Administrator | 9.9.9 | Url | | | | | | | +| Lead Infrastructure Specialist | 7.2.6 | Ignored | | | Laura Abshire,Laura Abshire,Laura Abshire,Laura Abshire,Laura Abshire | https://wanda.com | | | +| Regional Directives Liaison | 4.7.8 | Expression | If we connect the interface, we can get to the SCSI interface through the auxiliary SCSI interface! | | Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic | https://glennie.biz | | | +| Customer Web Assistant | 1.9.0 | Unknown | | | | | | | +| Forward Factors Architect | 6.7.6 | Ignored | | The THX transmitter is down, program the neural transmitter so we can program the THX transmitter! | Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts | | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| Principal Security Producer | 7.3.3 | Ignored | You can't generate the interface without quantifying the mobile FTP interface! | Use the digital SMTP bandwidth, then you can generate the digital bandwidth! | | http://jarrell.biz | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | | | +| Human Program Analyst | 3.1.8 | Expression | If we back up the application, we can get to the USB application through the cross-platform USB application! | | | http://efrain.org | | | +| Customer Mobility Assistant | 4.2.9 | 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 | http://adonis.biz | | | +| Human Branding Coordinator | 5.8.1 | Ignored | | | | | | | +| Investor Research Coordinator | 1.9.7 | Ignored | Use the cross-platform GB bus, then you can calculate the cross-platform bus! | | | https://maegan.name | | | +| Global Implementation Strategist | 5.9.8 | Ignored | | | Colleen Schroeder,Colleen Schroeder | https://enos.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 | | | +| 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 | | | | +| Forward Data Orchestrator | 3.3.5 | Expression | Use the haptic XML driver, then you can index the haptic driver! | compressing the system won't do anything, we need to compress the optical RSS system! | | | | | +| Investor Tactics Director | 0.4.3 | Expression | | | | https://aylin.com | | | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | | | +| Customer Assurance Officer | 0.3.1 | Ignored | I'll navigate the digital CSS sensor, that should sensor the CSS sensor! | | | https://clementine.info | | | +| Dynamic Solutions Agent | 0.0.5 | Overwrite | Use the haptic USB card, then you can navigate the haptic card! | | | | | | +| Dynamic Factors Associate | 1.8.3 | Unknown | | You can't navigate the panel without calculating the open-source THX panel! | | http://dovie.name | | | +| Dynamic Security Specialist | 7.8.5 | Overwrite | Try to input the GB pixel, maybe it will input the wireless pixel! | You can't transmit the bus without indexing the digital TCP bus! | Guy Waters,Guy Waters | http://nova.biz | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| International Branding Producer | 3.8.2 | Expression | We need to generate the solid state AGP microchip! | | | | | | +| Principal Factors Representative | 4.5.7 | Ignored | Try to input the RAM interface, maybe it will input the bluetooth interface! | The GB card is down, hack the digital card so we can hack the GB card! | Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker | https://imelda.org | | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | | | +| Corporate Intranet Analyst | 0.9.0 | Ignored | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp | http://hanna.net | | | +| Lead Operations Supervisor | 4.5.2 | Expression | The AI panel is down, transmit the open-source panel so we can transmit the AI panel! | | | | | | +| Chief Program Associate | 2.6.7 | Unknown | We need to compress the optical PNG array! | | Wilbert Kunze,Wilbert Kunze,Wilbert Kunze,Wilbert Kunze | http://coy.info | | | +| Central Tactics Developer | 0.4.7 | Ignored | indexing the capacitor won't do anything, we need to program the haptic EXE capacitor! | The JBOD application is down, generate the solid state application so we can generate the JBOD application! | Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley | https://royal.name | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Brand Strategist | 3.9.3 | Url | | | Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy | https://rowena.info | | | +| Dynamic Implementation Engineer | 6.7.1 | Overwrite | We need to transmit the open-source EXE interface! | | | http://margie.info | | | +| Chief Infrastructure Specialist | 9.0.5 | Overwrite | hacking the port won't do anything, we need to back up the optical SMS port! | | Jackie Schumm | | | | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | | | +| International Solutions Planner | 9.0.0 | Url | Use the multi-byte SMTP program, then you can synthesize the multi-byte program! | | | | | | +| Product Directives Engineer | 8.2.3 | Unknown | transmitting the bus won't do anything, we need to navigate the online IB bus! | | Maggie Lindgren | | | | +| Regional Identity Engineer | 1.9.4 | Ignored | | The HTTP microchip is down, copy the digital microchip so we can copy the HTTP microchip! | Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston | | | | +| Human Paradigm Assistant | 8.8.8 | Expression | | | Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich | | | | +| Product Functionality Supervisor | 9.4.5 | Overwrite | Use the 1080p AI microchip, then you can reboot the 1080p microchip! | Use the open-source ADP matrix, then you can copy the open-source matrix! | | | | | +| Human Accounts Orchestrator | 4.1.6 | Url | | | | | | | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0054962e5cfcd6b0.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0054962e5cfcd6b0.verified.txt new file mode 100644 index 00000000..22bfd49d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0054962e5cfcd6b0.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_008e4b6ae444f6bc.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_008e4b6ae444f6bc.verified.txt new file mode 100644 index 00000000..1b3f333e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_008e4b6ae444f6bc.verified.txt @@ -0,0 +1,130 @@ +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.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 | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Senior Solutions Strategist | 7.5.0 | 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 | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Legacy Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| Corporate Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| Customer Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| Corporate Accountability Designer | 0.8.0 | Ignored | We need to hack the online FTP application! | | Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn | http://taya.info | Abelardo | http://carolina.name | +| | | | | | | | Lindsey | http://rigoberto.org | +| | | | | | | | Lou | http://darlene.biz | +| | | | | | | | Oliver | https://filomena.com | +| | | | | | | | Vincenzo | https://ulices.biz | +| | | | | | | | Florida | http://jovan.net | +| | | | | | | | Ari | https://chad.com | +| | | | | | | | Yvonne | http://jada.name | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | http://celestine.info | Clemens | https://abagail.info | +| | | | | | | | Franz | http://prudence.info | +| | | | | | | | Casper | https://alva.com | +| | | | | | | | Mario | http://alexandria.biz | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_01486fedb2e3b672.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_01486fedb2e3b672.verified.txt new file mode 100644 index 00000000..9bd31f55 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_01486fedb2e3b672.verified.txt @@ -0,0 +1,130 @@ +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| Corporate Accountability Designer | 0.8.0 | Ignored | We need to hack the online FTP application! | | Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn | http://taya.info | Abelardo | http://carolina.name | +| | | | | | | | Lindsey | http://rigoberto.org | +| | | | | | | | Lou | http://darlene.biz | +| | | | | | | | Oliver | https://filomena.com | +| | | | | | | | Vincenzo | https://ulices.biz | +| | | | | | | | Florida | http://jovan.net | +| | | | | | | | Ari | https://chad.com | +| | | | | | | | Yvonne | http://jada.name | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Dynamic Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.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 | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Senior Solutions Strategist | 7.5.0 | 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 Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Customer Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | http://celestine.info | Clemens | https://abagail.info | +| | | | | | | | Franz | http://prudence.info | +| | | | | | | | Casper | https://alva.com | +| | | | | | | | Mario | http://alexandria.biz | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_014c2ee9f0b210f7.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_014c2ee9f0b210f7.verified.txt new file mode 100644 index 00000000..52558874 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_014c2ee9f0b210f7.verified.txt @@ -0,0 +1,39 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_025af9b1bdaaf443.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_025af9b1bdaaf443.verified.txt new file mode 100644 index 00000000..1968cf36 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_025af9b1bdaaf443.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_02b446082748e5c9.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_02b446082748e5c9.verified.txt new file mode 100644 index 00000000..de7587d3 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_02b446082748e5c9.verified.txt @@ -0,0 +1,31 @@ +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| Principal Assurance Representative | 3.8.2 | Ignored | | | | Patsy Erdman,Patsy Erdman,Patsy Erdman,Patsy Erdman | | Jadon | https://amelia.biz | +| | | | | | | | | Toni | http://angie.name | +| | | | | | | | | Ardella | http://melissa.net | +| | | | | | | | | Sandra | http://pearline.org | +| | | | | | | | | Noble | https://dusty.net | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_02dba25eeb462b7f.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_02dba25eeb462b7f.verified.txt new file mode 100644 index 00000000..ae037e03 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_02dba25eeb462b7f.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_04968832d0f0d79b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_04968832d0f0d79b.verified.txt new file mode 100644 index 00000000..3ad9b0b2 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_04968832d0f0d79b.verified.txt @@ -0,0 +1,22 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_04fa664957d11360.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_04fa664957d11360.verified.txt new file mode 100644 index 00000000..875afa85 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_04fa664957d11360.verified.txt @@ -0,0 +1,127 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | -------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | -------------------- | --------- | ---------------------- | +| Direct Accountability Assistant | 2.2.8 | Url | bypassing the protocol won't do anything, we need to compress the primary HTTP protocol! | | http://natasha.info | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Forward Marketing Orchestrator | 1.6.4 | Overwrite | I'll connect the primary SQL sensor, that should sensor the SQL sensor! | The SMTP driver is down, bypass the mobile driver so we can bypass the SMTP driver! | https://lukas.com | | | +| Regional Factors Designer | 7.4.1 | Overwrite | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | | | | +| National Intranet Technician | 8.0.0 | Overwrite | | | | | | +| Dynamic Factors Facilitator | 6.5.2 | Expression | | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | http://magnolia.com | | | +| Chief Applications Facilitator | 7.7.6 | Overwrite | | parsing the card won't do anything, we need to synthesize the online SQL card! | | | | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | http://hanna.net | | | +| Dynamic Division Consultant | 4.8.7 | Overwrite | Use the multi-byte IB microchip, then you can connect the multi-byte microchip! | backing up the feed won't do anything, we need to compress the haptic SMTP feed! | http://raquel.net | | | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | | | +| Global Division Designer | 8.2.7 | Expression | Try to program the EXE hard drive, maybe it will program the virtual hard drive! | | https://pamela.name | | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | | | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| National Applications Designer | 6.4.9 | Expression | | Use the back-end SMS feed, then you can program the back-end feed! | | | | +| Human Group Designer | 9.9.1 | Expression | Use the haptic XSS application, then you can synthesize the haptic application! | If we transmit the hard drive, we can get to the AGP hard drive through the bluetooth AGP hard drive! | http://jodie.org | | | +| Direct Assurance Strategist | 1.3.7 | Expression | The RSS firewall is down, hack the neural firewall so we can hack the RSS firewall! | | | | | +| Global Mobility Facilitator | 9.5.8 | Expression | | | | | | +| Principal Markets Designer | 3.8.8 | Overwrite | overriding the transmitter won't do anything, we need to generate the cross-platform SCSI transmitter! | | | | | +| Human Optimization Producer | 5.0.9 | Overwrite | | | | | | +| Product Assurance Technician | 0.8.2 | Overwrite | | | https://steve.info | | | +| Direct Data Orchestrator | 2.4.5 | Expression | | Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor! | | | | +| Human Optimization Facilitator | 7.4.8 | Overwrite | 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! | https://cooper.name | | | +| Global Program Representative | 5.1.0 | Url | | If we back up the monitor, we can get to the PCI monitor through the virtual PCI monitor! | | | | +| Forward Functionality Developer | 5.1.1 | Url | | | | | | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Central Identity Analyst | 8.9.6 | Expression | | | http://leta.org | | | +| Corporate Marketing Assistant | 8.7.9 | Url | | You can't program the firewall without connecting the wireless AI firewall! | http://arlene.biz | | | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | | | +| National Research Facilitator | 6.0.6 | Expression | Use the primary EXE array, then you can navigate the primary array! | | | | | +| Direct Mobility Designer | 7.7.3 | Expression | | | http://geovanny.info | | | +| Investor Creative Architect | 8.2.4 | Unknown | | | | | | +| Legacy Directives Supervisor | 9.6.2 | Url | The PNG circuit is down, back up the online circuit so we can back up the PNG circuit! | | | | | +| Human Directives Specialist | 4.3.4 | Unknown | Use the digital XSS hard drive, then you can compress the digital hard drive! | You can't generate the card without synthesizing the bluetooth PNG card! | | | | +| Chief Intranet Facilitator | 6.6.1 | Expression | | | https://rosalind.net | | | +| Central Web Assistant | 4.2.1 | Unknown | | Use the wireless ADP array, then you can input the wireless array! | https://verda.net | | | +| Dynamic Accountability Strategist | 7.0.9 | Unknown | You can't bypass the sensor without transmitting the neural JSON sensor! | | | | | +| Senior Optimization Assistant | 3.6.0 | Overwrite | | overriding the pixel won't do anything, we need to copy the optical JSON pixel! | http://akeem.info | | | +| Senior Security Consultant | 2.7.5 | Unknown | | | http://adelbert.biz | | | +| Legacy Directives Officer | 2.4.4 | Url | | The PCI program is down, hack the multi-byte program so we can hack the PCI program! | http://sedrick.biz | | | +| Investor Interactions Liaison | 4.4.9 | Overwrite | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | | | | +| Senior Brand Analyst | 2.5.0 | Url | | overriding the interface won't do anything, we need to override the virtual THX interface! | | | | +| Corporate Directives Planner | 8.8.5 | Unknown | The CSS bus is down, generate the 1080p bus so we can generate the CSS bus! | We need to back up the 1080p SMTP feed! | | | | +| Lead Usability Assistant | 1.3.4 | Overwrite | quantifying the matrix won't do anything, we need to synthesize the wireless PCI matrix! | Use the solid state SQL firewall, then you can connect the solid state firewall! | https://duane.info | | | +| Investor Implementation Technician | 2.7.9 | Unknown | | | http://crystal.name | | | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | | | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | | | +| Corporate Tactics Director | 2.5.7 | Url | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | http://marcos.info | | | +| Regional Operations Coordinator | 0.2.5 | Unknown | | I'll hack the cross-platform SSL array, that should array the SSL array! | http://ena.com | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | | | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | | | +| Forward Intranet Engineer | 2.5.9 | Expression | The RSS sensor is down, input the 1080p sensor so we can input the RSS sensor! | Try to index the ADP port, maybe it will index the auxiliary port! | | | | +| Future Accounts Architect | 9.1.8 | Url | You can't bypass the firewall without indexing the multi-byte COM firewall! | | https://fermin.biz | | | +| Senior Factors Administrator | 1.6.1 | Expression | I'll calculate the solid state ADP panel, that should panel the ADP panel! | If we generate the circuit, we can get to the XSS circuit through the primary XSS circuit! | | | | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | | | +| Chief Division Producer | 2.3.9 | Overwrite | | | | | | +| District Operations Director | 0.6.3 | Url | | We need to program the cross-platform FTP hard drive! | https://dejah.net | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| National Creative Coordinator | 5.9.5 | Expression | | | https://bobbie.info | | | +| International Intranet Planner | 6.4.6 | Url | The IB interface is down, program the redundant interface so we can program the IB interface! | | https://lenna.com | | | +| 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 | | | +| Dynamic Quality Analyst | 0.9.5 | Overwrite | We need to index the optical HTTP application! | I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor! | | | | +| National Communications Orchestrator | 4.5.1 | Unknown | The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit! | | | | | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | | | +| Human Quality Facilitator | 1.2.0 | Expression | We need to copy the online THX firewall! | You can't calculate the application without calculating the auxiliary AI application! | | | | +| Forward Configuration Supervisor | 9.0.8 | Overwrite | You can't program the protocol without overriding the primary IB protocol! | | http://quinn.name | | | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | | | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| National Solutions Associate | 9.1.2 | Overwrite | | | | | | +| Human Program Technician | 2.8.4 | Unknown | | | http://tomasa.info | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| Dynamic Integration Architect | 1.6.3 | Overwrite | | The RAM feed is down, copy the neural feed so we can copy the RAM feed! | | | | +| Human Directives Engineer | 5.3.9 | Url | | | | | | +| Central Tactics Engineer | 6.3.5 | Unknown | connecting the bandwidth won't do anything, we need to bypass the multi-byte AI bandwidth! | | | | | +| Human Operations Assistant | 0.7.2 | Overwrite | Use the haptic USB driver, then you can override the haptic driver! | | http://camila.net | | | +| Customer Functionality Consultant | 5.5.1 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | http://terence.com | | | +| Product Creative Facilitator | 8.4.6 | Unknown | 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://juliana.net | | | +| Chief Factors Supervisor | 5.2.2 | Expression | | | http://helga.com | | | +| Principal Accounts Coordinator | 1.0.4 | Overwrite | | I'll connect the digital JSON bus, that should bus the JSON bus! | http://rene.com | | | +| Dynamic Accountability Analyst | 4.9.7 | Overwrite | | | https://jaron.info | | | +| International Functionality Agent | 8.7.6 | Unknown | | If we hack the card, we can get to the JBOD card through the optical JBOD card! | http://jalyn.org | | | +| International Quality Director | 0.3.8 | Expression | | | | | | +| Internal Directives Designer | 0.4.8 | Url | The EXE protocol is down, reboot the redundant protocol so we can reboot the EXE protocol! | | | | | +| Lead Branding Developer | 4.1.5 | Url | | | http://abe.com | | | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | -------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_05000572b30e85b6.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_05000572b30e85b6.verified.txt new file mode 100644 index 00000000..1b048e00 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_05000572b30e85b6.verified.txt @@ -0,0 +1,101 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Corporate Intranet Associate | 7.5.1 | Overwrite | | 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! | | | | | +| 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Product Data Liaison | 7.8.8 | Unknown | Try to calculate the GB card, maybe it will calculate the wireless card! | | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | | | Lewis | https://alisa.com | +| | | | | | | | | Delores | https://layne.name | +| | | | | | | | | Delphine | https://katlynn.org | +| | | | | | | | | Meredith | https://johanna.info | +| | | | | | | | | Jacklyn | https://kadin.com | +| | | | | | | | | Hardy | https://donna.info | +| Lead Configuration Liaison | 1.8.9 | Expression | | connecting the transmitter won't do anything, we need to program the cross-platform XSS transmitter! | | | http://esther.biz | | | +| National Accountability Producer | 6.9.7 | Unknown | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | https://linwood.biz | Travon | https://dedrick.name | +| | | | | | | | | Elissa | http://kaci.org | +| | | | | | | | | Brandi | https://aniyah.com | +| | | | | | | | | Tyson | https://bonita.org | +| | | | | | | | | Jazlyn | http://madonna.net | +| | | | | | | | | Deangelo | https://jess.info | +| | | | | | | | | Alvah | https://hans.net | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| Chief Functionality Planner | 5.1.2 | Unknown | | I'll calculate the 1080p HDD system, that should system the HDD system! | | Matt Mills,Matt Mills | http://myrtice.com | | | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| International Intranet Planner | 1.3.4 | Expression | 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 | Ahmad | https://lupe.com | +| | | | | | | | | Randi | https://jaiden.biz | +| | | | | | | | | Patience | https://marlene.name | +| | | | | | | | | Lenna | https://franco.name | +| | | | | | | | | Kyleigh | https://tevin.name | +| | | | | | | | | Sallie | https://jordane.name | +| | | | | | | | | Willy | https://daija.info | +| | | | | | | | | Jannie | https://retta.net | +| | | | | | | | | Lottie | http://yasmine.com | +| | | | | | | | | Delia | http://khalil.com | +| Investor Operations Director | 5.6.0 | Expression | Try to input the AI microchip, maybe it will input the 1080p microchip! | | If we synthesize the sensor, we can get to the AI sensor through the redundant AI sensor! | | https://alene.info | Elouise | https://ron.com | +| | | | | | | | | Brown | https://cordia.com | +| | | | | | | | | Ericka | https://eugene.com | +| | | | | | | | | Rashad | http://thomas.com | +| | | | | | | | | Antonia | https://marcelle.org | +| Global Mobility Technician | 8.6.3 | Unknown | | We need to input the haptic XML port! | | Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante | | Lonie | http://wilburn.org | +| | | | | | | | | Concepcion | http://ed.org | +| | | | | | | | | Amanda | https://sophie.net | +| | | | | | | | | Claudine | http://ofelia.biz | +| | | | | | | | | Petra | http://clare.name | +| | | | | | | | | Ozella | https://verla.name | +| | | | | | | | | Denis | http://pete.com | +| District Creative Designer | 1.4.6 | Url | We need to program the haptic IB panel! | | | | http://cameron.info | | | +| Global Mobility Facilitator | 8.5.9 | Url | | We need to parse the primary PCI protocol! | | Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch | https://itzel.info | Mitchel | http://carleton.name | +| | | | | | | | | Madalyn | http://narciso.net | +| | | | | | | | | Mia | http://nicklaus.net | +| | | | | | | | | Abelardo | http://carolina.name | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | | | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| Forward Tactics Agent | 6.8.8 | Url | | We need to back up the primary SMTP circuit! | The COM bandwidth is down, input the auxiliary bandwidth so we can input the COM bandwidth! | Jon Schulist,Jon Schulist | https://flo.info | Diana | http://eula.name | +| | | | | | | | | Raphael | https://zackery.info | +| | | | | | | | | Nettie | https://brayan.com | +| Investor Division Assistant | 9.6.2 | Url | | I'll parse the primary PCI matrix, that should matrix the PCI matrix! | | | | Nya | http://sunny.biz | +| | | | | | | | | Arlo | https://cordia.info | +| | | | | | | | | Linnie | https://marcos.name | +| | | | | | | | | Luella | http://frederic.name | +| | | | | | | | | Lucinda | https://dion.name | +| | | | | | | | | Jayson | https://ryleigh.net | +| | | | | | | | | Mervin | https://lorenza.net | +| Product Interactions Planner | 7.4.0 | Expression | Try to navigate the PCI matrix, maybe it will navigate the haptic matrix! | | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | http://bertha.net | Rey | https://connie.info | +| | | | | | | | | Hollie | http://rico.name | +| | | | | | | | | Marshall | http://pierce.org | +| | | | | | | | | 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 | +| Chief Solutions Administrator | 0.4.1 | Unknown | | 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 | Shaun | https://antwan.org | +| | | | | | | | | Hazel | https://forrest.net | +| | | | | | | | | Brianne | https://dorothea.name | +| | | | | | | | | Don | http://torey.com | +| | | | | | | | | Cedrick | https://zachariah.net | +| | | | | | | | | Marcelle | https://adah.org | +| | | | | | | | | Barney | http://erica.org | +| | | | | | | | | Jordi | https://alysha.com | +| | | | | | | | | Kristina | https://pattie.info | +| | | | | | | | | Cory | http://kailey.com | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0522f8c6bc46ee4d.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0522f8c6bc46ee4d.verified.txt new file mode 100644 index 00000000..29ccef6c --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0522f8c6bc46ee4d.verified.txt @@ -0,0 +1,145 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| National Creative Engineer | 4.0.0 | Ignored | You can't parse the alarm without overriding the haptic SMTP alarm! | | | Candida | https://craig.biz | +| | | | | | | Timmothy | https://joanny.biz | +| | | | | | | Alfonzo | http://dorothea.org | +| | | | | | | 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 | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| Regional Mobility Manager | 2.7.0 | Ignored | | | http://gianni.info | Alvina | http://elouise.name | +| | | | | | | Ron | http://brown.org | +| | | | | | | Cordia | http://ericka.name | +| | | | | | | Eugene | http://rashad.info | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Forward Directives Supervisor | 8.7.6 | Ignored | | The SSL microchip is down, hack the optical microchip so we can hack the SSL microchip! | http://shaun.org | Jadon | https://amelia.biz | +| | | | | | | Toni | http://angie.name | +| | | | | | | Ardella | http://melissa.net | +| | | | | | | Sandra | http://pearline.org | +| | | | | | | Noble | https://dusty.net | +| Chief Brand Associate | 7.6.8 | Ignored | | | https://lauriane.com | Devin | https://ramona.info | +| | | | | | | Alice | http://laverne.info | +| | | | | | | Layne | https://brooks.name | +| | | | | | | Kaitlyn | http://serenity.biz | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | Ignored | | The COM application is down, quantify the auxiliary application so we can quantify the COM application! | | Nyah | http://oliver.com | +| | | | | | | Ettie | http://lonny.net | +| | | | | | | Onie | https://cassie.biz | +| | | | | | | Solon | https://buck.biz | +| | | | | | | Taryn | http://hilton.com | +| | | | | | | Isabel | http://rogers.net | +| | | | | | | Bertrand | http://annetta.org | +| | | | | | | Remington | https://efrain.info | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Legacy Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_05bdbb0f2edf66a9.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_05bdbb0f2edf66a9.verified.txt new file mode 100644 index 00000000..bb0cad9d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_05bdbb0f2edf66a9.verified.txt @@ -0,0 +1,44 @@ +| -------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | | | +| Legacy Interactions Supervisor | 9.7.2 | Ignored | | Try to generate the SAS matrix, maybe it will generate the cross-platform matrix! | Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn | | | | +| International Optimization Coordinator | 6.5.5 | Ignored | | | Darnell Terry | http://antoinette.org | | | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | | | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | | | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | | | +| International Tactics Administrator | 9.9.9 | Url | | | | | | | +| Global Implementation Strategist | 5.9.8 | Ignored | | | Colleen Schroeder,Colleen Schroeder | https://enos.info | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | | | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| Internal Program Designer | 7.2.5 | Ignored | We need to hack the auxiliary COM hard drive! | | | | | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Customer Assurance Officer | 0.3.1 | Ignored | I'll navigate the digital CSS sensor, that should sensor the CSS sensor! | | | https://clementine.info | | | +| Customer Division Manager | 1.3.9 | Ignored | 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! | Rafael Altenwerth,Rafael Altenwerth,Rafael Altenwerth | | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_05e6cf64f7e7658f.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_05e6cf64f7e7658f.verified.txt new file mode 100644 index 00000000..9e714675 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_05e6cf64f7e7658f.verified.txt @@ -0,0 +1,8 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | ------- | -------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | ------- | -------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_05f62e40f779223e.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_05f62e40f779223e.verified.txt new file mode 100644 index 00000000..9bd31f55 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_05f62e40f779223e.verified.txt @@ -0,0 +1,130 @@ +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| Corporate Accountability Designer | 0.8.0 | Ignored | We need to hack the online FTP application! | | Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn | http://taya.info | Abelardo | http://carolina.name | +| | | | | | | | Lindsey | http://rigoberto.org | +| | | | | | | | Lou | http://darlene.biz | +| | | | | | | | Oliver | https://filomena.com | +| | | | | | | | Vincenzo | https://ulices.biz | +| | | | | | | | Florida | http://jovan.net | +| | | | | | | | Ari | https://chad.com | +| | | | | | | | Yvonne | http://jada.name | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Dynamic Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.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 | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Senior Solutions Strategist | 7.5.0 | 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 Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Customer Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | http://celestine.info | Clemens | https://abagail.info | +| | | | | | | | Franz | http://prudence.info | +| | | | | | | | Casper | https://alva.com | +| | | | | | | | Mario | http://alexandria.biz | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_06496a540b635544.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_06496a540b635544.verified.txt new file mode 100644 index 00000000..e1bebdb3 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_06496a540b635544.verified.txt @@ -0,0 +1,16 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0698070d47130694.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0698070d47130694.verified.txt new file mode 100644 index 00000000..15bd6242 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0698070d47130694.verified.txt @@ -0,0 +1,195 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Legacy Directives Supervisor | 9.6.2 | Url | The PNG circuit is down, back up the online circuit so we can back up the PNG circuit! | | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Human Program Technician | 2.8.4 | Unknown | | | http://tomasa.info | | | +| Global Division Designer | 8.2.7 | Expression | Try to program the EXE hard drive, maybe it will program the virtual hard drive! | | https://pamela.name | | | +| National Communications Orchestrator | 4.5.1 | Unknown | The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit! | | | | | +| Human Directives Specialist | 4.3.4 | Unknown | Use the digital XSS hard drive, then you can compress the digital hard drive! | You can't generate the card without synthesizing the bluetooth PNG card! | | | | +| Human Optimization Facilitator | 7.4.8 | Overwrite | 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! | https://cooper.name | | | +| Direct Assurance Strategist | 1.3.7 | Expression | The RSS firewall is down, hack the neural firewall so we can hack the RSS firewall! | | | | | +| National Intranet Technician | 8.0.0 | Overwrite | | | | | | +| Senior Brand Analyst | 2.5.0 | Url | | overriding the interface won't do anything, we need to override the virtual THX interface! | | | | +| Internal Directives Designer | 0.4.8 | Url | The EXE protocol is down, reboot the redundant protocol so we can reboot the EXE protocol! | | | | | +| Corporate Tactics Director | 2.5.7 | Url | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | http://marcos.info | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Direct Accountability Assistant | 2.2.8 | Url | bypassing the protocol won't do anything, we need to compress the primary HTTP protocol! | | http://natasha.info | | | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | +| Chief Applications Facilitator | 7.7.6 | Overwrite | | parsing the card won't do anything, we need to synthesize the online SQL card! | | | | +| Forward Functionality Developer | 5.1.1 | Url | | | | | | +| Central Identity Analyst | 8.9.6 | Expression | | | http://leta.org | | | +| Investor Interactions Liaison | 4.4.9 | Overwrite | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | | | | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | | | +| Dynamic Quality Analyst | 0.9.5 | Overwrite | We need to index the optical HTTP application! | I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor! | | | | +| Corporate Directives Planner | 8.8.5 | Unknown | The CSS bus is down, generate the 1080p bus so we can generate the CSS bus! | We need to back up the 1080p SMTP feed! | | | | +| Senior Optimization Assistant | 3.6.0 | Overwrite | | overriding the pixel won't do anything, we need to copy the optical JSON pixel! | http://akeem.info | | | +| Investor Creative Architect | 8.2.4 | Unknown | | | | | | +| Human Operations Assistant | 0.7.2 | Overwrite | Use the haptic USB driver, then you can override the haptic driver! | | http://camila.net | | | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | | | +| Direct Data Orchestrator | 2.4.5 | Expression | | Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor! | | | | +| Legacy Directives Officer | 2.4.4 | Url | | The PCI program is down, hack the multi-byte program so we can hack the PCI program! | http://sedrick.biz | | | +| Regional Factors Designer | 7.4.1 | Overwrite | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | | | | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| Chief Division Producer | 2.3.9 | Overwrite | | | | | | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Principal Markets Designer | 3.8.8 | Overwrite | overriding the transmitter won't do anything, we need to generate the cross-platform SCSI transmitter! | | | | | +| Product Creative Facilitator | 8.4.6 | Unknown | 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://juliana.net | | | +| Human Optimization Producer | 5.0.9 | Overwrite | | | | | | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | | | +| National Creative Coordinator | 5.9.5 | Expression | | | https://bobbie.info | | | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | | | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 | +| Principal Accounts Coordinator | 1.0.4 | Overwrite | | I'll connect the digital JSON bus, that should bus the JSON bus! | http://rene.com | | | +| Senior Security Consultant | 2.7.5 | Unknown | | | http://adelbert.biz | | | +| Regional Operations Coordinator | 0.2.5 | Unknown | | I'll hack the cross-platform SSL array, that should array the SSL array! | http://ena.com | | | +| Human Directives Engineer | 5.3.9 | Url | | | | | | +| Central Web Assistant | 4.2.1 | Unknown | | Use the wireless ADP array, then you can input the wireless array! | https://verda.net | | | +| Global Program Representative | 5.1.0 | Url | | If we back up the monitor, we can get to the PCI monitor through the virtual PCI monitor! | | | | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | http://hanna.net | | | +| Customer Functionality Consultant | 5.5.1 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | http://terence.com | | | +| Senior Factors Administrator | 1.6.1 | Expression | I'll calculate the solid state ADP panel, that should panel the ADP panel! | If we generate the circuit, we can get to the XSS circuit through the primary XSS circuit! | | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Dynamic Division Consultant | 4.8.7 | Overwrite | Use the multi-byte IB microchip, then you can connect the multi-byte microchip! | backing up the feed won't do anything, we need to compress the haptic SMTP feed! | http://raquel.net | | | +| Dynamic Accountability Strategist | 7.0.9 | Unknown | You can't bypass the sensor without transmitting the neural JSON sensor! | | | | | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 Accountability Analyst | 4.9.7 | Overwrite | | | https://jaron.info | | | +| National Applications Designer | 6.4.9 | Expression | | Use the back-end SMS feed, then you can program the back-end feed! | | | | +| International Quality Director | 0.3.8 | Expression | | | | | | +| National Research Facilitator | 6.0.6 | Expression | Use the primary EXE array, then you can navigate the primary array! | | | | | +| Human Group Designer | 9.9.1 | Expression | Use the haptic XSS application, then you can synthesize the haptic application! | If we transmit the hard drive, we can get to the AGP hard drive through the bluetooth AGP hard drive! | http://jodie.org | | | +| International Functionality Agent | 8.7.6 | Unknown | | If we hack the card, we can get to the JBOD card through the optical JBOD card! | http://jalyn.org | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | | | +| Lead Branding Developer | 4.1.5 | Url | | | http://abe.com | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | | | +| Lead Usability Assistant | 1.3.4 | Overwrite | quantifying the matrix won't do anything, we need to synthesize the wireless PCI matrix! | Use the solid state SQL firewall, then you can connect the solid state firewall! | https://duane.info | | | +| Human Quality Facilitator | 1.2.0 | Expression | We need to copy the online THX firewall! | You can't calculate the application without calculating the auxiliary AI application! | | | | +| Dynamic Factors Facilitator | 6.5.2 | Expression | | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | http://magnolia.com | | | +| Global Mobility Facilitator | 9.5.8 | Expression | | | | | | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | | | +| Chief Intranet Facilitator | 6.6.1 | Expression | | | https://rosalind.net | | | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| Forward Intranet Engineer | 2.5.9 | Expression | The RSS sensor is down, input the 1080p sensor so we can input the RSS sensor! | Try to index the ADP port, maybe it will index the auxiliary port! | | | | +| Corporate Marketing Assistant | 8.7.9 | Url | | You can't program the firewall without connecting the wireless AI firewall! | http://arlene.biz | | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | | | +| Investor Implementation Technician | 2.7.9 | Unknown | | | http://crystal.name | | | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | | | +| Direct Mobility Designer | 7.7.3 | Expression | | | http://geovanny.info | | | +| Future Accounts Architect | 9.1.8 | Url | You can't bypass the firewall without indexing the multi-byte COM firewall! | | https://fermin.biz | | | +| Chief Factors Supervisor | 5.2.2 | Expression | | | http://helga.com | | | +| Forward Marketing Orchestrator | 1.6.4 | Overwrite | I'll connect the primary SQL sensor, that should sensor the SQL sensor! | The SMTP driver is down, bypass the mobile driver so we can bypass the SMTP driver! | https://lukas.com | | | +| Legacy Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| International Intranet Planner | 6.4.6 | Url | The IB interface is down, program the redundant interface so we can program the IB interface! | | https://lenna.com | | | +| Dynamic Integration Architect | 1.6.3 | Overwrite | | The RAM feed is down, copy the neural feed so we can copy the RAM feed! | | | | +| Product Assurance Technician | 0.8.2 | Overwrite | | | https://steve.info | | | +| 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 | | | +| Forward Configuration Supervisor | 9.0.8 | Overwrite | You can't program the protocol without overriding the primary IB protocol! | | http://quinn.name | | | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Central Tactics Engineer | 6.3.5 | Unknown | connecting the bandwidth won't do anything, we need to bypass the multi-byte AI bandwidth! | | | | | +| District Operations Director | 0.6.3 | Url | | We need to program the cross-platform FTP hard drive! | https://dejah.net | | | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| National Solutions Associate | 9.1.2 | Overwrite | | | | | | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_07d1b05e10649ce0.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_07d1b05e10649ce0.verified.txt new file mode 100644 index 00000000..36d1c11b --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_07d1b05e10649ce0.verified.txt @@ -0,0 +1,142 @@ +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Response Consultant | 9.3.1 | Unknown | | | https://ulices.biz | Ari | https://chad.com | +| | | | | | | Yvonne | http://jada.name | +| | | | | | | Noemie | https://kayley.name | +| | | | | | | Brandon | http://kristopher.name | +| | | | | | | Maggie | http://kimberly.info | +| | | | | | | Veronica | https://mya.net | +| | | | | | | Marty | https://obie.net | +| | | | | | | Braxton | http://flavio.net | +| | | | | | | Jeramie | http://jaycee.net | +| Future Group Assistant | 1.7.9 | Expression | Use the multi-byte AI port, then you can reboot the multi-byte port! | | | Darien | http://mitchel.biz | +| | | | | | | Carleton | https://madalyn.com | +| | | | | | | Narciso | https://mia.com | +| | | | | | | Nicklaus | https://abelardo.com | +| | | | | | | Carolina | https://lindsey.info | +| | | | | | | Rigoberto | https://lou.biz | +| Corporate Accountability Designer | 0.8.0 | Overwrite | We need to hack the online FTP application! | | http://taya.info | Carlee | http://britney.name | +| | | | | | | Tess | http://julian.biz | +| | | | | | | Isadore | http://billy.net | +| | | | | | | Alice | http://vern.net | +| | | | | | | King | http://trace.net | +| | | | | | | Carmela | https://adolf.info | +| | | | | | | Sherman | http://alec.net | +| | | | | | | Lamar | http://deion.org | +| Direct Tactics Technician | 2.8.6 | Unknown | Try to quantify the SAS port, maybe it will quantify the wireless port! | | | Demond | http://stefan.name | +| | | | | | | Norval | http://annie.net | +| | | | | | | Destin | http://penelope.name | +| Customer Program Consultant | 5.0.4 | Ignored | Try to compress the GB system, maybe it will compress the neural system! | Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan | http://kieran.biz | Bettie | http://edmund.info | +| | | | | | | Sadie | http://horacio.org | +| | | | | | | Loraine | https://sandra.org | +| | | | | | | Emil | http://dayana.net | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| Investor Identity Developer | 4.2.0 | Url | | Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| | | | | | | Keely | http://obie.org | +| | | | | | | Caleigh | https://albin.info | +| | | | | | | Flavie | http://lavonne.biz | +| | | | | | | Kaitlyn | http://osborne.org | +| Product Identity Analyst | 5.9.3 | Expression | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | | Rey | https://connie.info | +| | | | | | | Hollie | http://rico.name | +| | | | | | | Marshall | http://pierce.org | +| | | | | | | 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 | +| Lead Creative Administrator | 9.0.0 | Overwrite | Use the virtual RAM monitor, then you can override the virtual monitor! | | https://roderick.net | Hildegard | http://conner.name | +| | | | | | | 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 | +| | | | | | | Irving | https://sydnie.org | +| Chief Data Director | 2.1.5 | Unknown | Use the haptic PCI bandwidth, then you can generate the haptic bandwidth! | | | Earnestine | http://nathanial.biz | +| | | | | | | Connor | https://augustus.net | +| | | | | | | Araceli | http://hailey.biz | +| | | | | | | Janessa | https://craig.com | +| | | | | | | Erica | http://kristin.org | +| | | | | | | Alek | http://shany.biz | +| | | | | | | Camren | http://joany.info | +| Product Marketing Developer | 3.3.6 | Unknown | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | Lewis | https://alisa.com | +| | | | | | | Delores | https://layne.name | +| | | | | | | Delphine | https://katlynn.org | +| | | | | | | Meredith | https://johanna.info | +| | | | | | | Jacklyn | https://kadin.com | +| | | | | | | Hardy | https://donna.info | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| Dynamic Group Associate | 6.6.1 | Unknown | We need to input the open-source SMTP bus! | | http://kian.name | Neil | https://burley.info | +| | | | | | | Lemuel | http://brenden.info | +| | | | | | | Agnes | https://urban.org | +| | | | | | | Micheal | https://ida.net | +| | | | | | | Murray | https://samanta.com | +| | | | | | | Assunta | http://florencio.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Mobility Strategist | 4.7.6 | Overwrite | Use the virtual ADP bandwidth, then you can calculate the virtual bandwidth! | | http://gerardo.net | Cathy | http://giovanna.info | +| | | | | | | Ike | https://jerome.biz | +| | | | | | | Emerald | https://camren.net | +| | | | | | | Sheila | https://garry.org | +| Internal Solutions Planner | 1.3.8 | Expression | | Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| | | | | | | Mallory | http://angeline.name | +| Investor Creative Architect | 4.5.6 | Overwrite | | Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| | | | | | | Retta | https://lottie.biz | +| | | | | | | Yasmine | http://delia.com | +| | | | | | | Khalil | http://jewel.net | +| | | | | | | Roy | https://johanna.org | +| | | | | | | Price | https://itzel.info | +| | | | | | | Dalton | https://daren.info | +| | | | | | | Arnold | http://arlo.org | +| Global Infrastructure Developer | 5.5.0 | Url | generating the application won't do anything, we need to calculate the auxiliary JSON application! | Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger | https://austin.net | 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 Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_07d4617a7cffd79a.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_07d4617a7cffd79a.verified.txt new file mode 100644 index 00000000..9844cd4f --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_07d4617a7cffd79a.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_085aa1e0b1c617c2.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_085aa1e0b1c617c2.verified.txt new file mode 100644 index 00000000..a3ba1a96 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_085aa1e0b1c617c2.verified.txt @@ -0,0 +1,96 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Global Mobility Technician | 8.6.3 | Unknown | | We need to input the haptic XML port! | | Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante | | Lonie | http://wilburn.org | +| | | | | | | | | Concepcion | http://ed.org | +| | | | | | | | | Amanda | https://sophie.net | +| | | | | | | | | Claudine | http://ofelia.biz | +| | | | | | | | | Petra | http://clare.name | +| | | | | | | | | Ozella | https://verla.name | +| | | | | | | | | Denis | http://pete.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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Product Data Liaison | 7.8.8 | Unknown | Try to calculate the GB card, maybe it will calculate the wireless card! | | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | | | Lewis | https://alisa.com | +| | | | | | | | | Delores | https://layne.name | +| | | | | | | | | Delphine | https://katlynn.org | +| | | | | | | | | Meredith | https://johanna.info | +| | | | | | | | | Jacklyn | https://kadin.com | +| | | | | | | | | Hardy | https://donna.info | +| Investor Division Assistant | 9.6.2 | Url | | I'll parse the primary PCI matrix, that should matrix the PCI matrix! | | | | Nya | http://sunny.biz | +| | | | | | | | | Arlo | https://cordia.info | +| | | | | | | | | Linnie | https://marcos.name | +| | | | | | | | | Luella | http://frederic.name | +| | | | | | | | | Lucinda | https://dion.name | +| | | | | | | | | Jayson | https://ryleigh.net | +| | | | | | | | | Mervin | https://lorenza.net | +| National Accountability Producer | 6.9.7 | Unknown | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | https://linwood.biz | Travon | https://dedrick.name | +| | | | | | | | | Elissa | http://kaci.org | +| | | | | | | | | Brandi | https://aniyah.com | +| | | | | | | | | Tyson | https://bonita.org | +| | | | | | | | | Jazlyn | http://madonna.net | +| | | | | | | | | Deangelo | https://jess.info | +| | | | | | | | | Alvah | https://hans.net | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| Chief Solutions Administrator | 0.4.1 | Unknown | | 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 | Shaun | https://antwan.org | +| | | | | | | | | Hazel | https://forrest.net | +| | | | | | | | | Brianne | https://dorothea.name | +| | | | | | | | | Don | http://torey.com | +| | | | | | | | | Cedrick | https://zachariah.net | +| | | | | | | | | Marcelle | https://adah.org | +| | | | | | | | | Barney | http://erica.org | +| | | | | | | | | Jordi | https://alysha.com | +| | | | | | | | | Kristina | https://pattie.info | +| | | | | | | | | Cory | http://kailey.com | +| International Intranet Planner | 1.3.4 | Expression | 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 | Ahmad | https://lupe.com | +| | | | | | | | | Randi | https://jaiden.biz | +| | | | | | | | | Patience | https://marlene.name | +| | | | | | | | | Lenna | https://franco.name | +| | | | | | | | | Kyleigh | https://tevin.name | +| | | | | | | | | Sallie | https://jordane.name | +| | | | | | | | | Willy | https://daija.info | +| | | | | | | | | Jannie | https://retta.net | +| | | | | | | | | Lottie | http://yasmine.com | +| | | | | | | | | Delia | http://khalil.com | +| Investor Operations Director | 5.6.0 | Expression | Try to input the AI microchip, maybe it will input the 1080p microchip! | | If we synthesize the sensor, we can get to the AI sensor through the redundant AI sensor! | | https://alene.info | Elouise | https://ron.com | +| | | | | | | | | Brown | https://cordia.com | +| | | | | | | | | Ericka | https://eugene.com | +| | | | | | | | | Rashad | http://thomas.com | +| | | | | | | | | Antonia | https://marcelle.org | +| Product Interactions Planner | 7.4.0 | Expression | Try to navigate the PCI matrix, maybe it will navigate the haptic matrix! | | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | http://bertha.net | Rey | https://connie.info | +| | | | | | | | | Hollie | http://rico.name | +| | | | | | | | | Marshall | http://pierce.org | +| | | | | | | | | 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 | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Global Mobility Facilitator | 8.5.9 | Url | | We need to parse the primary PCI protocol! | | Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch | https://itzel.info | Mitchel | http://carleton.name | +| | | | | | | | | Madalyn | http://narciso.net | +| | | | | | | | | Mia | http://nicklaus.net | +| | | | | | | | | Abelardo | http://carolina.name | +| Forward Tactics Agent | 6.8.8 | Url | | We need to back up the primary SMTP circuit! | The COM bandwidth is down, input the auxiliary bandwidth so we can input the COM bandwidth! | Jon Schulist,Jon Schulist | https://flo.info | Diana | http://eula.name | +| | | | | | | | | Raphael | https://zackery.info | +| | | | | | | | | Nettie | https://brayan.com | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_08a55f32e2239790.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_08a55f32e2239790.verified.txt new file mode 100644 index 00000000..e187e8ae --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_08a55f32e2239790.verified.txt @@ -0,0 +1,44 @@ +| -------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | | | +| Legacy Interactions Supervisor | 9.7.2 | Ignored | | Try to generate the SAS matrix, maybe it will generate the cross-platform matrix! | Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn | | | | +| International Optimization Coordinator | 6.5.5 | Ignored | | | Darnell Terry | http://antoinette.org | | | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | | | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | | | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | | | +| International Tactics Administrator | 9.9.9 | Url | | | | | | | +| Global Implementation Strategist | 5.9.8 | Ignored | | | Colleen Schroeder,Colleen Schroeder | https://enos.info | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | | | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| Internal Program Designer | 7.2.5 | Ignored | We need to hack the auxiliary COM hard drive! | | | | | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Customer Assurance Officer | 0.3.1 | Ignored | I'll navigate the digital CSS sensor, that should sensor the CSS sensor! | | | https://clementine.info | | | +| Customer Division Manager | 1.3.9 | Ignored | 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! | Rafael Altenwerth,Rafael Altenwerth,Rafael Altenwerth | | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_08bcd06bb455211e.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_08bcd06bb455211e.verified.txt new file mode 100644 index 00000000..4a0fbd2e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_08bcd06bb455211e.verified.txt @@ -0,0 +1,146 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| Internal Solutions Planner | 1.3.8 | Ignored | | The COM application is down, quantify the auxiliary application so we can quantify the COM application! | | Nyah | http://oliver.com | +| | | | | | | Ettie | http://lonny.net | +| | | | | | | Onie | https://cassie.biz | +| | | | | | | Solon | https://buck.biz | +| | | | | | | Taryn | http://hilton.com | +| | | | | | | Isabel | http://rogers.net | +| | | | | | | Bertrand | http://annetta.org | +| | | | | | | Remington | https://efrain.info | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| National Creative Engineer | 4.0.0 | Ignored | You can't parse the alarm without overriding the haptic SMTP alarm! | | | Candida | https://craig.biz | +| | | | | | | Timmothy | https://joanny.biz | +| | | | | | | Alfonzo | http://dorothea.org | +| | | | | | | 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 | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Forward Directives Supervisor | 8.7.6 | Ignored | | The SSL microchip is down, hack the optical microchip so we can hack the SSL microchip! | http://shaun.org | Jadon | https://amelia.biz | +| | | | | | | Toni | http://angie.name | +| | | | | | | Ardella | http://melissa.net | +| | | | | | | Sandra | http://pearline.org | +| | | | | | | Noble | https://dusty.net | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Regional Mobility Manager | 2.7.0 | Ignored | | | http://gianni.info | Alvina | http://elouise.name | +| | | | | | | Ron | http://brown.org | +| | | | | | | Cordia | http://ericka.name | +| | | | | | | Eugene | http://rashad.info | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Chief Brand Associate | 7.6.8 | Ignored | | | https://lauriane.com | Devin | https://ramona.info | +| | | | | | | Alice | http://laverne.info | +| | | | | | | Layne | https://brooks.name | +| | | | | | | Kaitlyn | http://serenity.biz | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_08f1c8243170b4f1.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_08f1c8243170b4f1.verified.txt new file mode 100644 index 00000000..4623bea7 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_08f1c8243170b4f1.verified.txt @@ -0,0 +1,130 @@ +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.biz | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| Corporate Accountability Designer | 0.8.0 | Ignored | We need to hack the online FTP application! | | Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn | http://taya.info | Abelardo | http://carolina.name | +| | | | | | | | Lindsey | http://rigoberto.org | +| | | | | | | | Lou | http://darlene.biz | +| | | | | | | | Oliver | https://filomena.com | +| | | | | | | | Vincenzo | https://ulices.biz | +| | | | | | | | Florida | http://jovan.net | +| | | | | | | | Ari | https://chad.com | +| | | | | | | | Yvonne | http://jada.name | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Customer Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Dynamic Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| Legacy Usability Coordinator | 5.8.8 | Overwrite | Try to calculate the PNG port, maybe it will calculate the back-end port! | | | http://thora.info | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Senior Solutions Strategist | 7.5.0 | 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 | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Corporate Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | http://celestine.info | Clemens | https://abagail.info | +| | | | | | | | Franz | http://prudence.info | +| | | | | | | | Casper | https://alva.com | +| | | | | | | | Mario | http://alexandria.biz | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0abe8fb1231c9559.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0abe8fb1231c9559.verified.txt new file mode 100644 index 00000000..f0a3d464 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0abe8fb1231c9559.verified.txt @@ -0,0 +1,14 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------- | --------- | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0b2dfba58a4a5fb5.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0b2dfba58a4a5fb5.verified.txt new file mode 100644 index 00000000..43a15bbb --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0b2dfba58a4a5fb5.verified.txt @@ -0,0 +1,40 @@ +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0b33015e996603cc.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0b33015e996603cc.verified.txt new file mode 100644 index 00000000..afe8a2f2 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0b33015e996603cc.verified.txt @@ -0,0 +1,117 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------- | ---------- | ---------------------- | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Legacy Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0b5c0b91a47b5b95.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0b5c0b91a47b5b95.verified.txt new file mode 100644 index 00000000..f251eeae --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0b5c0b91a47b5b95.verified.txt @@ -0,0 +1,146 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ---------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ---------------------- | --------- | ---------------------- | +| Direct Accountability Assistant | 2.2.8 | Url | bypassing the protocol won't do anything, we need to compress the primary HTTP protocol! | | http://natasha.info | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Global Security Coordinator | 1.7.9 | Ignored | | | https://carol.info | | | +| Forward Marketing Orchestrator | 1.6.4 | Overwrite | I'll connect the primary SQL sensor, that should sensor the SQL sensor! | The SMTP driver is down, bypass the mobile driver so we can bypass the SMTP driver! | https://lukas.com | | | +| Regional Factors Designer | 7.4.1 | Overwrite | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | | | | +| National Intranet Technician | 8.0.0 | Overwrite | | | | | | +| Dynamic Factors Facilitator | 6.5.2 | Expression | | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | http://magnolia.com | | | +| Chief Applications Facilitator | 7.7.6 | Overwrite | | parsing the card won't do anything, we need to synthesize the online SQL card! | | | | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | http://hanna.net | | | +| Dynamic Division Consultant | 4.8.7 | Overwrite | Use the multi-byte IB microchip, then you can connect the multi-byte microchip! | backing up the feed won't do anything, we need to compress the haptic SMTP feed! | http://raquel.net | | | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | | | +| Investor Intranet Producer | 5.4.1 | Ignored | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | http://hyman.org | | | +| Global Division Designer | 8.2.7 | Expression | Try to program the EXE hard drive, maybe it will program the virtual hard drive! | | https://pamela.name | | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | | | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Human Response Coordinator | 2.9.7 | Ignored | | | http://ruth.org | | | +| Human Communications Supervisor | 6.0.1 | Ignored | Use the cross-platform SAS feed, then you can bypass the cross-platform feed! | | http://ethan.name | | | +| National Applications Designer | 6.4.9 | Expression | | Use the back-end SMS feed, then you can program the back-end feed! | | | | +| Human Group Designer | 9.9.1 | Expression | Use the haptic XSS application, then you can synthesize the haptic application! | If we transmit the hard drive, we can get to the AGP hard drive through the bluetooth AGP hard drive! | http://jodie.org | | | +| International Data Representative | 3.5.7 | Ignored | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | http://dakota.com | | | +| National Creative Assistant | 4.9.0 | Ignored | | If we navigate the pixel, we can get to the SCSI pixel through the bluetooth SCSI pixel! | https://michelle.org | | | +| Direct Assurance Strategist | 1.3.7 | Expression | The RSS firewall is down, hack the neural firewall so we can hack the RSS firewall! | | | | | +| Regional Directives Supervisor | 4.9.8 | Ignored | Try to reboot the THX hard drive, maybe it will reboot the open-source hard drive! | Use the primary GB driver, then you can generate the primary driver! | https://malcolm.net | | | +| Global Mobility Facilitator | 9.5.8 | Expression | | | | | | +| Principal Markets Designer | 3.8.8 | Overwrite | overriding the transmitter won't do anything, we need to generate the cross-platform SCSI transmitter! | | | | | +| Investor Research Manager | 6.3.1 | Ignored | | | | | | +| Human Optimization Producer | 5.0.9 | Overwrite | | | | | | +| Product Assurance Technician | 0.8.2 | Overwrite | | | https://steve.info | | | +| Direct Data Orchestrator | 2.4.5 | Expression | | Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor! | | | | +| Human Optimization Facilitator | 7.4.8 | Overwrite | 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! | https://cooper.name | | | +| Global Program Representative | 5.1.0 | Url | | If we back up the monitor, we can get to the PCI monitor through the virtual PCI monitor! | | | | +| Forward Functionality Developer | 5.1.1 | Url | | | | | | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Central Identity Analyst | 8.9.6 | Expression | | | http://leta.org | | | +| Corporate Marketing Assistant | 8.7.9 | Url | | You can't program the firewall without connecting the wireless AI firewall! | http://arlene.biz | | | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | | | +| National Research Facilitator | 6.0.6 | Expression | Use the primary EXE array, then you can navigate the primary array! | | | | | +| Direct Mobility Designer | 7.7.3 | Expression | | | http://geovanny.info | | | +| Investor Creative Architect | 8.2.4 | Unknown | | | | | | +| Legacy Directives Supervisor | 9.6.2 | Url | The PNG circuit is down, back up the online circuit so we can back up the PNG circuit! | | | | | +| Human Directives Specialist | 4.3.4 | Unknown | Use the digital XSS hard drive, then you can compress the digital hard drive! | You can't generate the card without synthesizing the bluetooth PNG card! | | | | +| Chief Intranet Facilitator | 6.6.1 | Expression | | | https://rosalind.net | | | +| Central Web Assistant | 4.2.1 | Unknown | | Use the wireless ADP array, then you can input the wireless array! | https://verda.net | | | +| Dynamic Accountability Strategist | 7.0.9 | Unknown | You can't bypass the sensor without transmitting the neural JSON sensor! | | | | | +| Corporate Data Strategist | 9.0.0 | Ignored | | | http://eli.net | | | +| Senior Optimization Assistant | 3.6.0 | Overwrite | | overriding the pixel won't do anything, we need to copy the optical JSON pixel! | http://akeem.info | | | +| Senior Security Consultant | 2.7.5 | Unknown | | | http://adelbert.biz | | | +| Legacy Directives Officer | 2.4.4 | Url | | The PCI program is down, hack the multi-byte program so we can hack the PCI program! | http://sedrick.biz | | | +| Investor Interactions Liaison | 4.4.9 | Overwrite | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | | | | +| Senior Brand Analyst | 2.5.0 | Url | | overriding the interface won't do anything, we need to override the virtual THX interface! | | | | +| Corporate Directives Planner | 8.8.5 | Unknown | The CSS bus is down, generate the 1080p bus so we can generate the CSS bus! | We need to back up the 1080p SMTP feed! | | | | +| Lead Usability Assistant | 1.3.4 | Overwrite | quantifying the matrix won't do anything, we need to synthesize the wireless PCI matrix! | Use the solid state SQL firewall, then you can connect the solid state firewall! | https://duane.info | | | +| Investor Implementation Technician | 2.7.9 | Unknown | | | http://crystal.name | | | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | | | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | | | +| Corporate Tactics Director | 2.5.7 | Url | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | http://marcos.info | | | +| Regional Operations Coordinator | 0.2.5 | Unknown | | I'll hack the cross-platform SSL array, that should array the SSL array! | http://ena.com | | | +| Customer Security Representative | 3.7.3 | Ignored | The GB circuit is down, hack the redundant circuit so we can hack the GB circuit! | | https://jalon.net | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | | | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | | | +| Forward Intranet Engineer | 2.5.9 | Expression | The RSS sensor is down, input the 1080p sensor so we can input the RSS sensor! | Try to index the ADP port, maybe it will index the auxiliary port! | | | | +| Future Accounts Architect | 9.1.8 | Url | You can't bypass the firewall without indexing the multi-byte COM firewall! | | https://fermin.biz | | | +| Senior Factors Administrator | 1.6.1 | Expression | I'll calculate the solid state ADP panel, that should panel the ADP panel! | If we generate the circuit, we can get to the XSS circuit through the primary XSS circuit! | | | | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | | | +| Future Accounts Agent | 0.9.7 | Ignored | | | | | | +| Chief Division Producer | 2.3.9 | Overwrite | | | | | | +| Regional Paradigm Manager | 8.9.8 | Ignored | | If we transmit the application, we can get to the SMS application through the primary SMS application! | https://eileen.name | | | +| District Operations Director | 0.6.3 | Url | | We need to program the cross-platform FTP hard drive! | https://dejah.net | | | +| Customer Metrics Developer | 2.2.9 | Ignored | | | | | | +| Corporate Accounts Technician | 5.8.0 | Ignored | | | https://isobel.org | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| National Creative Coordinator | 5.9.5 | Expression | | | https://bobbie.info | | | +| International Intranet Planner | 6.4.6 | Url | The IB interface is down, program the redundant interface so we can program the IB interface! | | https://lenna.com | | | +| 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 | | | +| Dynamic Quality Analyst | 0.9.5 | Overwrite | We need to index the optical HTTP application! | I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor! | | | | +| National Communications Orchestrator | 4.5.1 | Unknown | The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit! | | | | | +| National Directives Analyst | 8.2.7 | Ignored | We need to compress the primary GB array! | | | | | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | | | +| Human Quality Facilitator | 1.2.0 | Expression | We need to copy the online THX firewall! | You can't calculate the application without calculating the auxiliary AI application! | | | | +| Forward Configuration Supervisor | 9.0.8 | Overwrite | You can't program the protocol without overriding the primary IB protocol! | | http://quinn.name | | | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | | | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| Dynamic Optimization Director | 3.4.6 | Ignored | The PNG protocol is down, index the digital protocol so we can index the PNG protocol! | I'll transmit the online SSL feed, that should feed the SSL feed! | https://maximilian.org | | | +| National Solutions Associate | 9.1.2 | Overwrite | | | | | | +| Human Program Technician | 2.8.4 | Unknown | | | http://tomasa.info | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| Dynamic Integration Architect | 1.6.3 | Overwrite | | The RAM feed is down, copy the neural feed so we can copy the RAM feed! | | | | +| Human Directives Engineer | 5.3.9 | Url | | | | | | +| Central Tactics Engineer | 6.3.5 | Unknown | connecting the bandwidth won't do anything, we need to bypass the multi-byte AI bandwidth! | | | | | +| Human Operations Assistant | 0.7.2 | Overwrite | Use the haptic USB driver, then you can override the haptic driver! | | http://camila.net | | | +| Customer Functionality Consultant | 5.5.1 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | http://terence.com | | | +| Product Creative Facilitator | 8.4.6 | Unknown | 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://juliana.net | | | +| Chief Factors Supervisor | 5.2.2 | Expression | | | http://helga.com | | | +| Dynamic Branding Facilitator | 8.3.2 | Ignored | | | | | | +| Principal Accounts Coordinator | 1.0.4 | Overwrite | | I'll connect the digital JSON bus, that should bus the JSON bus! | http://rene.com | | | +| Dynamic Accountability Analyst | 4.9.7 | Overwrite | | | https://jaron.info | | | +| International Functionality Agent | 8.7.6 | Unknown | | If we hack the card, we can get to the JBOD card through the optical JBOD card! | http://jalyn.org | | | +| International Quality Director | 0.3.8 | Expression | | | | | | +| Forward Division Strategist | 5.7.1 | Ignored | You can't reboot the program without transmitting the mobile SMTP program! | The SCSI circuit is down, index the open-source circuit so we can index the SCSI circuit! | https://esperanza.name | | | +| Internal Directives Designer | 0.4.8 | Url | The EXE protocol is down, reboot the redundant protocol so we can reboot the EXE protocol! | | | | | +| Lead Branding Developer | 4.1.5 | Url | | | http://abe.com | | | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ---------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0bf04fae58fd50cd.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0bf04fae58fd50cd.verified.txt new file mode 100644 index 00000000..1968cf36 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0bf04fae58fd50cd.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0c1bee925af844e8.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0c1bee925af844e8.verified.txt new file mode 100644 index 00000000..949fa777 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0c1bee925af844e8.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Paige | https://remington.info | +| | | | | Aletha | https://isobel.info | +| | | | | Pearline | https://johnathon.info | +| | | | | Eleanora | http://jaeden.info | +| | | | | Nikolas | https://daphney.net | +| | | | | Oceane | http://clifton.com | +| | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0c59c88f2f75b209.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0c59c88f2f75b209.verified.txt new file mode 100644 index 00000000..15ee67cd --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0c59c88f2f75b209.verified.txt @@ -0,0 +1,28 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ------- | -------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ------- | -------------------- | +| National Security Orchestrator | 3.5.6 | Expression | Try to copy the HDD array, maybe it will copy the back-end array! | 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! | Roderick Koelpin,Roderick Koelpin,Roderick Koelpin | | | | +| 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Global Markets Administrator | 8.6.8 | Expression | 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! | The SSL application is down, reboot the bluetooth application so we can reboot the SSL application! | Julius Bernhard,Julius Bernhard,Julius Bernhard,Julius Bernhard | https://lois.biz | | | +| Future Accounts Designer | 5.1.9 | Expression | We need to navigate the wireless SAS pixel! | | | | | | | +| Human Accountability Developer | 6.9.0 | Unknown | If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit! | | | | | | | +| Regional Factors Designer | 7.4.1 | Url | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | Use the haptic RSS port, then you can transmit the haptic port! | Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus | | | | +| District Creative Designer | 1.4.6 | Url | We need to program the haptic IB panel! | | | | http://cameron.info | | | +| Corporate Intranet Associate | 7.5.1 | Overwrite | | 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! | | | | | +| Corporate Optimization Agent | 2.7.0 | Ignored | | | | | http://bryce.com | | | +| Customer Metrics Analyst | 6.7.1 | Unknown | | | | | | | | +| Global Usability Manager | 9.1.0 | Overwrite | | Try to back up the THX interface, maybe it will back up the auxiliary interface! | | | http://vella.com | | | +| Central Tactics Director | 4.6.7 | Url | backing up the system won't do anything, we need to parse the neural CSS system! | We need to transmit the back-end RSS transmitter! | | Doyle Osinski,Doyle Osinski,Doyle Osinski,Doyle Osinski | https://valentina.net | | | +| Investor Interactions Designer | 1.9.4 | Url | | | parsing the card won't do anything, we need to synthesize the online SQL card! | Stella Barton,Stella Barton | https://octavia.name | | | +| Chief Functionality Planner | 5.1.2 | Unknown | | I'll calculate the 1080p HDD system, that should system the HDD system! | | Matt Mills,Matt Mills | http://myrtice.com | | | +| Global Configuration Consultant | 5.9.5 | Expression | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | bypassing the bus won't do anything, we need to calculate the virtual GB bus! | | Guadalupe Littel,Guadalupe Littel,Guadalupe Littel | | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | | | +| Dynamic Configuration Assistant | 3.2.1 | Expression | | 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 | | | | +| Dynamic Factors Producer | 5.7.1 | Url | | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | | | | | +| Internal Factors Facilitator | 2.6.3 | Url | | Try to copy the PNG sensor, maybe it will copy the 1080p sensor! | | Mable Kris,Mable Kris,Mable Kris,Mable Kris,Mable Kris | http://melba.name | | | +| Customer Interactions Representative | 0.8.8 | Url | We need to quantify the digital SSL array! | | | | http://heather.name | | | +| Lead Configuration Liaison | 1.8.9 | Expression | | connecting the transmitter won't do anything, we need to program the cross-platform XSS transmitter! | | | http://esther.biz | | | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ------- | -------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0c83788d92f3cdc3.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0c83788d92f3cdc3.verified.txt new file mode 100644 index 00000000..d9b9991e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0c83788d92f3cdc3.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | Clare | https://bobby.info | +| | | | | | | Cecil | https://kira.net | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | Ila | http://rachel.com | +| | | | | | | Catalina | http://jolie.com | +| | | | | | | Dianna | https://leda.net | +| | | | | | | Nicola | http://aleen.name | +| | | | | | | Nelda | http://delpha.net | +| | | | | | | Delores | http://rae.biz | +| | | | | | | Cynthia | https://zella.com | +| | | | | | | Greta | http://adolph.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0dad14d6b00093bd.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0dad14d6b00093bd.verified.txt new file mode 100644 index 00000000..a013c7c4 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0dad14d6b00093bd.verified.txt @@ -0,0 +1,113 @@ +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| Legacy Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.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 | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Senior Solutions Strategist | 7.5.0 | 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 Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.biz | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Corporate Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0ded90be3d20563e.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0ded90be3d20563e.verified.txt new file mode 100644 index 00000000..fcdf028d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0ded90be3d20563e.verified.txt @@ -0,0 +1,39 @@ +| ----------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------------- | --------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------------- | --------------------- | --------- | --------------------- | +| National Tactics Engineer | 3.7.5 | Url | generating the matrix won't do anything, we need to override the redundant GB matrix! | https://alexys.org | | | +| Forward Functionality Analyst | 4.5.1 | Expression | | http://orie.name | | | +| National Communications Facilitator | 3.1.0 | Url | quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter! | | | | +| Central Integration Analyst | 0.4.0 | Overwrite | If we synthesize the protocol, we can get to the JBOD protocol through the multi-byte JBOD protocol! | https://laverne.name | | | +| Global Security Liaison | 8.1.2 | Expression | | | | | +| Regional Security Architect | 2.2.5 | Url | | | | | +| Forward Quality Producer | 6.3.7 | Overwrite | The CSS microchip is down, back up the bluetooth microchip so we can back up the CSS microchip! | https://jayne.name | | | +| Central Interactions Manager | 7.0.9 | Expression | | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Chief Assurance Associate | 3.3.1 | Url | overriding the panel won't do anything, we need to parse the open-source IB panel! | https://tyrese.info | | | +| Customer Directives Director | 7.9.2 | Overwrite | Try to hack the COM panel, maybe it will hack the auxiliary panel! | | | | +| District Branding Analyst | 1.9.5 | Url | | https://paula.net | | | +| Product Applications Assistant | 2.8.4 | Overwrite | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | https://carleton.info | | | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Dynamic Functionality Agent | 5.9.5 | Unknown | | http://annabelle.net | | | +| Global Usability Representative | 3.5.9 | Url | | | | | +| Dynamic Security Technician | 6.8.3 | Unknown | | | | | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Customer Operations Officer | 2.6.0 | Overwrite | Use the bluetooth USB alarm, then you can override the bluetooth alarm! | http://antonette.org | | | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | +| ----------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------------- | --------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0e1a5997232a2b5f.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0e1a5997232a2b5f.verified.txt new file mode 100644 index 00000000..ef363d2c --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0e1a5997232a2b5f.verified.txt @@ -0,0 +1,34 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Investor Intranet Producer | 5.4.1 | Ignored | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | http://hyman.org | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0e90074ea5761bf1.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0e90074ea5761bf1.verified.txt new file mode 100644 index 00000000..8a669095 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0e90074ea5761bf1.verified.txt @@ -0,0 +1,134 @@ +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| | | | | | Jody | http://jakob.org | +| | | | | | Anjali | https://valentin.info | +| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| | | | | | Clemmie | http://shanny.net | +| | | | | | Hildegard | http://conner.name | +| | | | | | Isabella | https://kennith.com | +| | | | | | Johanna | https://ara.org | +| | | | | | Demarco | https://rae.biz | +| | | | | | Viviane | http://christine.info | +| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| | | | | | Ursula | https://werner.net | +| | | | | | Linwood | http://rebekah.org | +| | | | | | Cleve | https://claudie.net | +| | | | | | Theodora | http://faye.info | +| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| | | | | | Braeden | https://sunny.name | +| | | | | | Leslie | http://bettie.info | +| | | | | | Edmund | http://sadie.info | +| | | | | | Horacio | https://loraine.name | +| Global Response Associate | 1.9.8 | Overwrite | The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth! | | Sandra | http://antonina.com | +| | | | | | Willow | https://jason.org | +| | | | | | Orland | http://rigoberto.com | +| | | | | | Laney | http://eryn.org | +| | | | | | Amari | http://viviane.net | +| | | | | | Kelley | http://doris.net | +| | | | | | Kennedy | https://milo.net | +| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| | | | | | Caleigh | https://albin.info | +| | | | | | Flavie | http://lavonne.biz | +| | | | | | Kaitlyn | http://osborne.org | +| | | | | | Joesph | https://michael.name | +| | | | | | Kali | http://shyanne.net | +| | | | | | Austin | https://marty.net | +| | | | | | Theresia | http://kristin.net | +| | | | | | Lester | https://paige.com | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Legacy Creative Liaison | 0.4.6 | Overwrite | | | Mervin | http://celestine.info | +| | | | | | Amalia | https://shanelle.info | +| | | | | | Sheila | http://darrell.info | +| | | | | | Alec | https://candice.biz | +| | | | | | Linnea | http://everardo.info | +| | | | | | Daryl | https://jerrod.com | +| | | | | | Laila | http://caleigh.net | +| | | | | | Adolfo | http://daisha.biz | +| Direct Accounts Associate | 3.2.6 | Overwrite | | https://vesta.com | Buck | http://taryn.com | +| | | | | | Hilton | http://isabel.com | +| | | | | | Rogers | https://bertrand.biz | +| | | | | | Annetta | https://remington.org | +| | | | | | Efrain | http://davion.org | +| | | | | | Merle | https://abigayle.org | +| | | | | | Jerod | https://vicenta.info | +| | | | | | Kayli | https://shaun.net | +| | | | | | Antwan | https://hazel.net | +| Senior Brand Developer | 4.4.1 | Ignored | If we override the system, we can get to the CSS system through the neural CSS system! | http://adelbert.net | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| | | | | | Libby | http://wade.biz | +| | | | | | Leola | https://pietro.info | +| | | | | | Arch | http://hazle.org | +| | | | | | Eldred | http://gabriel.net | +| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| | | | | | Clarissa | https://audreanne.name | +| | | | | | Vida | https://theresia.biz | +| | | | | | Ransom | http://isom.com | +| | | | | | Anastasia | http://kamryn.info | +| | | | | | Marlene | https://cyril.name | +| | | | | | Zetta | http://pete.org | +| | | | | | Candida | https://craig.biz | +| | | | | | Timmothy | https://joanny.biz | +| | | | | | Alfonzo | http://dorothea.org | +| National Accounts Liaison | 7.2.6 | Overwrite | | | Cedrick | https://zachariah.net | +| | | | | | Marcelle | https://adah.org | +| | | | | | Barney | http://erica.org | +| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| | | | | | Tyson | https://bonita.org | +| | | | | | Jazlyn | http://madonna.net | +| | | | | | Deangelo | https://jess.info | +| | | | | | Alvah | https://hans.net | +| | | | | | Payton | http://shanna.name | +| | | | | | Providenci | https://tyra.org | +| | | | | | Flo | http://isidro.net | +| | | | | | Dawn | https://anika.org | +| | | | | | Silas | http://zane.name | +| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| | | | | | Monserrat | http://katrine.name | +| | | | | | Abel | https://geovany.com | +| | | | | | Diana | http://eula.name | +| | | | | | Raphael | https://zackery.info | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| | | | | | Earnestine | http://nathanial.biz | +| | | | | | Connor | https://augustus.net | +| | | | | | Araceli | http://hailey.biz | +| | | | | | Janessa | https://craig.com | +| | | | | | Erica | http://kristin.org | +| | | | | | Alek | http://shany.biz | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| | | | | | Princess | http://haylie.biz | +| | | | | | Jordane | https://gregorio.com | +| | | | | | Opal | http://abbie.org | +| | | | | | Pablo | https://maxime.biz | +| | | | | | Shaun | https://concepcion.net | +| | | | | | Moises | http://rupert.info | +| Dynamic Marketing Consultant | 2.4.9 | Overwrite | | | Angie | https://ardella.info | +| | | | | | Melissa | https://sandra.biz | +| | | | | | Pearline | https://noble.net | +| | | | | | Dusty | https://verlie.com | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0e950a54f89d8462.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0e950a54f89d8462.verified.txt new file mode 100644 index 00000000..80b577ee --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0e950a54f89d8462.verified.txt @@ -0,0 +1,40 @@ +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0f6bfda5c00e6917.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0f6bfda5c00e6917.verified.txt new file mode 100644 index 00000000..784b0008 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0f6bfda5c00e6917.verified.txt @@ -0,0 +1,46 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0f8d9475d3c1c7c7.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0f8d9475d3c1c7c7.verified.txt new file mode 100644 index 00000000..cac62e52 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_0f8d9475d3c1c7c7.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | --------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | --------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_10027f440098da1a.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_10027f440098da1a.verified.txt new file mode 100644 index 00000000..cd306069 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_10027f440098da1a.verified.txt @@ -0,0 +1,91 @@ +| ------------------------------------ | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ------- | -------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ------- | -------------------- | +| National Creative Analyst | 6.3.1 | Expression | | The SSL feed is down, back up the cross-platform feed so we can back up the SSL feed! | | | | | | +| 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Forward Program Officer | 4.2.4 | Url | quantifying the capacitor won't do anything, we need to override the open-source AI capacitor! | indexing the port won't do anything, we need to back up the virtual AGP port! | calculating the bus won't do anything, we need to generate the online CSS bus! | Leon Mayer,Leon Mayer | | | | +| International Branding Producer | 3.8.2 | Expression | We need to generate the solid state AGP microchip! | | | | | | | +| Forward Research Associate | 3.4.7 | Url | | You can't navigate the capacitor without programming the solid state SQL capacitor! | | | | | | +| Dynamic Configuration Specialist | 3.6.8 | Overwrite | | Use the haptic AGP protocol, then you can program the haptic protocol! | | Meredith Sawayn,Meredith Sawayn,Meredith Sawayn,Meredith Sawayn,Meredith Sawayn,Meredith Sawayn | | | | +| Future Tactics Specialist | 0.2.2 | Overwrite | We need to override the primary SQL pixel! | We need to transmit the redundant EXE driver! | You can't calculate the hard drive without hacking the multi-byte FTP hard drive! | | | | | +| Regional Communications Strategist | 9.3.1 | Url | overriding the matrix won't do anything, we need to back up the solid state IB matrix! | Try to index the HDD panel, maybe it will index the haptic panel! | We need to index the bluetooth JSON pixel! | | http://eloisa.biz | | | +| Human Accountability Developer | 6.9.0 | Unknown | If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit! | | | | | | | +| Forward Directives Representative | 0.5.1 | Url | | parsing the panel won't do anything, we need to calculate the digital SMTP panel! | | Theresa Heathcote,Theresa Heathcote,Theresa Heathcote,Theresa Heathcote,Theresa Heathcote,Theresa Heathcote | https://cleve.biz | | | +| Customer Metrics Analyst | 6.7.1 | Unknown | | | | | | | | +| Corporate Intranet Associate | 7.5.1 | Overwrite | | 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! | | | | | +| Forward Branding Strategist | 4.6.2 | Overwrite | | | The THX hard drive is down, compress the back-end hard drive so we can compress the THX hard drive! | | | | | +| Internal Program Engineer | 2.9.3 | Expression | I'll input the neural SQL application, that should application the SQL application! | You can't generate the hard drive without transmitting the haptic RAM hard drive! | I'll bypass the optical AGP feed, that should feed the AGP feed! | | http://cleta.org | | | +| District Integration Designer | 6.2.2 | Expression | | You can't connect the port without connecting the back-end COM port! | | Ignacio Hane,Ignacio Hane | https://cindy.org | | | +| Central Tactics Director | 4.6.7 | Url | backing up the system won't do anything, we need to parse the neural CSS system! | We need to transmit the back-end RSS transmitter! | | Doyle Osinski,Doyle Osinski,Doyle Osinski,Doyle Osinski | https://valentina.net | | | +| International Marketing Officer | 7.2.8 | Expression | | | | Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk | | | | +| National Security Orchestrator | 3.5.6 | Expression | Try to copy the HDD array, maybe it will copy the back-end array! | 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! | Roderick Koelpin,Roderick Koelpin,Roderick Koelpin | | | | +| Global Markets Administrator | 8.6.8 | Expression | 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! | The SSL application is down, reboot the bluetooth application so we can reboot the SSL application! | Julius Bernhard,Julius Bernhard,Julius Bernhard,Julius Bernhard | https://lois.biz | | | +| Direct Group Liaison | 3.5.1 | Overwrite | We need to parse the haptic SMS monitor! | | We need to program the auxiliary JBOD circuit! | | | | | +| International Branding Associate | 4.9.4 | Url | | 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://trinity.name | | | +| Corporate Intranet Agent | 9.1.8 | Url | We need to compress the 1080p GB circuit! | | The PCI driver is down, reboot the haptic driver so we can reboot the PCI driver! | Essie Hamill,Essie Hamill | http://precious.name | | | +| Senior Metrics Engineer | 8.3.4 | Overwrite | | Try to quantify the FTP bus, maybe it will quantify the optical bus! | | Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand | http://lou.net | | | +| Corporate Program Associate | 5.2.5 | Overwrite | | | overriding the interface won't do anything, we need to override the virtual THX interface! | | | | | +| Principal Web Associate | 4.2.5 | Expression | | | If we index the hard drive, we can get to the XSS hard drive through the primary XSS hard drive! | Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles | | | | +| Forward Usability Developer | 6.9.1 | Overwrite | | | You can't connect the protocol without overriding the redundant RSS protocol! | | | | | +| Lead Program Engineer | 4.5.7 | Overwrite | | The PCI protocol is down, calculate the bluetooth protocol so we can calculate the PCI protocol! | | | | | | +| Direct Applications Designer | 1.5.1 | Unknown | | We need to connect the haptic TCP panel! | If we bypass the card, we can get to the HDD card through the auxiliary HDD card! | Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling | http://tito.name | | | +| International Marketing Officer | 2.2.1 | Overwrite | If we connect the driver, we can get to the XSS driver through the online XSS driver! | | | | https://weldon.info | | | +| Forward Paradigm Developer | 7.9.7 | Overwrite | The GB interface is down, input the auxiliary interface so we can input the GB interface! | The XSS transmitter is down, back up the online transmitter so we can back up the XSS transmitter! | | Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter | http://maureen.name | | | +| Forward Communications Director | 6.0.8 | Overwrite | Try to override the AI alarm, maybe it will override the online alarm! | We need to quantify the virtual TCP card! | | Kristin Bernhard,Kristin Bernhard | | | | +| Dynamic Configuration Administrator | 4.3.8 | Url | | | Use the redundant AGP microchip, then you can override the redundant microchip! | Roberto Deckow,Roberto Deckow,Roberto Deckow | | | | +| National Creative Officer | 5.5.6 | Overwrite | indexing the capacitor won't do anything, we need to reboot the redundant FTP capacitor! | | The TCP array is down, bypass the mobile array so we can bypass the TCP array! | | http://orpha.name | | | +| Senior Brand Agent | 3.1.9 | Url | generating the alarm won't do anything, we need to parse the virtual XSS alarm! | | I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth! | | https://lina.info | | | +| Lead Configuration Liaison | 1.8.9 | Expression | | connecting the transmitter won't do anything, we need to program the cross-platform XSS transmitter! | | | http://esther.biz | | | +| Corporate Infrastructure Executive | 4.8.1 | Unknown | | | Try to index the FTP transmitter, maybe it will index the bluetooth transmitter! | Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist | https://justice.info | | | +| Senior Research Liaison | 5.0.6 | Overwrite | If we compress the system, we can get to the AGP system through the multi-byte AGP system! | I'll hack the optical XSS monitor, that should monitor the XSS monitor! | | | http://clair.biz | | | +| Regional Brand Associate | 4.0.9 | Expression | | | I'll program the wireless HDD pixel, that should pixel the HDD pixel! | | | | | +| National Implementation Agent | 5.6.8 | Expression | | | Use the multi-byte PNG circuit, then you can navigate the multi-byte circuit! | Ira Hermiston,Ira Hermiston,Ira Hermiston,Ira Hermiston | http://rex.biz | | | +| Legacy Solutions Architect | 7.9.3 | Url | | Try to input the AI sensor, maybe it will input the digital sensor! | If we program the array, we can get to the JBOD array through the primary JBOD array! | | | | | +| Investor Usability Officer | 2.5.2 | Unknown | Try to program the XML capacitor, maybe it will program the haptic capacitor! | Use the optical SSL alarm, then you can bypass the optical alarm! | | Johnny Bernier | http://orlo.name | | | +| Central Functionality Technician | 3.9.3 | Url | | | The AI microchip is down, override the multi-byte microchip so we can override the AI microchip! | | | | | +| Future Markets Architect | 7.2.2 | Overwrite | If we synthesize the port, we can get to the CSS port through the online CSS port! | synthesizing the panel won't do anything, we need to transmit the neural THX panel! | | Gerald Cruickshank,Gerald Cruickshank,Gerald Cruickshank | https://maxime.info | | | +| Customer Interactions Representative | 0.8.8 | Url | We need to quantify the digital SSL array! | | | | http://heather.name | | | +| Senior Operations Assistant | 2.4.2 | Expression | | If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth! | | Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva | https://hector.info | | | +| Internal Factors Facilitator | 2.6.3 | Url | | Try to copy the PNG sensor, maybe it will copy the 1080p sensor! | | Mable Kris,Mable Kris,Mable Kris,Mable Kris,Mable Kris | http://melba.name | | | +| Chief Program Director | 8.8.8 | Overwrite | If we parse the protocol, we can get to the IB protocol through the wireless IB protocol! | | Use the primary SCSI matrix, then you can program the primary matrix! | | | | | +| Chief Paradigm Supervisor | 4.3.3 | Url | | | We need to bypass the wireless XML pixel! | Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins | https://zion.info | | | +| Investor Interactions Designer | 1.9.4 | Url | | | parsing the card won't do anything, we need to synthesize the online SQL card! | Stella Barton,Stella Barton | https://octavia.name | | | +| Dynamic Configuration Assistant | 3.2.1 | Expression | | 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 | | | | +| Internal Solutions Director | 8.4.4 | Unknown | | | | | | | | +| Lead Optimization Analyst | 2.1.7 | Expression | Use the wireless XSS bandwidth, then you can program the wireless bandwidth! | The SDD hard drive is down, copy the virtual hard drive so we can copy the SDD hard drive! | | Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson | https://madge.info | | | +| Internal Operations Producer | 5.8.9 | Overwrite | | Use the online SMTP pixel, then you can index the online pixel! | | | | | | +| Legacy Interactions Officer | 8.8.5 | Overwrite | | | Try to program the RAM bandwidth, maybe it will program the optical bandwidth! | | | | | +| Chief Functionality Planner | 5.1.2 | Unknown | | I'll calculate the 1080p HDD system, that should system the HDD system! | | Matt Mills,Matt Mills | http://myrtice.com | | | +| Global Configuration Consultant | 5.9.5 | Expression | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | bypassing the bus won't do anything, we need to calculate the virtual GB bus! | | Guadalupe Littel,Guadalupe Littel,Guadalupe Littel | | | | +| Chief Response Strategist | 8.0.4 | Url | | The RSS alarm is down, compress the mobile alarm so we can compress the RSS alarm! | Use the 1080p PNG application, then you can calculate the 1080p application! | Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann | | | | +| National Solutions Representative | 5.6.2 | Overwrite | | | You can't synthesize the bandwidth without programming the solid state XSS bandwidth! | | | | | +| National Factors Administrator | 8.1.4 | Unknown | | | | | http://janelle.name | | | +| Direct Applications Assistant | 3.5.8 | Unknown | The PCI pixel is down, synthesize the multi-byte pixel so we can synthesize the PCI pixel! | If we back up the driver, we can get to the TCP driver through the redundant TCP driver! | We need to back up the 1080p COM interface! | | http://consuelo.info | | | +| District Creative Designer | 1.4.6 | Url | We need to program the haptic IB panel! | | | | http://cameron.info | | | +| Senior Brand Officer | 9.3.6 | Url | If we override the system, we can get to the HDD system through the haptic HDD system! | If we parse the bus, we can get to the XML bus through the solid state XML bus! | | | http://carol.name | | | +| Legacy Communications Engineer | 7.8.1 | Expression | | I'll synthesize the haptic THX hard drive, that should hard drive the THX hard drive! | The ADP hard drive is down, input the back-end hard drive so we can input the ADP hard drive! | Hilda Kub,Hilda Kub,Hilda Kub,Hilda Kub,Hilda Kub | | | | +| Dynamic Paradigm Officer | 2.3.4 | Overwrite | | | | | https://charity.biz | | | +| National Infrastructure Architect | 6.6.7 | Unknown | | If we bypass the hard drive, we can get to the EXE hard drive through the bluetooth EXE hard drive! | | Howard Rath,Howard Rath,Howard Rath,Howard Rath | http://darlene.net | | | +| Dynamic Factors Producer | 5.7.1 | Url | | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | | | | | +| Dynamic Tactics Facilitator | 0.7.3 | Unknown | | | The SSL port is down, bypass the haptic port so we can bypass the SSL port! | | | | | +| Legacy Intranet Planner | 8.3.2 | Expression | Use the bluetooth AI bandwidth, then you can transmit the bluetooth bandwidth! | | | | http://nathanael.name | | | +| Future Accounts Designer | 5.1.9 | Expression | We need to navigate the wireless SAS pixel! | | | | | | | +| Legacy Marketing Designer | 4.5.9 | Expression | | You can't bypass the microchip without parsing the back-end JBOD microchip! | You can't bypass the alarm without generating the back-end HTTP alarm! | | http://lexi.net | | | +| Human Program Orchestrator | 5.2.4 | Url | Use the cross-platform EXE microchip, then you can quantify the cross-platform microchip! | | bypassing the bandwidth won't do anything, we need to copy the mobile JBOD bandwidth! | | | | | +| Global Usability Manager | 9.1.0 | Overwrite | | Try to back up the THX interface, maybe it will back up the auxiliary interface! | | | http://vella.com | | | +| Global Solutions Administrator | 5.2.4 | Overwrite | We need to calculate the online SAS bandwidth! | If we index the bus, we can get to the CSS bus through the optical CSS bus! | | Nellie Oberbrunner | https://hailee.biz | | | +| Central Factors Supervisor | 0.8.3 | Overwrite | If we transmit the monitor, we can get to the HTTP monitor through the digital HTTP monitor! | Use the optical IB transmitter, then you can navigate the optical transmitter! | If we back up the firewall, we can get to the TCP firewall through the multi-byte TCP firewall! | Kathleen Blick,Kathleen Blick,Kathleen Blick,Kathleen Blick,Kathleen Blick | http://clement.name | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | | | +| Corporate Division Executive | 4.7.8 | Url | I'll index the neural SDD bus, that should bus the SDD bus! | If we reboot the program, we can get to the SSL program through the primary SSL program! | | Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros | http://wilmer.com | | | +| Human Group Agent | 3.2.2 | Url | | | generating the interface won't do anything, we need to hack the optical PCI interface! | Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser | https://vilma.com | | | +| Human Program Technician | 2.8.4 | Overwrite | | | | Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill | http://tomasa.info | | | +| Regional Factors Designer | 7.4.1 | Url | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | Use the haptic RSS port, then you can transmit the haptic port! | Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus | | | | +| Lead Identity Developer | 7.1.0 | Url | | compressing the bandwidth won't do anything, we need to bypass the primary RAM bandwidth! | | | https://eve.com | | | +| Regional Configuration Engineer | 7.3.8 | Expression | Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter! | You can't reboot the matrix without navigating the optical SDD matrix! | | | http://roman.org | | | +| Senior Quality Executive | 4.4.8 | Url | I'll quantify the solid state THX feed, that should feed the THX feed! | Use the online RAM array, then you can index the online array! | You can't reboot the transmitter without transmitting the online ADP transmitter! | | http://khalid.com | | | +| Forward Tactics Planner | 5.4.6 | Url | I'll input the primary GB port, that should port the GB port! | | 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 | https://caterina.info | | | +| Product Tactics Engineer | 5.6.9 | Overwrite | Use the online TCP driver, then you can navigate the online driver! | I'll transmit the open-source HTTP pixel, that should pixel the HTTP pixel! | transmitting the program won't do anything, we need to generate the multi-byte SAS program! | Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich | | | | +| ------------------------------------ | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ------- | -------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_106104bd5e989566.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_106104bd5e989566.verified.txt new file mode 100644 index 00000000..0b01a057 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_106104bd5e989566.verified.txt @@ -0,0 +1,130 @@ +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Accountability Designer | 0.8.0 | Ignored | We need to hack the online FTP application! | | Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn | http://taya.info | Abelardo | http://carolina.name | +| | | | | | | | Lindsey | http://rigoberto.org | +| | | | | | | | Lou | http://darlene.biz | +| | | | | | | | Oliver | https://filomena.com | +| | | | | | | | Vincenzo | https://ulices.biz | +| | | | | | | | Florida | http://jovan.net | +| | | | | | | | Ari | https://chad.com | +| | | | | | | | Yvonne | http://jada.name | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| Legacy Usability Coordinator | 5.8.8 | Overwrite | Try to calculate the PNG port, maybe it will calculate the back-end port! | | | http://thora.info | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Senior Solutions Strategist | 7.5.0 | 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 | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Customer Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| Corporate Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | http://celestine.info | Clemens | https://abagail.info | +| | | | | | | | Franz | http://prudence.info | +| | | | | | | | Casper | https://alva.com | +| | | | | | | | Mario | http://alexandria.biz | +| Dynamic Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.biz | +| Legacy Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_106ef1d27a47cb6a.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_106ef1d27a47cb6a.verified.txt new file mode 100644 index 00000000..22bfd49d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_106ef1d27a47cb6a.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_10df60db074a2f18.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_10df60db074a2f18.verified.txt new file mode 100644 index 00000000..8338c366 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_10df60db074a2f18.verified.txt @@ -0,0 +1,8 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Judson | https://wilson.net | +| | | | | Guadalupe | http://otho.info | +| | | | | General | https://skylar.name | +| | | | | Haylie | http://audreanne.info | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1170f00308aff914.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1170f00308aff914.verified.txt new file mode 100644 index 00000000..949fa777 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1170f00308aff914.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Paige | https://remington.info | +| | | | | Aletha | https://isobel.info | +| | | | | Pearline | https://johnathon.info | +| | | | | Eleanora | http://jaeden.info | +| | | | | Nikolas | https://daphney.net | +| | | | | Oceane | http://clifton.com | +| | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_123a1accc2ecdda4.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_123a1accc2ecdda4.verified.txt new file mode 100644 index 00000000..e6152db6 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_123a1accc2ecdda4.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_12b8f05434b6cdd1.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_12b8f05434b6cdd1.verified.txt new file mode 100644 index 00000000..b921f5f9 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_12b8f05434b6cdd1.verified.txt @@ -0,0 +1,127 @@ +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Product Data Liaison | 7.8.8 | Unknown | Try to calculate the GB card, maybe it will calculate the wireless card! | | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | | | Lewis | https://alisa.com | +| | | | | | | | | Delores | https://layne.name | +| | | | | | | | | Delphine | https://katlynn.org | +| | | | | | | | | Meredith | https://johanna.info | +| | | | | | | | | Jacklyn | https://kadin.com | +| | | | | | | | | Hardy | https://donna.info | +| International Research Architect | 3.7.4 | Ignored | | Try to quantify the USB application, maybe it will quantify the mobile application! | If we index the pixel, we can get to the AI pixel through the wireless AI pixel! | | | Madisen | http://raegan.biz | +| | | | | | | | | Cathy | http://giovanna.info | +| | | | | | | | | Ike | https://jerome.biz | +| Investor Division Assistant | 9.6.2 | Url | | I'll parse the primary PCI matrix, that should matrix the PCI matrix! | | | | Nya | http://sunny.biz | +| | | | | | | | | Arlo | https://cordia.info | +| | | | | | | | | Linnie | https://marcos.name | +| | | | | | | | | Luella | http://frederic.name | +| | | | | | | | | Lucinda | https://dion.name | +| | | | | | | | | Jayson | https://ryleigh.net | +| | | | | | | | | Mervin | https://lorenza.net | +| Dynamic Solutions Assistant | 5.6.4 | Ignored | navigating the alarm won't do anything, we need to copy the 1080p AGP alarm! | | | Craig Halvorson,Craig Halvorson,Craig Halvorson,Craig Halvorson | http://isabell.info | Tess | http://kailyn.info | +| | | | | | | | | Eileen | http://manley.name | +| | | | | | | | | Conor | https://glenna.name | +| | | | | | | | | Sylvester | http://gaylord.biz | +| | | | | | | | | Maxime | https://tom.com | +| National Accountability Producer | 6.9.7 | Unknown | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | https://linwood.biz | Travon | https://dedrick.name | +| | | | | | | | | Elissa | http://kaci.org | +| | | | | | | | | Brandi | https://aniyah.com | +| | | | | | | | | Tyson | https://bonita.org | +| | | | | | | | | Jazlyn | http://madonna.net | +| | | | | | | | | Deangelo | https://jess.info | +| | | | | | | | | Alvah | https://hans.net | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| Forward Tactics Agent | 6.8.8 | Url | | We need to back up the primary SMTP circuit! | The COM bandwidth is down, input the auxiliary bandwidth so we can input the COM bandwidth! | Jon Schulist,Jon Schulist | https://flo.info | Diana | http://eula.name | +| | | | | | | | | Raphael | https://zackery.info | +| | | | | | | | | Nettie | https://brayan.com | +| Global Mobility Technician | 8.6.3 | Unknown | | We need to input the haptic XML port! | | Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante | | Lonie | http://wilburn.org | +| | | | | | | | | Concepcion | http://ed.org | +| | | | | | | | | Amanda | https://sophie.net | +| | | | | | | | | Claudine | http://ofelia.biz | +| | | | | | | | | Petra | http://clare.name | +| | | | | | | | | Ozella | https://verla.name | +| | | | | | | | | Denis | http://pete.com | +| International Intranet Planner | 1.3.4 | Expression | 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 | Ahmad | https://lupe.com | +| | | | | | | | | Randi | https://jaiden.biz | +| | | | | | | | | Patience | https://marlene.name | +| | | | | | | | | Lenna | https://franco.name | +| | | | | | | | | Kyleigh | https://tevin.name | +| | | | | | | | | Sallie | https://jordane.name | +| | | | | | | | | Willy | https://daija.info | +| | | | | | | | | Jannie | https://retta.net | +| | | | | | | | | Lottie | http://yasmine.com | +| | | | | | | | | Delia | http://khalil.com | +| Investor Operations Director | 5.6.0 | Expression | Try to input the AI microchip, maybe it will input the 1080p microchip! | | If we synthesize the sensor, we can get to the AI sensor through the redundant AI sensor! | | https://alene.info | Elouise | https://ron.com | +| | | | | | | | | Brown | https://cordia.com | +| | | | | | | | | Ericka | https://eugene.com | +| | | | | | | | | Rashad | http://thomas.com | +| | | | | | | | | Antonia | https://marcelle.org | +| Product Interactions Planner | 7.4.0 | Expression | Try to navigate the PCI matrix, maybe it will navigate the haptic matrix! | | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | http://bertha.net | Rey | https://connie.info | +| | | | | | | | | Hollie | http://rico.name | +| | | | | | | | | Marshall | http://pierce.org | +| | | | | | | | | 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 | +| Principal Assurance Representative | 3.8.2 | Ignored | | | | Patsy Erdman,Patsy Erdman,Patsy Erdman,Patsy Erdman | | Jadon | https://amelia.biz | +| | | | | | | | | Toni | http://angie.name | +| | | | | | | | | Ardella | http://melissa.net | +| | | | | | | | | Sandra | http://pearline.org | +| | | | | | | | | Noble | https://dusty.net | +| Corporate Marketing Strategist | 3.8.5 | Ignored | | | Use the redundant JSON application, then you can program the redundant application! | Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch | | Naomi | http://mckenna.net | +| | | | | | | | | Jalyn | https://katharina.name | +| | | | | | | | | Kane | http://beulah.biz | +| | | | | | | | | Eleanora | http://birdie.net | +| | | | | | | | | Alvah | http://keanu.net | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Dynamic Group Associate | 6.6.1 | Ignored | We need to input the open-source SMTP bus! | | | | http://kian.name | Burley | http://lemuel.com | +| | | | | | | | | Brenden | http://agnes.net | +| | | | | | | | | Urban | https://micheal.name | +| | | | | | | | | Ida | https://murray.org | +| | | | | | | | | Samanta | http://assunta.biz | +| | | | | | | | | Florencio | http://bradford.info | +| | | | | | | | | Marcella | http://ray.net | +| | | | | | | | | Gunnar | https://elissa.net | +| | | | | | | | | Maud | https://edgar.name | +| | | | | | | | | Angelina | https://adonis.biz | +| Chief Solutions Administrator | 0.4.1 | Unknown | | 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 | Shaun | https://antwan.org | +| | | | | | | | | Hazel | https://forrest.net | +| | | | | | | | | Brianne | https://dorothea.name | +| | | | | | | | | Don | http://torey.com | +| | | | | | | | | Cedrick | https://zachariah.net | +| | | | | | | | | Marcelle | https://adah.org | +| | | | | | | | | Barney | http://erica.org | +| | | | | | | | | Jordi | https://alysha.com | +| | | | | | | | | Kristina | https://pattie.info | +| | | | | | | | | Cory | http://kailey.com | +| Global Mobility Facilitator | 8.5.9 | Url | | We need to parse the primary PCI protocol! | | Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch | https://itzel.info | Mitchel | http://carleton.name | +| | | | | | | | | Madalyn | http://narciso.net | +| | | | | | | | | Mia | http://nicklaus.net | +| | | | | | | | | Abelardo | http://carolina.name | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | Julius Abbott | http://celestine.info | Ettie | http://lonny.net | +| | | | | | | | | Onie | https://cassie.biz | +| | | | | | | | | Solon | https://buck.biz | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_13424e688da59b94.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_13424e688da59b94.verified.txt new file mode 100644 index 00000000..e65ed6e4 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_13424e688da59b94.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_14bc4a4c40601086.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_14bc4a4c40601086.verified.txt new file mode 100644 index 00000000..329ce28d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_14bc4a4c40601086.verified.txt @@ -0,0 +1,32 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Lead Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_155bcc540303897b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_155bcc540303897b.verified.txt new file mode 100644 index 00000000..f81123c7 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_155bcc540303897b.verified.txt @@ -0,0 +1,130 @@ +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.biz | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| Corporate Accountability Designer | 0.8.0 | Ignored | We need to hack the online FTP application! | | Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn | http://taya.info | Abelardo | http://carolina.name | +| | | | | | | | Lindsey | http://rigoberto.org | +| | | | | | | | Lou | http://darlene.biz | +| | | | | | | | Oliver | https://filomena.com | +| | | | | | | | Vincenzo | https://ulices.biz | +| | | | | | | | Florida | http://jovan.net | +| | | | | | | | Ari | https://chad.com | +| | | | | | | | Yvonne | http://jada.name | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Customer Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Dynamic Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| Legacy Usability Coordinator | 5.8.8 | Overwrite | Try to calculate the PNG port, maybe it will calculate the back-end port! | | | http://thora.info | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Senior Solutions Strategist | 7.5.0 | 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 | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Corporate Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | http://celestine.info | Clemens | https://abagail.info | +| | | | | | | | Franz | http://prudence.info | +| | | | | | | | Casper | https://alva.com | +| | | | | | | | Mario | http://alexandria.biz | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_158f69f6816fb19d.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_158f69f6816fb19d.verified.txt new file mode 100644 index 00000000..9076a62c --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_158f69f6816fb19d.verified.txt @@ -0,0 +1,94 @@ +| ----------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | --------- | --------------------- | +| Global Paradigm Assistant | 8.0.5 | Expression | We need to calculate the solid state HTTP hard drive! | | | https://randy.org | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Marketing Coordinator | 3.6.1 | Overwrite | | | | https://marcos.org | | | +| National Assurance Planner | 2.7.7 | Unknown | | I'll reboot the online AGP alarm, that should alarm the AGP alarm! | Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag | | | | +| District Interactions Supervisor | 4.5.2 | Url | The XSS capacitor is down, generate the bluetooth capacitor so we can generate the XSS capacitor! | The ADP firewall is down, input the primary firewall so we can input the ADP firewall! | | | | | +| Future Tactics Assistant | 1.5.5 | Expression | The IB sensor is down, reboot the virtual sensor so we can reboot the IB sensor! | If we calculate the matrix, we can get to the SMS matrix through the bluetooth SMS matrix! | | https://giovanny.net | | | +| Future Configuration Officer | 7.6.0 | Unknown | You can't compress the alarm without parsing the optical JBOD alarm! | I'll compress the back-end SSL system, that should system the SSL system! | Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie | | | | +| Forward Usability Specialist | 5.6.9 | Overwrite | I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth! | | | | | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | | | +| Direct Brand Director | 4.7.4 | Url | You can't navigate the capacitor without programming the solid state SQL capacitor! | | | | | | +| Senior Configuration Developer | 4.0.9 | Url | Use the primary SCSI matrix, then you can program the primary matrix! | If we parse the interface, we can get to the JSON interface through the mobile JSON interface! | Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle | | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | | | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| Customer Solutions Officer | 4.5.2 | Expression | You can't copy the matrix without compressing the wireless AGP matrix! | | | https://rylan.name | | | +| Dynamic Implementation Engineer | 6.7.1 | Overwrite | We need to transmit the open-source EXE interface! | | | http://margie.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 | | | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | | | +| Product Directives Engineer | 8.2.3 | Unknown | transmitting the bus won't do anything, we need to navigate the online IB bus! | | Maggie Lindgren | | | | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | | | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | | | +| Human Accounts Orchestrator | 4.1.6 | Url | | | | | | | +| Direct Division Officer | 6.5.6 | Url | transmitting the protocol won't do anything, we need to generate the multi-byte THX protocol! | | Glenda Schuppe,Glenda Schuppe | http://catherine.name | | | +| Investor Quality Associate | 0.5.1 | Expression | | Try to reboot the SSL alarm, maybe it will reboot the solid state alarm! | Carrie Hansen,Carrie Hansen,Carrie Hansen,Carrie Hansen | https://ezequiel.biz | | | +| Global Identity Supervisor | 0.9.1 | Overwrite | | | | | | | +| Dynamic Branding Manager | 1.4.0 | Overwrite | You can't navigate the application without generating the cross-platform COM application! | Try to program the FTP alarm, maybe it will program the virtual alarm! | | http://dario.info | | | +| Dynamic Data Technician | 4.2.3 | Url | I'll copy the optical RAM feed, that should feed the RAM feed! | | June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds | http://nia.info | | | +| Product Solutions Manager | 9.5.2 | Overwrite | I'll hack the primary SDD card, that should card the SDD card! | hacking the transmitter won't do anything, we need to index the open-source CSS transmitter! | Sergio Bailey,Sergio Bailey,Sergio Bailey | | | | +| Corporate Intranet Specialist | 3.5.6 | Expression | | | Edmund Lehner,Edmund Lehner,Edmund Lehner,Edmund Lehner | | | | +| Chief Program Associate | 2.6.7 | Unknown | We need to compress the optical PNG array! | | Wilbert Kunze,Wilbert Kunze,Wilbert Kunze,Wilbert Kunze | http://coy.info | | | +| Principal Operations Assistant | 0.9.0 | Url | I'll copy the auxiliary HDD bus, that should bus the HDD bus! | I'll copy the digital USB circuit, that should circuit the USB circuit! | | | | | +| International Brand Strategist | 3.9.3 | Url | | | Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy | https://rowena.info | | | +| Customer Mobility Assistant | 4.2.9 | 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 | http://adonis.biz | | | +| Principal Brand Executive | 7.2.7 | Unknown | | | | https://dariana.com | | | +| District Assurance Technician | 8.5.5 | Overwrite | | | | http://zander.com | | | +| Human Paradigm Assistant | 8.8.8 | Expression | | | Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich | | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Factors Associate | 1.8.3 | Unknown | | You can't navigate the panel without calculating the open-source THX panel! | | http://dovie.name | | | +| Product Functionality Supervisor | 9.4.5 | Overwrite | Use the 1080p AI microchip, then you can reboot the 1080p microchip! | Use the open-source ADP matrix, then you can copy the open-source matrix! | | | | | +| Forward Data Orchestrator | 3.3.5 | Expression | Use the haptic XML driver, then you can index the haptic driver! | compressing the system won't do anything, we need to compress the optical RSS system! | | | | | +| Chief Factors Developer | 5.9.5 | Url | | Try to connect the ADP system, maybe it will connect the solid state system! | Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady | | | | +| Dynamic Division Representative | 7.3.5 | Unknown | | I'll index the haptic FTP alarm, that should alarm the FTP alarm! | Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson | http://taurean.net | | | +| Lead Operations Supervisor | 4.5.2 | Expression | The AI panel is down, transmit the open-source panel so we can transmit the AI panel! | | | | | | +| Customer Communications Engineer | 6.9.4 | Overwrite | | | Tanya Reinger,Tanya Reinger,Tanya Reinger | http://tito.name | | | +| Human Program Analyst | 3.1.8 | Expression | If we back up the application, we can get to the USB application through the cross-platform USB application! | | | http://efrain.org | | | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | | | +| Investor Accounts Facilitator | 7.7.8 | Expression | | | Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman | http://scottie.biz | | | +| Customer Branding Orchestrator | 8.3.7 | Overwrite | | We need to bypass the neural USB capacitor! | Nora Dietrich | http://nona.com | | | +| Dynamic Solutions Agent | 0.0.5 | Overwrite | Use the haptic USB card, then you can navigate the haptic card! | | | | | | +| Global Optimization Engineer | 8.7.9 | Expression | | quantifying the transmitter won't do anything, we need to synthesize the auxiliary FTP transmitter! | | http://aniya.org | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | | | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | | | +| Legacy Security Facilitator | 1.9.0 | Expression | | Use the cross-platform ADP alarm, then you can back up the cross-platform alarm! | | https://edythe.info | | | +| Regional Metrics Strategist | 1.2.1 | Unknown | | Try to override the GB driver, maybe it will override the digital driver! | | | | | +| Customer Program Developer | 2.9.8 | Expression | | You can't transmit the pixel without calculating the bluetooth FTP pixel! | | http://lenora.com | | | +| District Optimization Technician | 5.2.3 | Overwrite | | | Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti | https://douglas.info | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | | | +| Dynamic Security Director | 0.0.2 | Url | transmitting the feed won't do anything, we need to navigate the redundant SDD feed! | Try to parse the HTTP port, maybe it will parse the bluetooth port! | Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block | | | | +| 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 Division Administrator | 1.0.4 | Overwrite | We need to program the optical COM microchip! | We need to hack the haptic SAS microchip! | | | | | +| Investor Tactics Director | 0.4.3 | Expression | | | | https://aylin.com | | | +| Human Identity Representative | 4.1.5 | Overwrite | The SAS bus is down, program the neural bus so we can program the SAS bus! | | Joyce Auer,Joyce Auer,Joyce Auer | http://alyce.biz | | | +| Central Research Technician | 2.8.8 | Url | | You can't generate the program without connecting the bluetooth USB program! | | | | | +| Regional Functionality Agent | 5.9.9 | Overwrite | We need to index the 1080p SAS hard drive! | I'll connect the digital JBOD application, that should application the JBOD application! | Gloria Williamson,Gloria Williamson,Gloria Williamson,Gloria Williamson | http://arthur.net | | | +| International Branding Producer | 3.8.2 | Expression | We need to generate the solid state AGP microchip! | | | | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| Customer Web Assistant | 1.9.0 | Unknown | | | | | | | +| Human Markets Planner | 5.0.1 | Expression | Try to back up the COM driver, maybe it will back up the bluetooth driver! | | | | | | +| Regional Directives Liaison | 4.7.8 | Expression | If we connect the interface, we can get to the SCSI interface through the auxiliary SCSI interface! | | Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic | https://glennie.biz | | | +| International Solutions Planner | 9.0.0 | Url | Use the multi-byte SMTP program, then you can synthesize the multi-byte program! | | | | | | +| Lead Solutions Technician | 1.5.7 | Unknown | | | | | | | +| Lead Program Technician | 5.8.9 | Expression | | We need to transmit the back-end AGP sensor! | Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer | http://curtis.org | | | +| Regional Optimization Administrator | 3.6.4 | Expression | | I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive! | | http://serenity.info | | | +| International Tactics Administrator | 9.9.9 | Url | | | | | | | +| Human Tactics Facilitator | 5.7.0 | Url | Try to bypass the HTTP application, maybe it will bypass the digital application! | | | | | | +| Chief Infrastructure Specialist | 9.0.5 | Overwrite | hacking the port won't do anything, we need to back up the optical SMS port! | | Jackie Schumm | | | | +| Dynamic Security Specialist | 7.8.5 | Overwrite | Try to input the GB pixel, maybe it will input the wireless pixel! | You can't transmit the bus without indexing the digital TCP bus! | Guy Waters,Guy Waters | http://nova.biz | | | +| Principal Intranet Architect | 4.9.3 | Unknown | | | | | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | | | +| Global Optimization Architect | 1.5.0 | Unknown | Try to navigate the SCSI sensor, maybe it will navigate the mobile sensor! | | | | | | +| ----------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_15cc676287914233.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_15cc676287914233.verified.txt new file mode 100644 index 00000000..e65ed6e4 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_15cc676287914233.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_15f22b39f94f704d.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_15f22b39f94f704d.verified.txt new file mode 100644 index 00000000..43a15bbb --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_15f22b39f94f704d.verified.txt @@ -0,0 +1,40 @@ +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_162698c241fc3cc7.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_162698c241fc3cc7.verified.txt new file mode 100644 index 00000000..34142cb8 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_162698c241fc3cc7.verified.txt @@ -0,0 +1,40 @@ +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_16d538c973af666b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_16d538c973af666b.verified.txt new file mode 100644 index 00000000..ff146ae1 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_16d538c973af666b.verified.txt @@ -0,0 +1,130 @@ +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| Legacy Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Legacy Usability Coordinator | 5.8.8 | Overwrite | Try to calculate the PNG port, maybe it will calculate the back-end port! | | | http://thora.info | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Senior Solutions Strategist | 7.5.0 | 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 Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| Corporate Accountability Designer | 0.8.0 | Ignored | We need to hack the online FTP application! | | Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn | http://taya.info | Abelardo | http://carolina.name | +| | | | | | | | Lindsey | http://rigoberto.org | +| | | | | | | | Lou | http://darlene.biz | +| | | | | | | | Oliver | https://filomena.com | +| | | | | | | | Vincenzo | https://ulices.biz | +| | | | | | | | Florida | http://jovan.net | +| | | | | | | | Ari | https://chad.com | +| | | | | | | | Yvonne | http://jada.name | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.biz | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Corporate Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | http://celestine.info | Clemens | https://abagail.info | +| | | | | | | | Franz | http://prudence.info | +| | | | | | | | Casper | https://alva.com | +| | | | | | | | Mario | http://alexandria.biz | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_16ffd0df95f0b73a.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_16ffd0df95f0b73a.verified.txt new file mode 100644 index 00000000..53270f4f --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_16ffd0df95f0b73a.verified.txt @@ -0,0 +1,31 @@ +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | Helga | https://jermey.info | +| | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | Jedediah | http://amber.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 | | Alyson | https://carmelo.biz | +| | | | | | | | Michele | https://miles.net | +| | | | | | | | Freddie | http://kade.net | +| | | | | | | | Jaunita | http://marcelina.biz | +| Future Data Manager | 2.5.9 | Expression | | | | | Abner | http://tavares.info | +| | | | | | | | Johann | http://andres.net | +| | | | | | | | Jaquan | http://carey.org | +| | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | Alicia | http://paula.com | +| | | | | | | | Heidi | http://letha.name | +| | | | | | | | Reid | https://amely.info | +| | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | Braeden | http://ayana.org | +| | | | | | | | Avery | http://jarret.biz | +| | | | | | | | Clarissa | https://audreanne.name | +| Principal Assurance Representative | 3.8.2 | Ignored | | | Patsy Erdman,Patsy Erdman,Patsy Erdman,Patsy Erdman | | Jadon | https://amelia.biz | +| | | | | | | | Toni | http://angie.name | +| | | | | | | | Ardella | http://melissa.net | +| | | | | | | | Sandra | http://pearline.org | +| | | | | | | | Noble | https://dusty.net | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_17915c99f53bdfcb.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_17915c99f53bdfcb.verified.txt new file mode 100644 index 00000000..a434c018 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_17915c99f53bdfcb.verified.txt @@ -0,0 +1,49 @@ +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | | | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | | | +| National Directives Analyst | 8.2.7 | Ignored | We need to compress the primary GB array! | | | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | | | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | | | +| Dynamic Optimization Director | 3.4.6 | Ignored | The PNG protocol is down, index the digital protocol so we can index the PNG protocol! | I'll transmit the online SSL feed, that should feed the SSL feed! | https://maximilian.org | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | | | +| International Data Representative | 3.5.7 | Ignored | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | http://dakota.com | | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | | | +| Investor Intranet Producer | 5.4.1 | Ignored | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | http://hyman.org | | | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| Regional Directives Supervisor | 4.9.8 | Ignored | Try to reboot the THX hard drive, maybe it will reboot the open-source hard drive! | Use the primary GB driver, then you can generate the primary driver! | https://malcolm.net | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | | | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | | | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_18183a196e8ae892.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_18183a196e8ae892.verified.txt new file mode 100644 index 00000000..e65ed6e4 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_18183a196e8ae892.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_18d1081062e66ff2.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_18d1081062e66ff2.verified.txt new file mode 100644 index 00000000..22bfd49d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_18d1081062e66ff2.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1946983a9c85ebb4.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1946983a9c85ebb4.verified.txt new file mode 100644 index 00000000..949fa777 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1946983a9c85ebb4.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Paige | https://remington.info | +| | | | | Aletha | https://isobel.info | +| | | | | Pearline | https://johnathon.info | +| | | | | Eleanora | http://jaeden.info | +| | | | | Nikolas | https://daphney.net | +| | | | | Oceane | http://clifton.com | +| | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_19ec0bb266cca983.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_19ec0bb266cca983.verified.txt new file mode 100644 index 00000000..c0d19fc3 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_19ec0bb266cca983.verified.txt @@ -0,0 +1,27 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1a243414e0136156.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1a243414e0136156.verified.txt new file mode 100644 index 00000000..aa38906b --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1a243414e0136156.verified.txt @@ -0,0 +1,14 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1b3e3a42ed532adb.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1b3e3a42ed532adb.verified.txt new file mode 100644 index 00000000..fbd75feb --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1b3e3a42ed532adb.verified.txt @@ -0,0 +1,144 @@ +| -------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------------- | --------------------- | ----------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------------- | --------------------- | ----------- | ---------------------- | +| National Tactics Engineer | 3.7.5 | Url | generating the matrix won't do anything, we need to override the redundant GB matrix! | https://alexys.org | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Chief Assurance Associate | 3.3.1 | Url | overriding the panel won't do anything, we need to parse the open-source IB panel! | https://tyrese.info | | | +| Regional Security Architect | 2.2.5 | Url | | | | | +| Forward Functionality Analyst | 4.5.1 | Expression | | http://orie.name | | | +| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| | | | | | Jody | http://jakob.org | +| | | | | | Anjali | https://valentin.info | +| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| | | | | | Clemmie | http://shanny.net | +| | | | | | Hildegard | http://conner.name | +| | | | | | Isabella | https://kennith.com | +| | | | | | Johanna | https://ara.org | +| | | | | | Demarco | https://rae.biz | +| | | | | | Viviane | http://christine.info | +| District Branding Analyst | 1.9.5 | Url | | https://paula.net | | | +| Global Security Liaison | 8.1.2 | Expression | | | | | +| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| | | | | | Ursula | https://werner.net | +| | | | | | Linwood | http://rebekah.org | +| | | | | | Cleve | https://claudie.net | +| | | | | | Theodora | http://faye.info | +| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| | | | | | Braeden | https://sunny.name | +| | | | | | Leslie | http://bettie.info | +| | | | | | Edmund | http://sadie.info | +| | | | | | Horacio | https://loraine.name | +| Global Response Associate | 1.9.8 | Overwrite | The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth! | | Sandra | http://antonina.com | +| | | | | | Willow | https://jason.org | +| | | | | | Orland | http://rigoberto.com | +| | | | | | Laney | http://eryn.org | +| | | | | | Amari | http://viviane.net | +| | | | | | Kelley | http://doris.net | +| | | | | | Kennedy | https://milo.net | +| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| | | | | | Caleigh | https://albin.info | +| | | | | | Flavie | http://lavonne.biz | +| | | | | | Kaitlyn | http://osborne.org | +| | | | | | Joesph | https://michael.name | +| | | | | | Kali | http://shyanne.net | +| | | | | | Austin | https://marty.net | +| | | | | | Theresia | http://kristin.net | +| | | | | | Lester | https://paige.com | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Central Interactions Manager | 7.0.9 | Expression | | | | | +| Customer Directives Director | 7.9.2 | Overwrite | Try to hack the COM panel, maybe it will hack the auxiliary panel! | | | | +| Legacy Creative Liaison | 0.4.6 | Overwrite | | | Mervin | http://celestine.info | +| | | | | | Amalia | https://shanelle.info | +| | | | | | Sheila | http://darrell.info | +| | | | | | Alec | https://candice.biz | +| | | | | | Linnea | http://everardo.info | +| | | | | | Daryl | https://jerrod.com | +| | | | | | Laila | http://caleigh.net | +| | | | | | Adolfo | http://daisha.biz | +| Direct Accounts Associate | 3.2.6 | Overwrite | | https://vesta.com | Buck | http://taryn.com | +| | | | | | Hilton | http://isabel.com | +| | | | | | Rogers | https://bertrand.biz | +| | | | | | Annetta | https://remington.org | +| | | | | | Efrain | http://davion.org | +| | | | | | Merle | https://abigayle.org | +| | | | | | Jerod | https://vicenta.info | +| | | | | | Kayli | https://shaun.net | +| | | | | | Antwan | https://hazel.net | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | +| Dynamic Security Technician | 6.8.3 | Unknown | | | | | +| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| | | | | | Clarissa | https://audreanne.name | +| | | | | | Vida | https://theresia.biz | +| | | | | | Ransom | http://isom.com | +| | | | | | Anastasia | http://kamryn.info | +| | | | | | Marlene | https://cyril.name | +| | | | | | Zetta | http://pete.org | +| | | | | | Candida | https://craig.biz | +| | | | | | Timmothy | https://joanny.biz | +| | | | | | Alfonzo | http://dorothea.org | +| National Accounts Liaison | 7.2.6 | Overwrite | | | Cedrick | https://zachariah.net | +| | | | | | Marcelle | https://adah.org | +| | | | | | Barney | http://erica.org | +| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| | | | | | Tyson | https://bonita.org | +| | | | | | Jazlyn | http://madonna.net | +| | | | | | Deangelo | https://jess.info | +| | | | | | Alvah | https://hans.net | +| | | | | | Payton | http://shanna.name | +| | | | | | Providenci | https://tyra.org | +| | | | | | Flo | http://isidro.net | +| | | | | | Dawn | https://anika.org | +| | | | | | Silas | http://zane.name | +| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| | | | | | Monserrat | http://katrine.name | +| | | | | | Abel | https://geovany.com | +| | | | | | Diana | http://eula.name | +| | | | | | Raphael | https://zackery.info | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| | | | | | Earnestine | http://nathanial.biz | +| | | | | | Connor | https://augustus.net | +| | | | | | Araceli | http://hailey.biz | +| | | | | | Janessa | https://craig.com | +| | | | | | Erica | http://kristin.org | +| | | | | | Alek | http://shany.biz | +| National Communications Facilitator | 3.1.0 | Url | quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter! | | | | +| Dynamic Functionality Agent | 5.9.5 | Unknown | | http://annabelle.net | | | +| Forward Quality Producer | 6.3.7 | Overwrite | The CSS microchip is down, back up the bluetooth microchip so we can back up the CSS microchip! | https://jayne.name | | | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Central Integration Analyst | 0.4.0 | Overwrite | If we synthesize the protocol, we can get to the JBOD protocol through the multi-byte JBOD protocol! | https://laverne.name | | | +| Product Applications Assistant | 2.8.4 | Overwrite | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | https://carleton.info | | | +| Global Usability Representative | 3.5.9 | Url | | | | | +| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| | | | | | Princess | http://haylie.biz | +| | | | | | Jordane | https://gregorio.com | +| | | | | | Opal | http://abbie.org | +| | | | | | Pablo | https://maxime.biz | +| | | | | | Shaun | https://concepcion.net | +| | | | | | Moises | http://rupert.info | +| Dynamic Marketing Consultant | 2.4.9 | Overwrite | | | Angie | https://ardella.info | +| | | | | | Melissa | https://sandra.biz | +| | | | | | Pearline | https://noble.net | +| | | | | | Dusty | https://verlie.com | +| Customer Operations Officer | 2.6.0 | Overwrite | Use the bluetooth USB alarm, then you can override the bluetooth alarm! | http://antonette.org | | | +| -------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------------- | --------------------- | ----------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1b471e10f7dacc5a.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1b471e10f7dacc5a.verified.txt new file mode 100644 index 00000000..2e74e3ac --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1b471e10f7dacc5a.verified.txt @@ -0,0 +1,39 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1b50c6b233ffe121.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1b50c6b233ffe121.verified.txt new file mode 100644 index 00000000..2b597f34 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1b50c6b233ffe121.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1b616bb830694be0.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1b616bb830694be0.verified.txt new file mode 100644 index 00000000..38a58b36 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1b616bb830694be0.verified.txt @@ -0,0 +1,8 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1de87b4ecf120c82.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1de87b4ecf120c82.verified.txt new file mode 100644 index 00000000..7afdb966 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1de87b4ecf120c82.verified.txt @@ -0,0 +1,135 @@ +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Internal Program Designer | 7.2.5 | Ignored | We need to hack the auxiliary COM hard drive! | | | | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| Legacy Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Legacy Usability Coordinator | 5.8.8 | Overwrite | Try to calculate the PNG port, maybe it will calculate the back-end port! | | | http://thora.info | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Senior Solutions Strategist | 7.5.0 | 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 Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| Corporate Accountability Designer | 0.8.0 | Ignored | We need to hack the online FTP application! | | Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn | http://taya.info | Abelardo | http://carolina.name | +| | | | | | | | Lindsey | http://rigoberto.org | +| | | | | | | | Lou | http://darlene.biz | +| | | | | | | | Oliver | https://filomena.com | +| | | | | | | | Vincenzo | https://ulices.biz | +| | | | | | | | Florida | http://jovan.net | +| | | | | | | | Ari | https://chad.com | +| | | | | | | | Yvonne | http://jada.name | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.biz | +| Global Implementation Strategist | 5.9.8 | Ignored | | | Colleen Schroeder,Colleen Schroeder | https://enos.info | | | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Corporate Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | http://celestine.info | Clemens | https://abagail.info | +| | | | | | | | Franz | http://prudence.info | +| | | | | | | | Casper | https://alva.com | +| | | | | | | | Mario | http://alexandria.biz | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1e8254fbea124dad.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1e8254fbea124dad.verified.txt new file mode 100644 index 00000000..c2a3f396 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1e8254fbea124dad.verified.txt @@ -0,0 +1,110 @@ +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------- | ---------- | --------------------- | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.biz | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Customer Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Dynamic Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| Legacy Usability Coordinator | 5.8.8 | Overwrite | Try to calculate the PNG port, maybe it will calculate the back-end port! | | | http://thora.info | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Senior Solutions Strategist | 7.5.0 | 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 | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Corporate Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1f1e387dbb296fc1.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1f1e387dbb296fc1.verified.txt new file mode 100644 index 00000000..f1e278f3 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1f1e387dbb296fc1.verified.txt @@ -0,0 +1,145 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| Internal Solutions Planner | 1.3.8 | Ignored | | The COM application is down, quantify the auxiliary application so we can quantify the COM application! | | Nyah | http://oliver.com | +| | | | | | | Ettie | http://lonny.net | +| | | | | | | Onie | https://cassie.biz | +| | | | | | | Solon | https://buck.biz | +| | | | | | | Taryn | http://hilton.com | +| | | | | | | Isabel | http://rogers.net | +| | | | | | | Bertrand | http://annetta.org | +| | | | | | | Remington | https://efrain.info | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 Brand Associate | 7.6.8 | Ignored | | | https://lauriane.com | Devin | https://ramona.info | +| | | | | | | Alice | http://laverne.info | +| | | | | | | Layne | https://brooks.name | +| | | | | | | Kaitlyn | http://serenity.biz | +| National Creative Engineer | 4.0.0 | Ignored | You can't parse the alarm without overriding the haptic SMTP alarm! | | | Candida | https://craig.biz | +| | | | | | | Timmothy | https://joanny.biz | +| | | | | | | Alfonzo | http://dorothea.org | +| | | | | | | 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 | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Legacy Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Regional Mobility Manager | 2.7.0 | Ignored | | | http://gianni.info | Alvina | http://elouise.name | +| | | | | | | Ron | http://brown.org | +| | | | | | | Cordia | http://ericka.name | +| | | | | | | Eugene | http://rashad.info | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | +| Forward Directives Supervisor | 8.7.6 | Ignored | | The SSL microchip is down, hack the optical microchip so we can hack the SSL microchip! | http://shaun.org | Jadon | https://amelia.biz | +| | | | | | | Toni | http://angie.name | +| | | | | | | Ardella | http://melissa.net | +| | | | | | | Sandra | http://pearline.org | +| | | | | | | Noble | https://dusty.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1f520d81e676a542.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1f520d81e676a542.verified.txt new file mode 100644 index 00000000..c1b31118 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1f520d81e676a542.verified.txt @@ -0,0 +1,142 @@ +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Product Identity Analyst | 5.9.3 | Expression | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | | Rey | https://connie.info | +| | | | | | | Hollie | http://rico.name | +| | | | | | | Marshall | http://pierce.org | +| | | | | | | 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 | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Response Consultant | 9.3.1 | Unknown | | | https://ulices.biz | Ari | https://chad.com | +| | | | | | | Yvonne | http://jada.name | +| | | | | | | Noemie | https://kayley.name | +| | | | | | | Brandon | http://kristopher.name | +| | | | | | | Maggie | http://kimberly.info | +| | | | | | | Veronica | https://mya.net | +| | | | | | | Marty | https://obie.net | +| | | | | | | Braxton | http://flavio.net | +| | | | | | | Jeramie | http://jaycee.net | +| Future Group Assistant | 1.7.9 | Expression | Use the multi-byte AI port, then you can reboot the multi-byte port! | | | Darien | http://mitchel.biz | +| | | | | | | Carleton | https://madalyn.com | +| | | | | | | Narciso | https://mia.com | +| | | | | | | Nicklaus | https://abelardo.com | +| | | | | | | Carolina | https://lindsey.info | +| | | | | | | Rigoberto | https://lou.biz | +| Corporate Accountability Designer | 0.8.0 | Overwrite | We need to hack the online FTP application! | | http://taya.info | Carlee | http://britney.name | +| | | | | | | Tess | http://julian.biz | +| | | | | | | Isadore | http://billy.net | +| | | | | | | Alice | http://vern.net | +| | | | | | | King | http://trace.net | +| | | | | | | Carmela | https://adolf.info | +| | | | | | | Sherman | http://alec.net | +| | | | | | | Lamar | http://deion.org | +| Dynamic Group Associate | 6.6.1 | Unknown | We need to input the open-source SMTP bus! | | http://kian.name | Neil | https://burley.info | +| | | | | | | Lemuel | http://brenden.info | +| | | | | | | Agnes | https://urban.org | +| | | | | | | Micheal | https://ida.net | +| | | | | | | Murray | https://samanta.com | +| | | | | | | Assunta | http://florencio.com | +| Customer Program Consultant | 5.0.4 | Ignored | Try to compress the GB system, maybe it will compress the neural system! | Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan | http://kieran.biz | Bettie | http://edmund.info | +| | | | | | | Sadie | http://horacio.org | +| | | | | | | Loraine | https://sandra.org | +| | | | | | | Emil | http://dayana.net | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| Direct Tactics Technician | 2.8.6 | Unknown | Try to quantify the SAS port, maybe it will quantify the wireless port! | | | Demond | http://stefan.name | +| | | | | | | Norval | http://annie.net | +| | | | | | | Destin | http://penelope.name | +| Internal Solutions Planner | 1.3.8 | Expression | | Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| | | | | | | Mallory | http://angeline.name | +| Lead Creative Administrator | 9.0.0 | Overwrite | Use the virtual RAM monitor, then you can override the virtual monitor! | | https://roderick.net | Hildegard | http://conner.name | +| | | | | | | 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 | +| | | | | | | Irving | https://sydnie.org | +| Chief Data Director | 2.1.5 | Unknown | Use the haptic PCI bandwidth, then you can generate the haptic bandwidth! | | | Earnestine | http://nathanial.biz | +| | | | | | | Connor | https://augustus.net | +| | | | | | | Araceli | http://hailey.biz | +| | | | | | | Janessa | https://craig.com | +| | | | | | | Erica | http://kristin.org | +| | | | | | | Alek | http://shany.biz | +| | | | | | | Camren | http://joany.info | +| Future Mobility Strategist | 4.7.6 | Overwrite | Use the virtual ADP bandwidth, then you can calculate the virtual bandwidth! | | http://gerardo.net | Cathy | http://giovanna.info | +| | | | | | | Ike | https://jerome.biz | +| | | | | | | Emerald | https://camren.net | +| | | | | | | Sheila | https://garry.org | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| Product Marketing Developer | 3.3.6 | Unknown | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | Lewis | https://alisa.com | +| | | | | | | Delores | https://layne.name | +| | | | | | | Delphine | https://katlynn.org | +| | | | | | | Meredith | https://johanna.info | +| | | | | | | Jacklyn | https://kadin.com | +| | | | | | | Hardy | https://donna.info | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Global Infrastructure Developer | 5.5.0 | Url | generating the application won't do anything, we need to calculate the auxiliary JSON application! | Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger | https://austin.net | 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 Creative Architect | 4.5.6 | Overwrite | | Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| | | | | | | Retta | https://lottie.biz | +| | | | | | | Yasmine | http://delia.com | +| | | | | | | Khalil | http://jewel.net | +| | | | | | | Roy | https://johanna.org | +| | | | | | | Price | https://itzel.info | +| | | | | | | Dalton | https://daren.info | +| | | | | | | Arnold | http://arlo.org | +| Investor Identity Developer | 4.2.0 | Url | | Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| | | | | | | Keely | http://obie.org | +| | | | | | | Caleigh | https://albin.info | +| | | | | | | Flavie | http://lavonne.biz | +| | | | | | | Kaitlyn | http://osborne.org | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1fa7f2477167ab52.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1fa7f2477167ab52.verified.txt new file mode 100644 index 00000000..159cc2b9 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_1fa7f2477167ab52.verified.txt @@ -0,0 +1,40 @@ +| ------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | +| District Mobility Administrator | 3.2.3 | Ignored | | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Regional Security Architect | 2.2.5 | Url | | | | | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Senior Brand Developer | 4.4.1 | Ignored | If we override the system, we can get to the CSS system through the neural CSS system! | http://adelbert.net | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| | | | | | Libby | http://wade.biz | +| | | | | | Leola | https://pietro.info | +| | | | | | Arch | http://hazle.org | +| | | | | | Eldred | http://gabriel.net | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | +| Global Usability Representative | 3.5.9 | Url | | | | | +| Forward Quality Producer | 6.3.7 | Overwrite | The CSS microchip is down, back up the bluetooth microchip so we can back up the CSS microchip! | https://jayne.name | | | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| ------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_202d89200e9e831f.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_202d89200e9e831f.verified.txt new file mode 100644 index 00000000..027e313c --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_202d89200e9e831f.verified.txt @@ -0,0 +1,39 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_208ef2f0e630a6cb.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_208ef2f0e630a6cb.verified.txt new file mode 100644 index 00000000..21f1d0a1 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_208ef2f0e630a6cb.verified.txt @@ -0,0 +1,21 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | Braeden | http://ayana.org | +| | | | | | | | Avery | http://jarret.biz | +| | | | | | | | Clarissa | https://audreanne.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 | | Alyson | https://carmelo.biz | +| | | | | | | | Michele | https://miles.net | +| | | | | | | | Freddie | http://kade.net | +| | | | | | | | Jaunita | http://marcelina.biz | +| Future Data Manager | 2.5.9 | Expression | | | | | Abner | http://tavares.info | +| | | | | | | | Johann | http://andres.net | +| | | | | | | | Jaquan | http://carey.org | +| | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | Alicia | http://paula.com | +| | | | | | | | Heidi | http://letha.name | +| | | | | | | | Reid | https://amely.info | +| | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | Kiara | https://floyd.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_20c5429a5cbe4abf.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_20c5429a5cbe4abf.verified.txt new file mode 100644 index 00000000..2735804d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_20c5429a5cbe4abf.verified.txt @@ -0,0 +1,22 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_20d1adeed92cd850.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_20d1adeed92cd850.verified.txt new file mode 100644 index 00000000..7e342a62 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_20d1adeed92cd850.verified.txt @@ -0,0 +1,46 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_20da0293189470f4.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_20da0293189470f4.verified.txt new file mode 100644 index 00000000..8561c063 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_20da0293189470f4.verified.txt @@ -0,0 +1,46 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_234fb93889b38036.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_234fb93889b38036.verified.txt new file mode 100644 index 00000000..5abdbc88 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_234fb93889b38036.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_235571e42ac05378.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_235571e42ac05378.verified.txt new file mode 100644 index 00000000..2eebc2b3 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_235571e42ac05378.verified.txt @@ -0,0 +1,46 @@ +| ----------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | | | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | | | +| International Tactics Administrator | 9.9.9 | Url | | | | | | | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | | | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| ----------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_243121d44615c969.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_243121d44615c969.verified.txt new file mode 100644 index 00000000..41240cfb --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_243121d44615c969.verified.txt @@ -0,0 +1,29 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Global Implementation Strategist | 5.9.8 | Ignored | | | Colleen Schroeder,Colleen Schroeder | https://enos.info | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Internal Program Designer | 7.2.5 | Ignored | We need to hack the auxiliary COM hard drive! | | | | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_24ba787b3b42fbde.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_24ba787b3b42fbde.verified.txt new file mode 100644 index 00000000..c7e75c0c --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_24ba787b3b42fbde.verified.txt @@ -0,0 +1,130 @@ +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.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 | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Senior Solutions Strategist | 7.5.0 | 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 | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Legacy Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| Corporate Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| Customer Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| Corporate Accountability Designer | 0.8.0 | Ignored | We need to hack the online FTP application! | | Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn | http://taya.info | Abelardo | http://carolina.name | +| | | | | | | | Lindsey | http://rigoberto.org | +| | | | | | | | Lou | http://darlene.biz | +| | | | | | | | Oliver | https://filomena.com | +| | | | | | | | Vincenzo | https://ulices.biz | +| | | | | | | | Florida | http://jovan.net | +| | | | | | | | Ari | https://chad.com | +| | | | | | | | Yvonne | http://jada.name | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | http://celestine.info | Clemens | https://abagail.info | +| | | | | | | | Franz | http://prudence.info | +| | | | | | | | Casper | https://alva.com | +| | | | | | | | Mario | http://alexandria.biz | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_25034e2471081c8b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_25034e2471081c8b.verified.txt new file mode 100644 index 00000000..7f86595e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_25034e2471081c8b.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Future Integration Analyst | 9.0.4 | Expression | | | Abner | http://tavares.info | +| | | | | | Johann | http://andres.net | +| | | | | | Jaquan | http://carey.org | +| | | | | | Arvel | http://mortimer.org | +| | | | | | Alicia | http://paula.com | +| | | | | | Heidi | http://letha.name | +| | | | | | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Paige | https://remington.info | +| | | | | | Aletha | https://isobel.info | +| | | | | | Pearline | https://johnathon.info | +| | | | | | Eleanora | http://jaeden.info | +| | | | | | Nikolas | https://daphney.net | +| | | | | | Oceane | http://clifton.com | +| | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | http://marina.com | Myles | http://nikko.name | +| | | | | | Rolando | http://nikko.name | +| | | | | | Pamela | https://aliza.net | +| | | | | | Marcella | http://helga.net | +| | | | | | Alisha | http://alyson.name | +| | | | | | Carmelo | http://michele.name | +| | | | | | Miles | https://freddie.com | +| | | | | | Kade | https://jaunita.biz | +| | | | | | Marcelina | http://donna.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_256ead8f3c785a1a.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_256ead8f3c785a1a.verified.txt new file mode 100644 index 00000000..7fc0b3e9 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_256ead8f3c785a1a.verified.txt @@ -0,0 +1,40 @@ +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_25863dff98b92489.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_25863dff98b92489.verified.txt new file mode 100644 index 00000000..9d0c566b --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_25863dff98b92489.verified.txt @@ -0,0 +1,30 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Paige | https://remington.info | +| | | | | | Aletha | https://isobel.info | +| | | | | | Pearline | https://johnathon.info | +| | | | | | Eleanora | http://jaeden.info | +| | | | | | Nikolas | https://daphney.net | +| | | | | | Oceane | http://clifton.com | +| | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | http://marina.com | Myles | http://nikko.name | +| | | | | | Rolando | http://nikko.name | +| | | | | | Pamela | https://aliza.net | +| | | | | | Marcella | http://helga.net | +| | | | | | Alisha | http://alyson.name | +| | | | | | Carmelo | http://michele.name | +| | | | | | Miles | https://freddie.com | +| | | | | | Kade | https://jaunita.biz | +| | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | Abner | http://tavares.info | +| | | | | | Johann | http://andres.net | +| | | | | | Jaquan | http://carey.org | +| | | | | | Arvel | http://mortimer.org | +| | | | | | Alicia | http://paula.com | +| | | | | | Heidi | http://letha.name | +| | | | | | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2655bb7e1882889f.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2655bb7e1882889f.verified.txt new file mode 100644 index 00000000..cefb6620 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2655bb7e1882889f.verified.txt @@ -0,0 +1,128 @@ +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------ | ------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------ | ------------------- | ---------- | ---------------------- | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | | | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | | | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | | | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | | | +| Legacy Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | | | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | | | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | | | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------ | ------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_268d57ecf5e79e38.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_268d57ecf5e79e38.verified.txt new file mode 100644 index 00000000..9e714675 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_268d57ecf5e79e38.verified.txt @@ -0,0 +1,8 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | ------- | -------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | ------- | -------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_276a3f016267976e.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_276a3f016267976e.verified.txt new file mode 100644 index 00000000..87a134a6 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_276a3f016267976e.verified.txt @@ -0,0 +1,148 @@ +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------- | ---------- | --------------------- | +| Senior Optimization Assistant | 3.6.0 | Ignored | | overriding the pixel won't do anything, we need to copy the optical JSON pixel! | Try to compress the SMS bus, maybe it will compress the bluetooth bus! | http://akeem.info | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Optimization Manager | 4.0.4 | Ignored | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | Try to program the CSS circuit, maybe it will program the auxiliary circuit! | | | | +| Product Infrastructure Supervisor | 8.1.1 | Ignored | | | | https://merle.com | | | +| Senior Identity Designer | 9.9.3 | Ignored | | | You can't navigate the bandwidth without compressing the open-source AI bandwidth! | https://devyn.info | | | +| Customer Assurance Officer | 0.3.1 | Ignored | I'll navigate the digital CSS sensor, that should sensor the CSS sensor! | | | https://clementine.info | | | +| Global Optimization Architect | 4.8.0 | Expression | | 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://gaylord.name | Vida | https://theresia.biz | +| | | | | | | | Ransom | http://isom.com | +| | | | | | | | Anastasia | http://kamryn.info | +| | | | | | | | Marlene | https://cyril.name | +| | | | | | | | Zetta | http://pete.org | +| | | | | | | | Candida | https://craig.biz | +| | | | | | | | Timmothy | https://joanny.biz | +| Chief Data Orchestrator | 4.3.2 | Ignored | | | We need to back up the multi-byte SCSI transmitter! | http://gaylord.com | Taya | http://micaela.biz | +| | | | | | | | Evert | http://tomas.net | +| | | | | | | | Brett | http://virginie.net | +| Forward Creative Developer | 9.6.7 | Unknown | | I'll transmit the online SSL feed, that should feed the SSL feed! | We need to synthesize the cross-platform SMS circuit! | http://pearline.com | | | +| 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! | | | | | +| Dynamic Data Director | 8.6.8 | Overwrite | | | We need to back up the primary SMTP circuit! | https://timothy.info | Kirsten | http://madisyn.com | +| | | | | | | | Murray | https://destinee.com | +| | | | | | | | Emanuel | https://keely.info | +| | | | | | | | Obie | https://caleigh.net | +| | | | | | | | Albin | http://flavie.com | +| | | | | | | | Lavonne | http://kaitlyn.com | +| | | | | | | | Osborne | https://joesph.name | +| | | | | | | | Michael | https://kali.com | +| Investor Usability Producer | 9.7.6 | Url | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | Jett | https://randal.biz | +| | | | | | | | Leif | http://chaz.name | +| | | | | | | | Tristian | http://susie.com | +| | | | | | | | Carmelo | https://kariane.com | +| | | | | | | | Sofia | http://daphnee.name | +| | | | | | | | Nedra | http://orland.info | +| | | | | | | | Hilton | http://shany.info | +| Forward Factors Director | 5.7.8 | Expression | | | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | | | +| Dynamic Program Associate | 5.9.7 | Expression | | | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Suzanne | http://ima.name | +| | | | | | | | Earnestine | http://nathanial.biz | +| | | | | | | | Connor | https://augustus.net | +| | | | | | | | Araceli | http://hailey.biz | +| | | | | | | | Janessa | https://craig.com | +| | | | | | | | Erica | http://kristin.org | +| | | | | | | | Alek | http://shany.biz | +| Legacy Creative Liaison | 0.4.6 | Expression | | The SMS system is down, back up the open-source system so we can back up the SMS system! | I'll connect the optical FTP program, that should program the FTP program! | | Candice | http://linnea.com | +| | | | | | | | Everardo | http://daryl.net | +| | | | | | | | Jerrod | http://laila.com | +| | | | | | | | Caleigh | https://adolfo.com | +| | | | | | | | Daisha | http://justine.biz | +| | | | | | | | Americo | http://tessie.org | +| | | | | | | | Howard | https://luis.info | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Central Marketing Assistant | 9.5.8 | Overwrite | I'll navigate the redundant RAM capacitor, that should capacitor the RAM capacitor! | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | http://julia.biz | | | +| Legacy Research Associate | 9.9.5 | Url | | We need to navigate the bluetooth RAM bus! | | https://hildegard.name | | | +| Internal Branding Executive | 2.0.9 | Overwrite | | The SAS sensor is down, input the auxiliary sensor so we can input the SAS sensor! | You can't bypass the application without programming the solid state COM application! | https://efrain.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 | +| Corporate Tactics Analyst | 3.0.8 | Overwrite | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | Use the virtual RAM monitor, then you can override the virtual monitor! | | | Hildegard | http://conner.name | +| | | | | | | | 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 | +| | | | | | | | Irving | https://sydnie.org | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | 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 | Ignored | 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! | | | | +| District Branding Analyst | 1.9.5 | Unknown | | | | https://paula.net | | | +| Lead Integration Engineer | 8.7.4 | Unknown | | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | http://jackeline.biz | Reanna | http://buck.net | +| | | | | | | | Christine | http://demarco.name | +| | | | | | | | Marge | http://astrid.net | +| | | | | | | | Charlene | http://rod.net | +| Investor Creative Architect | 4.5.6 | Overwrite | | The PCI microchip is down, input the cross-platform microchip so we can input the PCI microchip! | If we quantify the transmitter, we can get to the XML transmitter through the optical XML transmitter! | | Selmer | https://jairo.info | +| | | | | | | | Juanita | http://holly.name | +| | | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | | Adalberto | https://sister.biz | +| | | | | | | | Gerald | https://vidal.com | +| | | | | | | | Lucio | http://clemmie.info | +| Human Accounts Executive | 7.6.7 | Unknown | Use the auxiliary PNG interface, then you can generate the auxiliary interface! | | You can't connect the interface without backing up the optical SMTP interface! | http://kristin.net | Seamus | http://maybell.info | +| | | | | | | | Monserrat | http://katrine.name | +| | | | | | | | Abel | https://geovany.com | +| | | | | | | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| International Assurance Executive | 2.8.5 | Ignored | The RSS driver is down, transmit the solid state driver so we can transmit the RSS driver! | | We need to parse the optical FTP driver! | http://antonina.com | Alvah | http://otha.name | +| | | | | | | | Natasha | https://nyah.com | +| | | | | | | | Oliver | http://ettie.biz | +| | | | | | | | Lonny | https://onie.org | +| | | | | | | | Cassie | http://solon.net | +| | | | | | | | Buck | http://taryn.com | +| | | | | | | | Hilton | http://isabel.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Legacy Interactions Analyst | 3.0.8 | Url | hacking the hard drive won't do anything, we need to generate the open-source RSS hard drive! | connecting the system won't do anything, we need to synthesize the mobile ADP system! | | | | | +| Regional Paradigm Assistant | 9.8.0 | Url | | If we input the transmitter, we can get to the HDD transmitter through the bluetooth HDD transmitter! | | | Jordan | https://kathryne.name | +| | | | | | | | Mayra | http://lance.name | +| | | | | | | | Jimmie | https://lorine.org | +| | | | | | | | Rebeka | https://malika.org | +| | | | | | | | Trinity | http://fritz.info | +| | | | | | | | Neha | https://marianne.name | +| | | | | | | | Colin | https://billie.biz | +| | | | | | | | Brielle | https://brennon.name | +| | | | | | | | Myriam | https://rosemary.name | +| National Directives Analyst | 8.2.7 | Overwrite | We need to compress the primary GB array! | | Use the mobile SCSI bus, then you can program the mobile bus! | | | | +| Corporate Group Planner | 9.2.2 | Ignored | | | We need to reboot the virtual RSS alarm! | | | | +| Central Infrastructure Agent | 6.1.6 | Expression | | | You can't quantify the program without overriding the online SDD program! | | | | +| Lead Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Forward Integration Assistant | 4.8.5 | Expression | | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| Corporate Tactics Strategist | 9.9.9 | Ignored | | copying the alarm won't do anything, we need to index the open-source TCP alarm! | generating the matrix won't do anything, we need to parse the solid state GB matrix! | | | | +| Regional Solutions Supervisor | 1.8.2 | Ignored | You can't parse the system without compressing the haptic GB system! | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | https://lance.net | | | +| Dynamic Quality Officer | 8.9.2 | Ignored | | | | https://danika.org | Jadon | https://amelia.biz | +| | | | | | | | Toni | http://angie.name | +| | | | | | | | Ardella | http://melissa.net | +| | | | | | | | Sandra | http://pearline.org | +| | | | | | | | Noble | https://dusty.net | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | Edmund | http://sadie.info | +| | | | | | | | Horacio | https://loraine.name | +| | | | | | | | Sandra | https://emil.info | +| | | | | | | | Dayana | https://leila.info | +| | | | | | | | Micah | http://darien.com | +| | | | | | | | Ethel | http://shakira.net | +| Principal Branding Assistant | 8.2.6 | Expression | 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! | We need to hack the auxiliary COM hard drive! | | | | +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2796b52c60324014.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2796b52c60324014.verified.txt new file mode 100644 index 00000000..f85bf1c4 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2796b52c60324014.verified.txt @@ -0,0 +1,130 @@ +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| Corporate Accountability Designer | 0.8.0 | Ignored | We need to hack the online FTP application! | | Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn | http://taya.info | Abelardo | http://carolina.name | +| | | | | | | | Lindsey | http://rigoberto.org | +| | | | | | | | Lou | http://darlene.biz | +| | | | | | | | Oliver | https://filomena.com | +| | | | | | | | Vincenzo | https://ulices.biz | +| | | | | | | | Florida | http://jovan.net | +| | | | | | | | Ari | https://chad.com | +| | | | | | | | Yvonne | http://jada.name | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Dynamic Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.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 | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Senior Solutions Strategist | 7.5.0 | 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 Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Customer Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | http://celestine.info | Clemens | https://abagail.info | +| | | | | | | | Franz | http://prudence.info | +| | | | | | | | Casper | https://alva.com | +| | | | | | | | Mario | http://alexandria.biz | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_27c4461ba928642a.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_27c4461ba928642a.verified.txt new file mode 100644 index 00000000..6ebd0aad --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_27c4461ba928642a.verified.txt @@ -0,0 +1,127 @@ +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| | | | | | Clemmie | http://shanny.net | +| | | | | | Hildegard | http://conner.name | +| | | | | | Isabella | https://kennith.com | +| | | | | | Johanna | https://ara.org | +| | | | | | Demarco | https://rae.biz | +| | | | | | Viviane | http://christine.info | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Legacy Creative Liaison | 0.4.6 | Overwrite | | | Mervin | http://celestine.info | +| | | | | | Amalia | https://shanelle.info | +| | | | | | Sheila | http://darrell.info | +| | | | | | Alec | https://candice.biz | +| | | | | | Linnea | http://everardo.info | +| | | | | | Daryl | https://jerrod.com | +| | | | | | Laila | http://caleigh.net | +| | | | | | Adolfo | http://daisha.biz | +| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| | | | | | Monserrat | http://katrine.name | +| | | | | | Abel | https://geovany.com | +| | | | | | Diana | http://eula.name | +| | | | | | Raphael | https://zackery.info | +| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| | | | | | Caleigh | https://albin.info | +| | | | | | Flavie | http://lavonne.biz | +| | | | | | Kaitlyn | http://osborne.org | +| | | | | | Joesph | https://michael.name | +| | | | | | Kali | http://shyanne.net | +| | | | | | Austin | https://marty.net | +| | | | | | Theresia | http://kristin.net | +| | | | | | Lester | https://paige.com | +| National Accounts Liaison | 7.2.6 | Overwrite | | | Cedrick | https://zachariah.net | +| | | | | | Marcelle | https://adah.org | +| | | | | | Barney | http://erica.org | +| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| | | | | | Jody | http://jakob.org | +| | | | | | Anjali | https://valentin.info | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| | | | | | Earnestine | http://nathanial.biz | +| | | | | | Connor | https://augustus.net | +| | | | | | Araceli | http://hailey.biz | +| | | | | | Janessa | https://craig.com | +| | | | | | Erica | http://kristin.org | +| | | | | | Alek | http://shany.biz | +| Dynamic Marketing Consultant | 2.4.9 | Overwrite | | | Angie | https://ardella.info | +| | | | | | Melissa | https://sandra.biz | +| | | | | | Pearline | https://noble.net | +| | | | | | Dusty | https://verlie.com | +| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| | | | | | Ursula | https://werner.net | +| | | | | | Linwood | http://rebekah.org | +| | | | | | Cleve | https://claudie.net | +| | | | | | Theodora | http://faye.info | +| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| | | | | | Braeden | https://sunny.name | +| | | | | | Leslie | http://bettie.info | +| | | | | | Edmund | http://sadie.info | +| | | | | | Horacio | https://loraine.name | +| Global Response Associate | 1.9.8 | Overwrite | The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth! | | Sandra | http://antonina.com | +| | | | | | Willow | https://jason.org | +| | | | | | Orland | http://rigoberto.com | +| | | | | | Laney | http://eryn.org | +| | | | | | Amari | http://viviane.net | +| | | | | | Kelley | http://doris.net | +| | | | | | Kennedy | https://milo.net | +| Direct Accounts Associate | 3.2.6 | Overwrite | | https://vesta.com | Buck | http://taryn.com | +| | | | | | Hilton | http://isabel.com | +| | | | | | Rogers | https://bertrand.biz | +| | | | | | Annetta | https://remington.org | +| | | | | | Efrain | http://davion.org | +| | | | | | Merle | https://abigayle.org | +| | | | | | Jerod | https://vicenta.info | +| | | | | | Kayli | https://shaun.net | +| | | | | | Antwan | https://hazel.net | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| | | | | | Princess | http://haylie.biz | +| | | | | | Jordane | https://gregorio.com | +| | | | | | Opal | http://abbie.org | +| | | | | | Pablo | https://maxime.biz | +| | | | | | Shaun | https://concepcion.net | +| | | | | | Moises | http://rupert.info | +| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| | | | | | Tyson | https://bonita.org | +| | | | | | Jazlyn | http://madonna.net | +| | | | | | Deangelo | https://jess.info | +| | | | | | Alvah | https://hans.net | +| | | | | | Payton | http://shanna.name | +| | | | | | Providenci | https://tyra.org | +| | | | | | Flo | http://isidro.net | +| | | | | | Dawn | https://anika.org | +| | | | | | Silas | http://zane.name | +| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| | | | | | Clarissa | https://audreanne.name | +| | | | | | Vida | https://theresia.biz | +| | | | | | Ransom | http://isom.com | +| | | | | | Anastasia | http://kamryn.info | +| | | | | | Marlene | https://cyril.name | +| | | | | | Zetta | http://pete.org | +| | | | | | Candida | https://craig.biz | +| | | | | | Timmothy | https://joanny.biz | +| | | | | | Alfonzo | http://dorothea.org | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_27c7b882d9ef5051.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_27c7b882d9ef5051.verified.txt new file mode 100644 index 00000000..438a2516 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_27c7b882d9ef5051.verified.txt @@ -0,0 +1,142 @@ +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Group Assistant | 1.7.9 | Expression | Use the multi-byte AI port, then you can reboot the multi-byte port! | | | Darien | http://mitchel.biz | +| | | | | | | Carleton | https://madalyn.com | +| | | | | | | Narciso | https://mia.com | +| | | | | | | Nicklaus | https://abelardo.com | +| | | | | | | Carolina | https://lindsey.info | +| | | | | | | Rigoberto | https://lou.biz | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| Investor Creative Architect | 4.5.6 | Overwrite | | Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| | | | | | | Retta | https://lottie.biz | +| | | | | | | Yasmine | http://delia.com | +| | | | | | | Khalil | http://jewel.net | +| | | | | | | Roy | https://johanna.org | +| | | | | | | Price | https://itzel.info | +| | | | | | | Dalton | https://daren.info | +| | | | | | | Arnold | http://arlo.org | +| Customer Program Consultant | 5.0.4 | Ignored | Try to compress the GB system, maybe it will compress the neural system! | Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan | http://kieran.biz | Bettie | http://edmund.info | +| | | | | | | Sadie | http://horacio.org | +| | | | | | | Loraine | https://sandra.org | +| | | | | | | Emil | http://dayana.net | +| Internal Solutions Planner | 1.3.8 | Expression | | Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| | | | | | | Mallory | http://angeline.name | +| Lead Creative Administrator | 9.0.0 | Overwrite | Use the virtual RAM monitor, then you can override the virtual monitor! | | https://roderick.net | Hildegard | http://conner.name | +| | | | | | | 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 | +| | | | | | | Irving | https://sydnie.org | +| Corporate Accountability Designer | 0.8.0 | Overwrite | We need to hack the online FTP application! | | http://taya.info | Carlee | http://britney.name | +| | | | | | | Tess | http://julian.biz | +| | | | | | | Isadore | http://billy.net | +| | | | | | | Alice | http://vern.net | +| | | | | | | King | http://trace.net | +| | | | | | | Carmela | https://adolf.info | +| | | | | | | Sherman | http://alec.net | +| | | | | | | Lamar | http://deion.org | +| Chief Data Director | 2.1.5 | Unknown | Use the haptic PCI bandwidth, then you can generate the haptic bandwidth! | | | Earnestine | http://nathanial.biz | +| | | | | | | Connor | https://augustus.net | +| | | | | | | Araceli | http://hailey.biz | +| | | | | | | Janessa | https://craig.com | +| | | | | | | Erica | http://kristin.org | +| | | | | | | Alek | http://shany.biz | +| | | | | | | Camren | http://joany.info | +| Future Mobility Strategist | 4.7.6 | Overwrite | Use the virtual ADP bandwidth, then you can calculate the virtual bandwidth! | | http://gerardo.net | Cathy | http://giovanna.info | +| | | | | | | Ike | https://jerome.biz | +| | | | | | | Emerald | https://camren.net | +| | | | | | | Sheila | https://garry.org | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| Dynamic Group Associate | 6.6.1 | Unknown | We need to input the open-source SMTP bus! | | http://kian.name | Neil | https://burley.info | +| | | | | | | Lemuel | http://brenden.info | +| | | | | | | Agnes | https://urban.org | +| | | | | | | Micheal | https://ida.net | +| | | | | | | Murray | https://samanta.com | +| | | | | | | Assunta | http://florencio.com | +| Product Marketing Developer | 3.3.6 | Unknown | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | Lewis | https://alisa.com | +| | | | | | | Delores | https://layne.name | +| | | | | | | Delphine | https://katlynn.org | +| | | | | | | Meredith | https://johanna.info | +| | | | | | | Jacklyn | https://kadin.com | +| | | | | | | Hardy | https://donna.info | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Investor Identity Developer | 4.2.0 | Url | | Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| | | | | | | Keely | http://obie.org | +| | | | | | | Caleigh | https://albin.info | +| | | | | | | Flavie | http://lavonne.biz | +| | | | | | | Kaitlyn | http://osborne.org | +| Global Infrastructure Developer | 5.5.0 | Url | generating the application won't do anything, we need to calculate the auxiliary JSON application! | Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger | https://austin.net | 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 | +| Direct Tactics Technician | 2.8.6 | Unknown | Try to quantify the SAS port, maybe it will quantify the wireless port! | | | Demond | http://stefan.name | +| | | | | | | Norval | http://annie.net | +| | | | | | | Destin | http://penelope.name | +| Product Identity Analyst | 5.9.3 | Expression | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | | Rey | https://connie.info | +| | | | | | | Hollie | http://rico.name | +| | | | | | | Marshall | http://pierce.org | +| | | | | | | 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 | +| Future Response Consultant | 9.3.1 | Unknown | | | https://ulices.biz | Ari | https://chad.com | +| | | | | | | Yvonne | http://jada.name | +| | | | | | | Noemie | https://kayley.name | +| | | | | | | Brandon | http://kristopher.name | +| | | | | | | Maggie | http://kimberly.info | +| | | | | | | Veronica | https://mya.net | +| | | | | | | Marty | https://obie.net | +| | | | | | | Braxton | http://flavio.net | +| | | | | | | Jeramie | http://jaycee.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2954c6ee5581f8e0.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2954c6ee5581f8e0.verified.txt new file mode 100644 index 00000000..3b8e0343 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2954c6ee5581f8e0.verified.txt @@ -0,0 +1,25 @@ +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | | | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | | | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | | | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | | | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | | | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | | | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_29bdfc85aaf5c73e.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_29bdfc85aaf5c73e.verified.txt new file mode 100644 index 00000000..aafd74df --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_29bdfc85aaf5c73e.verified.txt @@ -0,0 +1,35 @@ +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Senior Brand Developer | 4.4.1 | Ignored | If we override the system, we can get to the CSS system through the neural CSS system! | http://adelbert.net | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| | | | | | Libby | http://wade.biz | +| | | | | | Leola | https://pietro.info | +| | | | | | Arch | http://hazle.org | +| | | | | | Eldred | http://gabriel.net | +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2a24ee7efe69d94f.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2a24ee7efe69d94f.verified.txt new file mode 100644 index 00000000..cd2e5a5d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2a24ee7efe69d94f.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2a2f1b3b8764d65c.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2a2f1b3b8764d65c.verified.txt new file mode 100644 index 00000000..141e4168 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2a2f1b3b8764d65c.verified.txt @@ -0,0 +1,128 @@ +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Legacy Creative Liaison | 0.4.6 | Overwrite | | | Mervin | http://celestine.info | +| | | | | | Amalia | https://shanelle.info | +| | | | | | Sheila | http://darrell.info | +| | | | | | Alec | https://candice.biz | +| | | | | | Linnea | http://everardo.info | +| | | | | | Daryl | https://jerrod.com | +| | | | | | Laila | http://caleigh.net | +| | | | | | Adolfo | http://daisha.biz | +| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| | | | | | Monserrat | http://katrine.name | +| | | | | | Abel | https://geovany.com | +| | | | | | Diana | http://eula.name | +| | | | | | Raphael | https://zackery.info | +| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| | | | | | Caleigh | https://albin.info | +| | | | | | Flavie | http://lavonne.biz | +| | | | | | Kaitlyn | http://osborne.org | +| | | | | | Joesph | https://michael.name | +| | | | | | Kali | http://shyanne.net | +| | | | | | Austin | https://marty.net | +| | | | | | Theresia | http://kristin.net | +| | | | | | Lester | https://paige.com | +| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| | | | | | Earnestine | http://nathanial.biz | +| | | | | | Connor | https://augustus.net | +| | | | | | Araceli | http://hailey.biz | +| | | | | | Janessa | https://craig.com | +| | | | | | Erica | http://kristin.org | +| | | | | | Alek | http://shany.biz | +| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| | | | | | Jody | http://jakob.org | +| | | | | | Anjali | https://valentin.info | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| | | | | | Clarissa | https://audreanne.name | +| | | | | | Vida | https://theresia.biz | +| | | | | | Ransom | http://isom.com | +| | | | | | Anastasia | http://kamryn.info | +| | | | | | Marlene | https://cyril.name | +| | | | | | Zetta | http://pete.org | +| | | | | | Candida | https://craig.biz | +| | | | | | Timmothy | https://joanny.biz | +| | | | | | Alfonzo | http://dorothea.org | +| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| | | | | | Clemmie | http://shanny.net | +| | | | | | Hildegard | http://conner.name | +| | | | | | Isabella | https://kennith.com | +| | | | | | Johanna | https://ara.org | +| | | | | | Demarco | https://rae.biz | +| | | | | | Viviane | http://christine.info | +| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| | | | | | Ursula | https://werner.net | +| | | | | | Linwood | http://rebekah.org | +| | | | | | Cleve | https://claudie.net | +| | | | | | Theodora | http://faye.info | +| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| | | | | | Braeden | https://sunny.name | +| | | | | | Leslie | http://bettie.info | +| | | | | | Edmund | http://sadie.info | +| | | | | | Horacio | https://loraine.name | +| Direct Accounts Associate | 3.2.6 | Overwrite | | https://vesta.com | Buck | http://taryn.com | +| | | | | | Hilton | http://isabel.com | +| | | | | | Rogers | https://bertrand.biz | +| | | | | | Annetta | https://remington.org | +| | | | | | Efrain | http://davion.org | +| | | | | | Merle | https://abigayle.org | +| | | | | | Jerod | https://vicenta.info | +| | | | | | Kayli | https://shaun.net | +| | | | | | Antwan | https://hazel.net | +| National Accounts Liaison | 7.2.6 | Overwrite | | | Cedrick | https://zachariah.net | +| | | | | | Marcelle | https://adah.org | +| | | | | | Barney | http://erica.org | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Global Response Associate | 1.9.8 | Overwrite | The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth! | | Sandra | http://antonina.com | +| | | | | | Willow | https://jason.org | +| | | | | | Orland | http://rigoberto.com | +| | | | | | Laney | http://eryn.org | +| | | | | | Amari | http://viviane.net | +| | | | | | Kelley | http://doris.net | +| | | | | | Kennedy | https://milo.net | +| Dynamic Marketing Consultant | 2.4.9 | Overwrite | | | Angie | https://ardella.info | +| | | | | | Melissa | https://sandra.biz | +| | | | | | Pearline | https://noble.net | +| | | | | | Dusty | https://verlie.com | +| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| | | | | | Tyson | https://bonita.org | +| | | | | | Jazlyn | http://madonna.net | +| | | | | | Deangelo | https://jess.info | +| | | | | | Alvah | https://hans.net | +| | | | | | Payton | http://shanna.name | +| | | | | | Providenci | https://tyra.org | +| | | | | | Flo | http://isidro.net | +| | | | | | Dawn | https://anika.org | +| | | | | | Silas | http://zane.name | +| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| | | | | | Princess | http://haylie.biz | +| | | | | | Jordane | https://gregorio.com | +| | | | | | Opal | http://abbie.org | +| | | | | | Pablo | https://maxime.biz | +| | | | | | Shaun | https://concepcion.net | +| | | | | | Moises | http://rupert.info | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2a530761f47d886f.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2a530761f47d886f.verified.txt new file mode 100644 index 00000000..eab237f8 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2a530761f47d886f.verified.txt @@ -0,0 +1,218 @@ +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | ---------- | ---------------------- | +| Legacy Assurance Representative | 6.4.9 | Unknown | | Diane Gutkowski,Diane Gutkowski,Diane Gutkowski,Diane Gutkowski,Diane Gutkowski | https://maye.info | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Dynamic Metrics Coordinator | 5.8.1 | Unknown | overriding the circuit won't do anything, we need to copy the mobile AGP circuit! | Helen Fisher,Helen Fisher,Helen Fisher,Helen Fisher,Helen Fisher | | | | +| Customer Group Director | 2.5.2 | Expression | You can't index the pixel without copying the redundant XML pixel! | Vera Krajcik,Vera Krajcik,Vera Krajcik,Vera Krajcik | https://eloise.name | | | +| Regional Mobility Designer | 8.5.4 | Url | | | http://brady.net | | | +| Global Directives Orchestrator | 8.7.6 | Expression | | Tommy Franecki,Tommy Franecki | | | | +| District Identity Administrator | 2.9.6 | Unknown | | Isabel Schmitt,Isabel Schmitt,Isabel Schmitt,Isabel Schmitt | http://duncan.name | | | +| Regional Paradigm Director | 3.0.9 | Unknown | The COM pixel is down, quantify the virtual pixel so we can quantify the COM pixel! | | | | | +| Global Data Administrator | 0.8.4 | Unknown | | Frederick Leffler,Frederick Leffler,Frederick Leffler | https://barrett.com | | | +| Future Group Assistant | 1.7.9 | Expression | Use the multi-byte AI port, then you can reboot the multi-byte port! | | | Darien | http://mitchel.biz | +| | | | | | | Carleton | https://madalyn.com | +| | | | | | | Narciso | https://mia.com | +| | | | | | | Nicklaus | https://abelardo.com | +| | | | | | | Carolina | https://lindsey.info | +| | | | | | | Rigoberto | https://lou.biz | +| Forward Web Designer | 0.1.4 | Overwrite | | | https://gerard.net | | | +| Future Interactions Developer | 1.1.7 | Unknown | If we reboot the matrix, we can get to the CSS matrix through the cross-platform CSS matrix! | | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| District Metrics Associate | 8.1.6 | Overwrite | | | http://jaylin.org | | | +| Investor Creative Architect | 4.5.6 | Overwrite | | Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| | | | | | | Retta | https://lottie.biz | +| | | | | | | Yasmine | http://delia.com | +| | | | | | | Khalil | http://jewel.net | +| | | | | | | Roy | https://johanna.org | +| | | | | | | Price | https://itzel.info | +| | | | | | | Dalton | https://daren.info | +| | | | | | | Arnold | http://arlo.org | +| Corporate Quality Planner | 6.6.3 | Url | 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 | | | | +| Internal Web Associate | 6.2.5 | Expression | | | https://arvel.name | | | +| Dynamic Mobility Technician | 6.0.2 | Expression | | | https://keeley.net | | | +| Product Solutions Manager | 9.5.2 | Overwrite | I'll hack the primary SDD card, that should card the SDD card! | Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach | | | | +| Investor Configuration Technician | 1.9.1 | Url | We need to copy the primary FTP bus! | Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin | http://malvina.name | | | +| Lead Implementation Supervisor | 4.9.9 | Overwrite | The ADP card is down, hack the solid state card so we can hack the ADP card! | Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis | http://katlynn.net | | | +| Dynamic Integration Assistant | 2.7.5 | Overwrite | I'll back up the 1080p RSS matrix, that should matrix the RSS matrix! | | | | | +| Human Implementation Producer | 0.9.1 | Url | | | | | | +| Investor Assurance Technician | 7.3.8 | Overwrite | | Merle Hirthe | | | | +| Dynamic Integration Assistant | 2.1.6 | Unknown | | | https://gerson.info | | | +| Principal Group Strategist | 4.1.0 | Url | I'll bypass the primary GB bandwidth, that should bandwidth the GB bandwidth! | | | | | +| Internal Solutions Planner | 1.3.8 | Expression | | Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| | | | | | | Mallory | http://angeline.name | +| Central Applications Planner | 6.6.9 | Overwrite | | Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke | http://ava.org | | | +| Lead Creative Administrator | 9.0.0 | Overwrite | Use the virtual RAM monitor, then you can override the virtual monitor! | | https://roderick.net | Hildegard | http://conner.name | +| | | | | | | 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 | +| | | | | | | Irving | https://sydnie.org | +| Central Identity Analyst | 8.9.6 | Expression | | | http://leta.org | | | +| Forward Division Strategist | 5.7.1 | Expression | You can't reboot the program without transmitting the mobile SMTP program! | Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode | https://esperanza.name | | | +| District Factors Associate | 0.2.6 | Expression | | Betsy Powlowski | https://cloyd.biz | | | +| Legacy Communications Manager | 0.1.8 | Unknown | | | http://gus.info | | | +| Future Optimization Associate | 4.0.5 | Unknown | | Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel | https://linnie.net | | | +| Senior Applications Technician | 7.8.2 | Overwrite | | Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert | | | | +| Future Tactics Producer | 5.8.9 | Url | navigating the pixel won't do anything, we need to parse the back-end IB pixel! | | | | | +| Future Applications Facilitator | 0.1.5 | Expression | transmitting the program won't do anything, we need to bypass the virtual HTTP program! | | | | | +| Corporate Accountability Designer | 0.8.0 | Overwrite | We need to hack the online FTP application! | | http://taya.info | Carlee | http://britney.name | +| | | | | | | Tess | http://julian.biz | +| | | | | | | Isadore | http://billy.net | +| | | | | | | Alice | http://vern.net | +| | | | | | | King | http://trace.net | +| | | | | | | Carmela | https://adolf.info | +| | | | | | | Sherman | http://alec.net | +| | | | | | | Lamar | http://deion.org | +| Dynamic Group Representative | 9.8.1 | Unknown | | | | | | +| Regional Security Agent | 6.2.7 | Overwrite | | | https://kenyon.org | | | +| Lead Solutions Technician | 1.5.7 | Unknown | | | | | | +| Dynamic Applications Director | 5.1.4 | Unknown | | Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel | | | | +| District Brand Producer | 9.3.8 | Overwrite | Use the redundant AGP application, then you can generate the redundant application! | Clarence Metz,Clarence Metz,Clarence Metz | | | | +| Investor Communications Associate | 0.7.2 | Expression | | Arnold Franecki,Arnold Franecki | http://modesto.info | | | +| Central Mobility Executive | 5.0.3 | Unknown | | Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling | | | | +| Senior Group Designer | 3.0.6 | Url | The AGP pixel is down, hack the neural pixel so we can hack the AGP pixel! | | | | | +| Forward Integration Specialist | 8.7.1 | Expression | | | http://jordon.net | | | +| District Intranet Agent | 1.1.6 | Url | You can't calculate the application without synthesizing the primary JBOD application! | | | | | +| Dynamic Research Designer | 5.6.8 | Unknown | If we connect the program, we can get to the SQL program through the digital SQL program! | | | | | +| District Mobility Administrator | 3.2.3 | Unknown | | Christopher Dietrich,Christopher Dietrich,Christopher Dietrich,Christopher Dietrich | | | | +| Chief Data Director | 2.1.5 | Unknown | Use the haptic PCI bandwidth, then you can generate the haptic bandwidth! | | | Earnestine | http://nathanial.biz | +| | | | | | | Connor | https://augustus.net | +| | | | | | | Araceli | http://hailey.biz | +| | | | | | | Janessa | https://craig.com | +| | | | | | | Erica | http://kristin.org | +| | | | | | | Alek | http://shany.biz | +| | | | | | | Camren | http://joany.info | +| Future Mobility Strategist | 4.7.6 | Overwrite | Use the virtual ADP bandwidth, then you can calculate the virtual bandwidth! | | http://gerardo.net | Cathy | http://giovanna.info | +| | | | | | | Ike | https://jerome.biz | +| | | | | | | Emerald | https://camren.net | +| | | | | | | Sheila | https://garry.org | +| Forward Accounts Consultant | 8.9.0 | Expression | | | | | | +| Direct Accountability Producer | 1.8.1 | Url | | | http://justine.net | | | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| Dynamic Group Associate | 6.6.1 | Unknown | We need to input the open-source SMTP bus! | | http://kian.name | Neil | https://burley.info | +| | | | | | | Lemuel | http://brenden.info | +| | | | | | | Agnes | https://urban.org | +| | | | | | | Micheal | https://ida.net | +| | | | | | | Murray | https://samanta.com | +| | | | | | | Assunta | http://florencio.com | +| Global Paradigm Producer | 1.8.4 | Overwrite | If we quantify the protocol, we can get to the IB protocol through the auxiliary IB protocol! | | https://london.biz | | | +| Lead Identity Developer | 7.1.0 | Unknown | | Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover | https://eve.com | | | +| Corporate Mobility Consultant | 1.9.0 | Expression | | | http://letha.name | | | +| Future Configuration Architect | 4.2.6 | Expression | I'll generate the primary TCP bus, that should bus the TCP bus! | Victoria Padberg,Victoria Padberg,Victoria Padberg,Victoria Padberg,Victoria Padberg,Victoria Padberg | | | | +| Dynamic Accounts Architect | 9.8.0 | Overwrite | | | | | | +| Product Marketing Developer | 3.3.6 | Unknown | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | Lewis | https://alisa.com | +| | | | | | | Delores | https://layne.name | +| | | | | | | Delphine | https://katlynn.org | +| | | | | | | Meredith | https://johanna.info | +| | | | | | | Jacklyn | https://kadin.com | +| | | | | | | Hardy | https://donna.info | +| Legacy Data Consultant | 5.8.8 | Unknown | Try to connect the JSON pixel, maybe it will connect the primary pixel! | | | | | +| Dynamic Brand Agent | 2.9.2 | Expression | quantifying the application won't do anything, we need to hack the haptic RAM application! | Bertha Schultz,Bertha Schultz | https://reese.info | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| National Quality Executive | 4.5.1 | Expression | Use the solid state TCP driver, then you can generate the solid state driver! | | http://rylan.com | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Legacy Response Analyst | 9.2.7 | Unknown | | Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata | http://martine.info | | | +| Investor Identity Developer | 4.2.0 | Url | | Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| | | | | | | Keely | http://obie.org | +| | | | | | | Caleigh | https://albin.info | +| | | | | | | Flavie | http://lavonne.biz | +| | | | | | | Kaitlyn | http://osborne.org | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | http://hanna.net | | | +| Forward Factors Architect | 6.7.6 | Overwrite | | Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt | | | | +| 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 Markets Designer | 1.7.0 | Overwrite | Use the multi-byte COM feed, then you can parse the multi-byte feed! | | https://toby.biz | | | +| Global Infrastructure Developer | 5.5.0 | Url | generating the application won't do anything, we need to calculate the auxiliary JSON application! | Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger | https://austin.net | 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 Interactions Designer | 1.9.4 | Overwrite | | | https://octavia.name | | | +| Customer Operations Liaison | 9.0.9 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | | | | +| Senior Response Officer | 2.8.2 | Expression | | Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann | | | | +| Regional Integration Consultant | 5.3.8 | Expression | | | http://michael.name | | | +| Internal Division Agent | 2.4.2 | Url | | Gary Von,Gary Von,Gary Von | | | | +| Future Directives Associate | 1.1.1 | Expression | | Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe | https://shayne.name | | | +| Dynamic Division Specialist | 9.6.4 | Expression | | | https://keenan.net | | | +| Regional Factors Analyst | 1.5.7 | Overwrite | | | | | | +| Senior Factors Technician | 3.2.5 | Overwrite | You can't input the protocol without copying the auxiliary USB protocol! | Lee Zieme,Lee Zieme,Lee Zieme,Lee Zieme,Lee Zieme | | | | +| Human Security Administrator | 9.8.5 | Overwrite | I'll synthesize the redundant XML feed, that should feed the XML feed! | Mario Stamm,Mario Stamm,Mario Stamm,Mario Stamm,Mario Stamm,Mario Stamm | | | | +| Direct Tactics Technician | 2.8.6 | Unknown | Try to quantify the SAS port, maybe it will quantify the wireless port! | | | Demond | http://stefan.name | +| | | | | | | Norval | http://annie.net | +| | | | | | | Destin | http://penelope.name | +| Global Mobility Associate | 0.6.4 | Expression | We need to hack the haptic XSS program! | | https://brooke.org | | | +| Product Metrics Representative | 2.7.9 | Expression | connecting the feed won't do anything, we need to transmit the primary IB feed! | Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson | http://denis.info | | | +| Forward Intranet Technician | 2.5.3 | Expression | | Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton | https://ruby.biz | | | +| Global Integration Assistant | 5.0.1 | Unknown | | | http://demarco.com | | | +| Principal Intranet Architect | 4.9.3 | Expression | | | | | | +| Product Identity Analyst | 5.9.3 | Expression | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | | Rey | https://connie.info | +| | | | | | | Hollie | http://rico.name | +| | | | | | | Marshall | http://pierce.org | +| | | | | | | 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 | +| Forward Program Officer | 4.2.4 | Unknown | quantifying the capacitor won't do anything, we need to override the open-source AI capacitor! | Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin | | | | +| Human Web Liaison | 8.1.1 | Unknown | | | https://imogene.org | | | +| Future Applications Engineer | 6.8.5 | Unknown | 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 | | | +| Future Response Consultant | 9.3.1 | Unknown | | | https://ulices.biz | Ari | https://chad.com | +| | | | | | | Yvonne | http://jada.name | +| | | | | | | Noemie | https://kayley.name | +| | | | | | | Brandon | http://kristopher.name | +| | | | | | | Maggie | http://kimberly.info | +| | | | | | | Veronica | https://mya.net | +| | | | | | | Marty | https://obie.net | +| | | | | | | Braxton | http://flavio.net | +| | | | | | | Jeramie | http://jaycee.net | +| Direct Security Producer | 9.0.7 | Url | | | http://evert.net | | | +| Principal Factors Producer | 0.8.5 | Unknown | connecting the system won't do anything, we need to override the back-end SQL system! | Devin Nolan | http://toby.info | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2a7684c73f6b9fbc.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2a7684c73f6b9fbc.verified.txt new file mode 100644 index 00000000..8338c366 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2a7684c73f6b9fbc.verified.txt @@ -0,0 +1,8 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Judson | https://wilson.net | +| | | | | Guadalupe | http://otho.info | +| | | | | General | https://skylar.name | +| | | | | Haylie | http://audreanne.info | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2acb69d03ab3d0c5.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2acb69d03ab3d0c5.verified.txt new file mode 100644 index 00000000..107ce929 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2acb69d03ab3d0c5.verified.txt @@ -0,0 +1,128 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Assurance Executive | 2.8.5 | Ignored | The RSS driver is down, transmit the solid state driver so we can transmit the RSS driver! | | We need to parse the optical FTP driver! | http://antonina.com | Alvah | http://otha.name | +| | | | | | | | Natasha | https://nyah.com | +| | | | | | | | Oliver | http://ettie.biz | +| | | | | | | | Lonny | https://onie.org | +| | | | | | | | Cassie | http://solon.net | +| | | | | | | | Buck | http://taryn.com | +| | | | | | | | Hilton | http://isabel.com | +| Lead Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Human Accounts Executive | 7.6.7 | Unknown | Use the auxiliary PNG interface, then you can generate the auxiliary interface! | | You can't connect the interface without backing up the optical SMTP interface! | http://kristin.net | Seamus | http://maybell.info | +| | | | | | | | Monserrat | http://katrine.name | +| | | | | | | | Abel | https://geovany.com | +| | | | | | | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| Global Optimization Architect | 4.8.0 | Expression | | 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://gaylord.name | Vida | https://theresia.biz | +| | | | | | | | Ransom | http://isom.com | +| | | | | | | | Anastasia | http://kamryn.info | +| | | | | | | | Marlene | https://cyril.name | +| | | | | | | | Zetta | http://pete.org | +| | | | | | | | Candida | https://craig.biz | +| | | | | | | | Timmothy | https://joanny.biz | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | Edmund | http://sadie.info | +| | | | | | | | Horacio | https://loraine.name | +| | | | | | | | Sandra | https://emil.info | +| | | | | | | | Dayana | https://leila.info | +| | | | | | | | Micah | http://darien.com | +| | | | | | | | Ethel | http://shakira.net | +| Dynamic Data Director | 8.6.8 | Overwrite | | | We need to back up the primary SMTP circuit! | https://timothy.info | Kirsten | http://madisyn.com | +| | | | | | | | Murray | https://destinee.com | +| | | | | | | | Emanuel | https://keely.info | +| | | | | | | | Obie | https://caleigh.net | +| | | | | | | | Albin | http://flavie.com | +| | | | | | | | Lavonne | http://kaitlyn.com | +| | | | | | | | Osborne | https://joesph.name | +| | | | | | | | Michael | https://kali.com | +| Legacy Creative Liaison | 0.4.6 | Expression | | The SMS system is down, back up the open-source system so we can back up the SMS system! | I'll connect the optical FTP program, that should program the FTP program! | | Candice | http://linnea.com | +| | | | | | | | Everardo | http://daryl.net | +| | | | | | | | Jerrod | http://laila.com | +| | | | | | | | Caleigh | https://adolfo.com | +| | | | | | | | Daisha | http://justine.biz | +| | | | | | | | Americo | http://tessie.org | +| | | | | | | | Howard | https://luis.info | +| Investor Usability Producer | 9.7.6 | Url | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | Jett | https://randal.biz | +| | | | | | | | Leif | http://chaz.name | +| | | | | | | | Tristian | http://susie.com | +| | | | | | | | Carmelo | https://kariane.com | +| | | | | | | | Sofia | http://daphnee.name | +| | | | | | | | Nedra | http://orland.info | +| | | | | | | | Hilton | http://shany.info | +| Dynamic Program Associate | 5.9.7 | Expression | | | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Suzanne | http://ima.name | +| | | | | | | | Earnestine | http://nathanial.biz | +| | | | | | | | Connor | https://augustus.net | +| | | | | | | | Araceli | http://hailey.biz | +| | | | | | | | Janessa | https://craig.com | +| | | | | | | | Erica | http://kristin.org | +| | | | | | | | Alek | http://shany.biz | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| Investor Creative Architect | 4.5.6 | Overwrite | | The PCI microchip is down, input the cross-platform microchip so we can input the PCI microchip! | If we quantify the transmitter, we can get to the XML transmitter through the optical XML transmitter! | | Selmer | https://jairo.info | +| | | | | | | | Juanita | http://holly.name | +| | | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | | Adalberto | https://sister.biz | +| | | | | | | | Gerald | https://vidal.com | +| | | | | | | | Lucio | http://clemmie.info | +| Corporate Tactics Analyst | 3.0.8 | Overwrite | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | Use the virtual RAM monitor, then you can override the virtual monitor! | | | Hildegard | http://conner.name | +| | | | | | | | 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 | +| | | | | | | | Irving | https://sydnie.org | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Lead Integration Engineer | 8.7.4 | Unknown | | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | http://jackeline.biz | Reanna | http://buck.net | +| | | | | | | | Christine | http://demarco.name | +| | | | | | | | Marge | http://astrid.net | +| | | | | | | | Charlene | http://rod.net | +| Dynamic Quality Officer | 8.9.2 | Ignored | | | | https://danika.org | Jadon | https://amelia.biz | +| | | | | | | | Toni | http://angie.name | +| | | | | | | | Ardella | http://melissa.net | +| | | | | | | | Sandra | http://pearline.org | +| | | | | | | | Noble | https://dusty.net | +| Regional Paradigm Assistant | 9.8.0 | Url | | If we input the transmitter, we can get to the HDD transmitter through the bluetooth HDD transmitter! | | | Jordan | https://kathryne.name | +| | | | | | | | Mayra | http://lance.name | +| | | | | | | | Jimmie | https://lorine.org | +| | | | | | | | Rebeka | https://malika.org | +| | | | | | | | Trinity | http://fritz.info | +| | | | | | | | Neha | https://marianne.name | +| | | | | | | | Colin | https://billie.biz | +| | | | | | | | Brielle | https://brennon.name | +| | | | | | | | Myriam | https://rosemary.name | +| Chief Data Orchestrator | 4.3.2 | Ignored | | | We need to back up the multi-byte SCSI transmitter! | http://gaylord.com | Taya | http://micaela.biz | +| | | | | | | | Evert | http://tomas.net | +| | | | | | | | Brett | http://virginie.net | +| Internal Branding Executive | 2.0.9 | Overwrite | | The SAS sensor is down, input the auxiliary sensor so we can input the SAS sensor! | You can't bypass the application without programming the solid state COM application! | https://efrain.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 | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2ad05730af414b9a.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2ad05730af414b9a.verified.txt new file mode 100644 index 00000000..4e3af689 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2ad05730af414b9a.verified.txt @@ -0,0 +1,36 @@ +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error Context | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| District Creative Designer | 1.4.6 | Url | We need to program the haptic IB panel! | | | | http://cameron.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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Chief Functionality Planner | 5.1.2 | Unknown | | I'll calculate the 1080p HDD system, that should system the HDD system! | | Matt Mills,Matt Mills | http://myrtice.com | | | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| Principal Assurance Representative | 3.8.2 | Ignored | | | | Patsy Erdman,Patsy Erdman,Patsy Erdman,Patsy Erdman | | Jadon | https://amelia.biz | +| | | | | | | | | Toni | http://angie.name | +| | | | | | | | | Ardella | http://melissa.net | +| | | | | | | | | Sandra | http://pearline.org | +| | | | | | | | | Noble | https://dusty.net | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | | | +| Corporate Intranet Associate | 7.5.1 | Overwrite | | 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! | | | | | +| Lead Configuration Liaison | 1.8.9 | Expression | | connecting the transmitter won't do anything, we need to program the cross-platform XSS transmitter! | | | http://esther.biz | | | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2ae7eb15679a2201.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2ae7eb15679a2201.verified.txt new file mode 100644 index 00000000..28523e49 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2ae7eb15679a2201.verified.txt @@ -0,0 +1,35 @@ +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Senior Brand Developer | 4.4.1 | Ignored | If we override the system, we can get to the CSS system through the neural CSS system! | http://adelbert.net | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| | | | | | Libby | http://wade.biz | +| | | | | | Leola | https://pietro.info | +| | | | | | Arch | http://hazle.org | +| | | | | | Eldred | http://gabriel.net | +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2b4886b08fcd36ed.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2b4886b08fcd36ed.verified.txt new file mode 100644 index 00000000..ea07bcd7 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2b4886b08fcd36ed.verified.txt @@ -0,0 +1,111 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ---------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ---------------------- | --------- | ---------------------- | +| Direct Accountability Assistant | 2.2.8 | Url | bypassing the protocol won't do anything, we need to compress the primary HTTP protocol! | | http://natasha.info | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Forward Configuration Supervisor | 9.0.8 | Overwrite | You can't program the protocol without overriding the primary IB protocol! | | http://quinn.name | | | +| Lead Usability Assistant | 1.3.4 | Overwrite | quantifying the matrix won't do anything, we need to synthesize the wireless PCI matrix! | Use the solid state SQL firewall, then you can connect the solid state firewall! | https://duane.info | | | +| Dynamic Accountability Analyst | 4.9.7 | Overwrite | | | https://jaron.info | | | +| National Intranet Technician | 8.0.0 | Overwrite | | | | | | +| Central Tactics Engineer | 6.3.5 | Unknown | connecting the bandwidth won't do anything, we need to bypass the multi-byte AI bandwidth! | | | | | +| National Communications Orchestrator | 4.5.1 | Unknown | The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit! | | | | | +| Central Identity Analyst | 8.9.6 | Expression | | | http://leta.org | | | +| Dynamic Division Consultant | 4.8.7 | Overwrite | Use the multi-byte IB microchip, then you can connect the multi-byte microchip! | backing up the feed won't do anything, we need to compress the haptic SMTP feed! | http://raquel.net | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | | | +| Human Communications Supervisor | 6.0.1 | Ignored | Use the cross-platform SAS feed, then you can bypass the cross-platform feed! | | http://ethan.name | | | +| Regional Operations Coordinator | 0.2.5 | Unknown | | I'll hack the cross-platform SSL array, that should array the SSL array! | http://ena.com | | | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| Human Response Coordinator | 2.9.7 | Ignored | | | http://ruth.org | | | +| Human Operations Assistant | 0.7.2 | Overwrite | Use the haptic USB driver, then you can override the haptic driver! | | http://camila.net | | | +| Global Division Designer | 8.2.7 | Expression | Try to program the EXE hard drive, maybe it will program the virtual hard drive! | | https://pamela.name | | | +| Regional Paradigm Manager | 8.9.8 | Ignored | | If we transmit the application, we can get to the SMS application through the primary SMS application! | https://eileen.name | | | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | | | +| Dynamic Branding Facilitator | 8.3.2 | Ignored | | | | | | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | | | +| National Directives Analyst | 8.2.7 | Ignored | We need to compress the primary GB array! | | | | | +| Principal Accounts Coordinator | 1.0.4 | Overwrite | | I'll connect the digital JSON bus, that should bus the JSON bus! | http://rene.com | | | +| Forward Division Strategist | 5.7.1 | Ignored | You can't reboot the program without transmitting the mobile SMTP program! | The SCSI circuit is down, index the open-source circuit so we can index the SCSI circuit! | https://esperanza.name | | | +| Human Directives Specialist | 4.3.4 | Unknown | Use the digital XSS hard drive, then you can compress the digital hard drive! | You can't generate the card without synthesizing the bluetooth PNG card! | | | | +| Human Optimization Producer | 5.0.9 | Overwrite | | | | | | +| Direct Mobility Designer | 7.7.3 | Expression | | | http://geovanny.info | | | +| Direct Data Orchestrator | 2.4.5 | Expression | | Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor! | | | | +| Investor Research Manager | 6.3.1 | Ignored | | | | | | +| Chief Applications Facilitator | 7.7.6 | Overwrite | | parsing the card won't do anything, we need to synthesize the online SQL card! | | | | +| Corporate Marketing Assistant | 8.7.9 | Url | | You can't program the firewall without connecting the wireless AI firewall! | http://arlene.biz | | | +| Senior Security Consultant | 2.7.5 | Unknown | | | http://adelbert.biz | | | +| Human Program Technician | 2.8.4 | Unknown | | | http://tomasa.info | | | +| Senior Brand Analyst | 2.5.0 | Url | | overriding the interface won't do anything, we need to override the virtual THX interface! | | | | +| Dynamic Quality Analyst | 0.9.5 | Overwrite | We need to index the optical HTTP application! | I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor! | | | | +| Global Program Representative | 5.1.0 | Url | | If we back up the monitor, we can get to the PCI monitor through the virtual PCI monitor! | | | | +| National Applications Designer | 6.4.9 | Expression | | Use the back-end SMS feed, then you can program the back-end feed! | | | | +| Investor Implementation Technician | 2.7.9 | Unknown | | | http://crystal.name | | | +| National Solutions Associate | 9.1.2 | Overwrite | | | | | | +| Legacy Directives Supervisor | 9.6.2 | Url | The PNG circuit is down, back up the online circuit so we can back up the PNG circuit! | | | | | +| Dynamic Factors Facilitator | 6.5.2 | Expression | | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | http://magnolia.com | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| International Functionality Agent | 8.7.6 | Unknown | | If we hack the card, we can get to the JBOD card through the optical JBOD card! | http://jalyn.org | | | +| Global Security Coordinator | 1.7.9 | Ignored | | | https://carol.info | | | +| District Operations Director | 0.6.3 | Url | | We need to program the cross-platform FTP hard drive! | https://dejah.net | | | +| Chief Division Producer | 2.3.9 | Overwrite | | | | | | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | http://hanna.net | | | +| Customer Functionality Consultant | 5.5.1 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | http://terence.com | | | +| Legacy Directives Officer | 2.4.4 | Url | | The PCI program is down, hack the multi-byte program so we can hack the PCI program! | http://sedrick.biz | | | +| Internal Directives Designer | 0.4.8 | Url | The EXE protocol is down, reboot the redundant protocol so we can reboot the EXE protocol! | | | | | +| Corporate Tactics Director | 2.5.7 | Url | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | http://marcos.info | | | +| International Quality Director | 0.3.8 | Expression | | | | | | +| International Data Representative | 3.5.7 | Ignored | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | http://dakota.com | | | +| Future Accounts Agent | 0.9.7 | Ignored | | | | | | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | | | +| Human Directives Engineer | 5.3.9 | Url | | | | | | +| Human Group Designer | 9.9.1 | Expression | Use the haptic XSS application, then you can synthesize the haptic application! | If we transmit the hard drive, we can get to the AGP hard drive through the bluetooth AGP hard drive! | http://jodie.org | | | +| Investor Creative Architect | 8.2.4 | Unknown | | | | | | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | | | +| Forward Intranet Engineer | 2.5.9 | Expression | The RSS sensor is down, input the 1080p sensor so we can input the RSS sensor! | Try to index the ADP port, maybe it will index the auxiliary port! | | | | +| Customer Metrics Developer | 2.2.9 | Ignored | | | | | | +| Forward Functionality Developer | 5.1.1 | Url | | | | | | +| Corporate Data Strategist | 9.0.0 | Ignored | | | http://eli.net | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Global Mobility Facilitator | 9.5.8 | Expression | | | | | | +| Dynamic Optimization Director | 3.4.6 | Ignored | The PNG protocol is down, index the digital protocol so we can index the PNG protocol! | I'll transmit the online SSL feed, that should feed the SSL feed! | https://maximilian.org | | | +| National Creative Assistant | 4.9.0 | Ignored | | If we navigate the pixel, we can get to the SCSI pixel through the bluetooth SCSI pixel! | https://michelle.org | | | +| Lead Branding Developer | 4.1.5 | Url | | | http://abe.com | | | +| Corporate Accounts Technician | 5.8.0 | Ignored | | | https://isobel.org | | | +| Forward Marketing Orchestrator | 1.6.4 | Overwrite | I'll connect the primary SQL sensor, that should sensor the SQL sensor! | The SMTP driver is down, bypass the mobile driver so we can bypass the SMTP driver! | https://lukas.com | | | +| Investor Intranet Producer | 5.4.1 | Ignored | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | http://hyman.org | | | +| National Research Facilitator | 6.0.6 | Expression | Use the primary EXE array, then you can navigate the primary array! | | | | | +| International Intranet Planner | 6.4.6 | Url | The IB interface is down, program the redundant interface so we can program the IB interface! | | https://lenna.com | | | +| Central Web Assistant | 4.2.1 | Unknown | | Use the wireless ADP array, then you can input the wireless array! | https://verda.net | | | +| Dynamic Integration Architect | 1.6.3 | Overwrite | | The RAM feed is down, copy the neural feed so we can copy the RAM feed! | | | | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | | | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | | | +| Future Accounts Architect | 9.1.8 | Url | You can't bypass the firewall without indexing the multi-byte COM firewall! | | https://fermin.biz | | | +| Chief Intranet Facilitator | 6.6.1 | Expression | | | https://rosalind.net | | | +| Direct Assurance Strategist | 1.3.7 | Expression | The RSS firewall is down, hack the neural firewall so we can hack the RSS firewall! | | | | | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| Corporate Directives Planner | 8.8.5 | Unknown | The CSS bus is down, generate the 1080p bus so we can generate the CSS bus! | We need to back up the 1080p SMTP feed! | | | | +| Product Creative Facilitator | 8.4.6 | Unknown | 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://juliana.net | | | +| Regional Directives Supervisor | 4.9.8 | Ignored | Try to reboot the THX hard drive, maybe it will reboot the open-source hard drive! | Use the primary GB driver, then you can generate the primary driver! | https://malcolm.net | | | +| 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 | | | +| Dynamic Accountability Strategist | 7.0.9 | Unknown | You can't bypass the sensor without transmitting the neural JSON sensor! | | | | | +| Human Quality Facilitator | 1.2.0 | Expression | We need to copy the online THX firewall! | You can't calculate the application without calculating the auxiliary AI application! | | | | +| Human Optimization Facilitator | 7.4.8 | Overwrite | 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! | https://cooper.name | | | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| Senior Optimization Assistant | 3.6.0 | Overwrite | | overriding the pixel won't do anything, we need to copy the optical JSON pixel! | http://akeem.info | | | +| Regional Factors Designer | 7.4.1 | Overwrite | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | | | | +| Investor Interactions Liaison | 4.4.9 | Overwrite | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | | | | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | | | +| Senior Factors Administrator | 1.6.1 | Expression | I'll calculate the solid state ADP panel, that should panel the ADP panel! | If we generate the circuit, we can get to the XSS circuit through the primary XSS circuit! | | | | +| Principal Markets Designer | 3.8.8 | Overwrite | overriding the transmitter won't do anything, we need to generate the cross-platform SCSI transmitter! | | | | | +| Customer Security Representative | 3.7.3 | Ignored | The GB circuit is down, hack the redundant circuit so we can hack the GB circuit! | | https://jalon.net | | | +| Product Assurance Technician | 0.8.2 | Overwrite | | | https://steve.info | | | +| National Creative Coordinator | 5.9.5 | Expression | | | https://bobbie.info | | | +| Chief Factors Supervisor | 5.2.2 | Expression | | | http://helga.com | | | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ---------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2b6d1c8c430d424b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2b6d1c8c430d424b.verified.txt new file mode 100644 index 00000000..7f86595e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2b6d1c8c430d424b.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Future Integration Analyst | 9.0.4 | Expression | | | Abner | http://tavares.info | +| | | | | | Johann | http://andres.net | +| | | | | | Jaquan | http://carey.org | +| | | | | | Arvel | http://mortimer.org | +| | | | | | Alicia | http://paula.com | +| | | | | | Heidi | http://letha.name | +| | | | | | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Paige | https://remington.info | +| | | | | | Aletha | https://isobel.info | +| | | | | | Pearline | https://johnathon.info | +| | | | | | Eleanora | http://jaeden.info | +| | | | | | Nikolas | https://daphney.net | +| | | | | | Oceane | http://clifton.com | +| | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | http://marina.com | Myles | http://nikko.name | +| | | | | | Rolando | http://nikko.name | +| | | | | | Pamela | https://aliza.net | +| | | | | | Marcella | http://helga.net | +| | | | | | Alisha | http://alyson.name | +| | | | | | Carmelo | http://michele.name | +| | | | | | Miles | https://freddie.com | +| | | | | | Kade | https://jaunita.biz | +| | | | | | Marcelina | http://donna.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2c606c897158bddc.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2c606c897158bddc.verified.txt new file mode 100644 index 00000000..f0a3d464 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2c606c897158bddc.verified.txt @@ -0,0 +1,14 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------- | --------- | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2caf5be6f8c41ae3.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2caf5be6f8c41ae3.verified.txt new file mode 100644 index 00000000..f4318e24 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2caf5be6f8c41ae3.verified.txt @@ -0,0 +1,109 @@ +| --------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | --------------------- | ----------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| --------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | --------------------- | ----------- | --------------------- | +| Human Implementation Designer | 8.3.7 | Unknown | Try to navigate the RSS card, maybe it will navigate the haptic card! | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Customer Configuration Manager | 1.6.8 | Unknown | I'll program the online RSS card, that should card the RSS card! | http://sylvan.net | | | +| Dynamic Communications Supervisor | 2.6.8 | Overwrite | | https://carol.biz | | | +| Product Quality Analyst | 3.6.5 | Overwrite | You can't parse the port without bypassing the multi-byte GB port! | https://delbert.com | | | +| Human Configuration Assistant | 0.1.1 | Unknown | I'll bypass the solid state SMS system, that should system the SMS system! | http://frederick.com | | | +| Direct Assurance Supervisor | 4.1.8 | Overwrite | | https://aniyah.org | | | +| Corporate Creative Liaison | 2.9.9 | Overwrite | | http://albert.org | | | +| Chief Assurance Associate | 3.3.1 | Url | overriding the panel won't do anything, we need to parse the open-source IB panel! | https://tyrese.info | | | +| District Factors Producer | 1.6.6 | Unknown | If we reboot the panel, we can get to the THX panel through the solid state THX panel! | | | | +| District Branding Analyst | 1.9.5 | Url | | https://paula.net | | | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Chief Implementation Assistant | 6.1.2 | Unknown | | http://cathryn.biz | | | +| Customer Security Representative | 3.7.3 | Expression | The GB circuit is down, hack the redundant circuit so we can hack the GB circuit! | https://jalon.net | | | +| Lead Integration Liaison | 1.8.8 | Url | | https://sean.com | | | +| Human Creative Engineer | 7.5.1 | Unknown | | | | | +| Customer Directives Director | 7.9.2 | Overwrite | Try to hack the COM panel, maybe it will hack the auxiliary panel! | | | | +| Future Markets Architect | 9.0.8 | Overwrite | | | | | +| Global Usability Producer | 4.9.5 | Expression | If we hack the application, we can get to the PCI application through the 1080p PCI application! | | | | +| Dynamic Security Technician | 6.8.3 | Unknown | | | | | +| Corporate Data Strategist | 9.0.0 | Url | | http://eli.net | | | +| International Identity Planner | 4.2.1 | Expression | You can't compress the capacitor without copying the virtual USB capacitor! | | | | +| Chief Division Director | 3.4.7 | Unknown | Try to override the CSS microchip, maybe it will override the primary microchip! | http://alejandrin.biz | | | +| Internal Division Agent | 2.4.2 | Unknown | | | | | +| National Tactics Architect | 6.7.8 | Url | We need to parse the auxiliary SAS capacitor! | https://margaret.net | | | +| Customer Integration Agent | 3.6.0 | Expression | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | | | | +| Regional Markets Supervisor | 7.7.6 | Expression | If we transmit the system, we can get to the SMTP system through the virtual SMTP system! | | | | +| Chief Marketing Assistant | 7.3.5 | Expression | | | | | +| National Creative Executive | 7.5.7 | Unknown | | http://mallory.biz | | | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | +| Dynamic Configuration Specialist | 8.8.8 | Overwrite | Use the 1080p XML circuit, then you can generate the 1080p circuit! | http://brown.com | | | +| Central Markets Officer | 6.8.8 | Expression | | | | | +| Dynamic Configuration Executive | 4.7.6 | Unknown | If we parse the transmitter, we can get to the ADP transmitter through the online ADP transmitter! | | | | +| Customer Quality Technician | 9.7.0 | Unknown | If we index the card, we can get to the XSS card through the neural XSS card! | | | | +| Internal Infrastructure Strategist | 7.2.2 | Overwrite | I'll transmit the optical XML sensor, that should sensor the XML sensor! | http://ahmad.com | | | +| Principal Web Facilitator | 5.4.5 | Overwrite | compressing the firewall won't do anything, we need to copy the bluetooth COM firewall! | http://paris.name | | | +| Central Marketing Technician | 8.7.2 | Overwrite | Use the cross-platform GB capacitor, then you can parse the cross-platform capacitor! | http://albina.org | | | +| Chief Infrastructure Consultant | 4.1.2 | Url | Use the multi-byte IB feed, then you can navigate the multi-byte feed! | https://theron.info | | | +| National Communications Orchestrator | 4.5.1 | Unknown | The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit! | | | | +| Customer Implementation Director | 5.9.1 | Unknown | | | | | +| Legacy Data Facilitator | 0.9.0 | Overwrite | bypassing the program won't do anything, we need to bypass the optical AI program! | https://beatrice.net | | | +| Corporate Paradigm Representative | 7.0.2 | Overwrite | You can't quantify the capacitor without hacking the neural SMS capacitor! | | | | +| Chief Mobility Planner | 7.1.0 | Overwrite | | | | | +| Product Implementation Officer | 1.9.9 | Unknown | Try to back up the AGP system, maybe it will back up the 1080p system! | | | | +| Product Identity Architect | 5.6.4 | Url | The GB bus is down, back up the redundant bus so we can back up the GB bus! | http://darian.org | | | +| Dynamic Brand Technician | 2.5.6 | Expression | | http://lesly.info | | | +| Future Accounts Producer | 9.4.3 | Unknown | You can't override the port without indexing the neural THX port! | | | | +| Customer Operations Officer | 2.6.0 | Overwrite | Use the bluetooth USB alarm, then you can override the bluetooth alarm! | http://antonette.org | | | +| Principal Markets Designer | 3.8.8 | Url | overriding the transmitter won't do anything, we need to generate the cross-platform SCSI transmitter! | | | | +| Principal Intranet Liaison | 5.1.0 | Overwrite | I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor! | http://neva.info | | | +| National Communications Facilitator | 3.1.0 | Url | quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter! | | | | +| Central Integration Analyst | 0.4.0 | Overwrite | If we synthesize the protocol, we can get to the JBOD protocol through the multi-byte JBOD protocol! | https://laverne.name | | | +| District Web Developer | 6.1.9 | Unknown | | http://arthur.net | | | +| Central Interactions Manager | 7.0.9 | Expression | | | | | +| Central Marketing Director | 3.2.5 | Overwrite | | https://anibal.net | | | +| Chief Accounts Associate | 8.5.5 | Unknown | You can't generate the panel without compressing the neural SAS panel! | | | | +| National Identity Technician | 7.4.9 | Overwrite | Try to parse the SMTP feed, maybe it will parse the multi-byte feed! | https://benedict.org | | | +| Investor Accountability Officer | 2.4.3 | Overwrite | | | | | +| Regional Security Architect | 2.2.5 | Url | | | | | +| Forward Quality Producer | 6.3.7 | Overwrite | The CSS microchip is down, back up the bluetooth microchip so we can back up the CSS microchip! | https://jayne.name | | | +| National Accounts Associate | 2.7.6 | Overwrite | | | | | +| Internal Factors Facilitator | 2.6.3 | Overwrite | | http://melba.name | | | +| Principal Implementation Director | 7.1.6 | Unknown | We need to transmit the auxiliary FTP transmitter! | http://pearlie.org | | | +| Forward Functionality Analyst | 4.5.1 | Expression | | http://orie.name | | | +| National Tactics Engineer | 3.7.5 | Url | generating the matrix won't do anything, we need to override the redundant GB matrix! | https://alexys.org | | | +| Global Markets Executive | 2.5.8 | Expression | | | | | +| Product Applications Assistant | 2.8.4 | Overwrite | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | https://carleton.info | | | +| Dynamic Functionality Agent | 5.9.5 | Unknown | | http://annabelle.net | | | +| Global Security Liaison | 8.1.2 | Expression | | | | | +| Global Response Coordinator | 9.7.3 | Overwrite | Use the solid state SQL firewall, then you can connect the solid state firewall! | https://zelda.net | | | +| Internal Branding Supervisor | 6.7.4 | Url | I'll copy the auxiliary PCI panel, that should panel the PCI panel! | | | | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Global Usability Representative | 3.5.9 | Url | | | | | +| National Solutions Associate | 9.1.2 | Expression | | | | | +| Dynamic Functionality Consultant | 4.9.1 | Unknown | | https://lonnie.info | | | +| Principal Optimization Representative | 0.4.8 | Overwrite | If we index the system, we can get to the XSS system through the cross-platform XSS system! | | | | +| Corporate Accountability Representative | 2.3.2 | Unknown | | | | | +| Lead Tactics Executive | 6.2.9 | Unknown | | https://lowell.org | | | +| International Research Director | 4.1.0 | Url | Try to synthesize the SDD hard drive, maybe it will synthesize the bluetooth hard drive! | | | | +| Internal Accounts Consultant | 6.3.4 | Expression | Try to connect the SMS feed, maybe it will connect the mobile feed! | https://elda.info | | | +| Human Usability Associate | 5.2.5 | Expression | You can't override the capacitor without overriding the mobile XML capacitor! | http://hunter.info | | | +| Human Directives Engineer | 5.3.9 | Url | | | | | +| Human Solutions Assistant | 1.9.8 | Expression | Try to parse the PNG panel, maybe it will parse the haptic panel! | http://carter.info | | | +| Dynamic Interactions Facilitator | 6.8.2 | Expression | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | +| --------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | --------------------- | ----------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2cb8182f10ec658f.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2cb8182f10ec658f.verified.txt new file mode 100644 index 00000000..c85c91cf --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2cb8182f10ec658f.verified.txt @@ -0,0 +1,40 @@ +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2cf0bc20185f9fa2.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2cf0bc20185f9fa2.verified.txt new file mode 100644 index 00000000..53e7dfec --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2cf0bc20185f9fa2.verified.txt @@ -0,0 +1,22 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2d8284aab7825f08.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2d8284aab7825f08.verified.txt new file mode 100644 index 00000000..e3011689 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2d8284aab7825f08.verified.txt @@ -0,0 +1,130 @@ +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Accountability Designer | 0.8.0 | Ignored | We need to hack the online FTP application! | | Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn | http://taya.info | Abelardo | http://carolina.name | +| | | | | | | | Lindsey | http://rigoberto.org | +| | | | | | | | Lou | http://darlene.biz | +| | | | | | | | Oliver | https://filomena.com | +| | | | | | | | Vincenzo | https://ulices.biz | +| | | | | | | | Florida | http://jovan.net | +| | | | | | | | Ari | https://chad.com | +| | | | | | | | Yvonne | http://jada.name | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| Legacy Usability Coordinator | 5.8.8 | Overwrite | Try to calculate the PNG port, maybe it will calculate the back-end port! | | | http://thora.info | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Senior Solutions Strategist | 7.5.0 | 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 | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Customer Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| Corporate Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | http://celestine.info | Clemens | https://abagail.info | +| | | | | | | | Franz | http://prudence.info | +| | | | | | | | Casper | https://alva.com | +| | | | | | | | Mario | http://alexandria.biz | +| Dynamic Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.biz | +| Legacy Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2dceaca03d45e6bb.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2dceaca03d45e6bb.verified.txt new file mode 100644 index 00000000..1968cf36 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2dceaca03d45e6bb.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2e6e0f7baaf94516.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2e6e0f7baaf94516.verified.txt new file mode 100644 index 00000000..c30a0a83 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2e6e0f7baaf94516.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | Clare | https://bobby.info | +| | | | | | | Cecil | https://kira.net | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | Ila | http://rachel.com | +| | | | | | | Catalina | http://jolie.com | +| | | | | | | Dianna | https://leda.net | +| | | | | | | Nicola | http://aleen.name | +| | | | | | | Nelda | http://delpha.net | +| | | | | | | Delores | http://rae.biz | +| | | | | | | Cynthia | https://zella.com | +| | | | | | | Greta | http://adolph.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2ec54c4c0ce905f4.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2ec54c4c0ce905f4.verified.txt new file mode 100644 index 00000000..ff146ae1 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2ec54c4c0ce905f4.verified.txt @@ -0,0 +1,130 @@ +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| Legacy Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Legacy Usability Coordinator | 5.8.8 | Overwrite | Try to calculate the PNG port, maybe it will calculate the back-end port! | | | http://thora.info | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Senior Solutions Strategist | 7.5.0 | 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 Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| Corporate Accountability Designer | 0.8.0 | Ignored | We need to hack the online FTP application! | | Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn | http://taya.info | Abelardo | http://carolina.name | +| | | | | | | | Lindsey | http://rigoberto.org | +| | | | | | | | Lou | http://darlene.biz | +| | | | | | | | Oliver | https://filomena.com | +| | | | | | | | Vincenzo | https://ulices.biz | +| | | | | | | | Florida | http://jovan.net | +| | | | | | | | Ari | https://chad.com | +| | | | | | | | Yvonne | http://jada.name | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.biz | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Corporate Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | http://celestine.info | Clemens | https://abagail.info | +| | | | | | | | Franz | http://prudence.info | +| | | | | | | | Casper | https://alva.com | +| | | | | | | | Mario | http://alexandria.biz | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2f010ca3166dcd40.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2f010ca3166dcd40.verified.txt new file mode 100644 index 00000000..b9ec2dc3 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2f010ca3166dcd40.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2f2aebe703b07595.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2f2aebe703b07595.verified.txt new file mode 100644 index 00000000..8338c366 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2f2aebe703b07595.verified.txt @@ -0,0 +1,8 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Judson | https://wilson.net | +| | | | | Guadalupe | http://otho.info | +| | | | | General | https://skylar.name | +| | | | | Haylie | http://audreanne.info | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2f4bd1f951598aa2.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2f4bd1f951598aa2.verified.txt new file mode 100644 index 00000000..c30a0a83 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2f4bd1f951598aa2.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | Clare | https://bobby.info | +| | | | | | | Cecil | https://kira.net | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | Ila | http://rachel.com | +| | | | | | | Catalina | http://jolie.com | +| | | | | | | Dianna | https://leda.net | +| | | | | | | Nicola | http://aleen.name | +| | | | | | | Nelda | http://delpha.net | +| | | | | | | Delores | http://rae.biz | +| | | | | | | Cynthia | https://zella.com | +| | | | | | | Greta | http://adolph.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2fb923a83e3b7d18.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2fb923a83e3b7d18.verified.txt new file mode 100644 index 00000000..372009bc --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2fb923a83e3b7d18.verified.txt @@ -0,0 +1,89 @@ +| --------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | --------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| --------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | --------------------- | --------- | --------------------- | +| Human Implementation Designer | 8.3.7 | Unknown | Try to navigate the RSS card, maybe it will navigate the haptic card! | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Global Markets Executive | 2.5.8 | Expression | | | | | +| Dynamic Brand Technician | 2.5.6 | Expression | | http://lesly.info | | | +| Internal Accounts Consultant | 6.3.4 | Expression | Try to connect the SMS feed, maybe it will connect the mobile feed! | https://elda.info | | | +| Human Configuration Assistant | 0.1.1 | Unknown | I'll bypass the solid state SMS system, that should system the SMS system! | http://frederick.com | | | +| Dynamic Configuration Specialist | 8.8.8 | Overwrite | Use the 1080p XML circuit, then you can generate the 1080p circuit! | http://brown.com | | | +| Corporate Creative Liaison | 2.9.9 | Overwrite | | http://albert.org | | | +| National Communications Facilitator | 3.1.0 | Url | quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter! | | | | +| Customer Security Representative | 3.7.3 | Expression | The GB circuit is down, hack the redundant circuit so we can hack the GB circuit! | https://jalon.net | | | +| Principal Intranet Liaison | 5.1.0 | Overwrite | I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor! | http://neva.info | | | +| National Tactics Engineer | 3.7.5 | Url | generating the matrix won't do anything, we need to override the redundant GB matrix! | https://alexys.org | | | +| Global Usability Representative | 3.5.9 | Url | | | | | +| Chief Implementation Assistant | 6.1.2 | Unknown | | http://cathryn.biz | | | +| Dynamic Functionality Consultant | 4.9.1 | Unknown | | https://lonnie.info | | | +| District Factors Producer | 1.6.6 | Unknown | If we reboot the panel, we can get to the THX panel through the solid state THX panel! | | | | +| National Identity Technician | 7.4.9 | Overwrite | Try to parse the SMTP feed, maybe it will parse the multi-byte feed! | https://benedict.org | | | +| Customer Operations Officer | 2.6.0 | Overwrite | Use the bluetooth USB alarm, then you can override the bluetooth alarm! | http://antonette.org | | | +| Lead Tactics Executive | 6.2.9 | Unknown | | https://lowell.org | | | +| Forward Functionality Analyst | 4.5.1 | Expression | | http://orie.name | | | +| International Research Director | 4.1.0 | Url | Try to synthesize the SDD hard drive, maybe it will synthesize the bluetooth hard drive! | | | | +| Human Solutions Assistant | 1.9.8 | Expression | Try to parse the PNG panel, maybe it will parse the haptic panel! | http://carter.info | | | +| Internal Division Agent | 2.4.2 | Unknown | | | | | +| Dynamic Configuration Executive | 4.7.6 | Unknown | If we parse the transmitter, we can get to the ADP transmitter through the online ADP transmitter! | | | | +| Customer Integration Agent | 3.6.0 | Expression | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | | | | +| Chief Division Director | 3.4.7 | Unknown | Try to override the CSS microchip, maybe it will override the primary microchip! | http://alejandrin.biz | | | +| Legacy Data Facilitator | 0.9.0 | Overwrite | bypassing the program won't do anything, we need to bypass the optical AI program! | https://beatrice.net | | | +| Internal Branding Supervisor | 6.7.4 | Url | I'll copy the auxiliary PCI panel, that should panel the PCI panel! | | | | +| Product Implementation Officer | 1.9.9 | Unknown | Try to back up the AGP system, maybe it will back up the 1080p system! | | | | +| Principal Implementation Director | 7.1.6 | Unknown | We need to transmit the auxiliary FTP transmitter! | http://pearlie.org | | | +| Chief Marketing Assistant | 7.3.5 | Expression | | | | | +| Lead Integration Liaison | 1.8.8 | Url | | https://sean.com | | | +| Future Accounts Producer | 9.4.3 | Unknown | You can't override the port without indexing the neural THX port! | | | | +| Global Response Coordinator | 9.7.3 | Overwrite | Use the solid state SQL firewall, then you can connect the solid state firewall! | https://zelda.net | | | +| Internal Infrastructure Strategist | 7.2.2 | Overwrite | I'll transmit the optical XML sensor, that should sensor the XML sensor! | http://ahmad.com | | | +| Direct Assurance Supervisor | 4.1.8 | Overwrite | | https://aniyah.org | | | +| Forward Quality Producer | 6.3.7 | Overwrite | The CSS microchip is down, back up the bluetooth microchip so we can back up the CSS microchip! | https://jayne.name | | | +| Human Usability Associate | 5.2.5 | Expression | You can't override the capacitor without overriding the mobile XML capacitor! | http://hunter.info | | | +| Customer Configuration Manager | 1.6.8 | Unknown | I'll program the online RSS card, that should card the RSS card! | http://sylvan.net | | | +| Chief Accounts Associate | 8.5.5 | Unknown | You can't generate the panel without compressing the neural SAS panel! | | | | +| Principal Optimization Representative | 0.4.8 | Overwrite | If we index the system, we can get to the XSS system through the cross-platform XSS system! | | | | +| Corporate Paradigm Representative | 7.0.2 | Overwrite | You can't quantify the capacitor without hacking the neural SMS capacitor! | | | | +| Principal Markets Designer | 3.8.8 | Url | overriding the transmitter won't do anything, we need to generate the cross-platform SCSI transmitter! | | | | +| Human Directives Engineer | 5.3.9 | Url | | | | | +| Customer Directives Director | 7.9.2 | Overwrite | Try to hack the COM panel, maybe it will hack the auxiliary panel! | | | | +| Central Marketing Director | 3.2.5 | Overwrite | | https://anibal.net | | | +| Central Integration Analyst | 0.4.0 | Overwrite | If we synthesize the protocol, we can get to the JBOD protocol through the multi-byte JBOD protocol! | https://laverne.name | | | +| Human Creative Engineer | 7.5.1 | Unknown | | | | | +| Customer Quality Technician | 9.7.0 | Unknown | If we index the card, we can get to the XSS card through the neural XSS card! | | | | +| Product Applications Assistant | 2.8.4 | Overwrite | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | https://carleton.info | | | +| District Branding Analyst | 1.9.5 | Url | | https://paula.net | | | +| National Creative Executive | 7.5.7 | Unknown | | http://mallory.biz | | | +| National Communications Orchestrator | 4.5.1 | Unknown | The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit! | | | | +| Regional Security Architect | 2.2.5 | Url | | | | | +| Corporate Data Strategist | 9.0.0 | Url | | http://eli.net | | | +| Global Security Liaison | 8.1.2 | Expression | | | | | +| Future Markets Architect | 9.0.8 | Overwrite | | | | | +| Dynamic Interactions Facilitator | 6.8.2 | Expression | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | +| Investor Accountability Officer | 2.4.3 | Overwrite | | | | | +| Dynamic Communications Supervisor | 2.6.8 | Overwrite | | https://carol.biz | | | +| Central Markets Officer | 6.8.8 | Expression | | | | | +| Central Marketing Technician | 8.7.2 | Overwrite | Use the cross-platform GB capacitor, then you can parse the cross-platform capacitor! | http://albina.org | | | +| National Solutions Associate | 9.1.2 | Expression | | | | | +| Chief Assurance Associate | 3.3.1 | Url | overriding the panel won't do anything, we need to parse the open-source IB panel! | https://tyrese.info | | | +| District Web Developer | 6.1.9 | Unknown | | http://arthur.net | | | +| Principal Web Facilitator | 5.4.5 | Overwrite | compressing the firewall won't do anything, we need to copy the bluetooth COM firewall! | http://paris.name | | | +| Global Usability Producer | 4.9.5 | Expression | If we hack the application, we can get to the PCI application through the 1080p PCI application! | | | | +| Dynamic Functionality Agent | 5.9.5 | Unknown | | http://annabelle.net | | | +| Product Identity Architect | 5.6.4 | Url | The GB bus is down, back up the redundant bus so we can back up the GB bus! | http://darian.org | | | +| Corporate Accountability Representative | 2.3.2 | Unknown | | | | | +| Dynamic Security Technician | 6.8.3 | Unknown | | | | | +| Internal Factors Facilitator | 2.6.3 | Overwrite | | http://melba.name | | | +| Chief Infrastructure Consultant | 4.1.2 | Url | Use the multi-byte IB feed, then you can navigate the multi-byte feed! | https://theron.info | | | +| Regional Markets Supervisor | 7.7.6 | Expression | If we transmit the system, we can get to the SMTP system through the virtual SMTP system! | | | | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | +| Customer Implementation Director | 5.9.1 | Unknown | | | | | +| Product Quality Analyst | 3.6.5 | Overwrite | You can't parse the port without bypassing the multi-byte GB port! | https://delbert.com | | | +| Chief Mobility Planner | 7.1.0 | Overwrite | | | | | +| Central Interactions Manager | 7.0.9 | Expression | | | | | +| International Identity Planner | 4.2.1 | Expression | You can't compress the capacitor without copying the virtual USB capacitor! | | | | +| National Tactics Architect | 6.7.8 | Url | We need to parse the auxiliary SAS capacitor! | https://margaret.net | | | +| National Accounts Associate | 2.7.6 | Overwrite | | | | | +| --------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | --------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2ff8af8abaceba13.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2ff8af8abaceba13.verified.txt new file mode 100644 index 00000000..83c62da1 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_2ff8af8abaceba13.verified.txt @@ -0,0 +1,46 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_30212445c07faa76.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_30212445c07faa76.verified.txt new file mode 100644 index 00000000..6f35c8f2 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_30212445c07faa76.verified.txt @@ -0,0 +1,46 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_307ab4ce1f9ae84e.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_307ab4ce1f9ae84e.verified.txt new file mode 100644 index 00000000..3dfd965a --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_307ab4ce1f9ae84e.verified.txt @@ -0,0 +1,134 @@ +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| National Accounts Liaison | 7.2.6 | Overwrite | | | Cedrick | https://zachariah.net | +| | | | | | Marcelle | https://adah.org | +| | | | | | Barney | http://erica.org | +| Global Response Associate | 1.9.8 | Overwrite | The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth! | | Sandra | http://antonina.com | +| | | | | | Willow | https://jason.org | +| | | | | | Orland | http://rigoberto.com | +| | | | | | Laney | http://eryn.org | +| | | | | | Amari | http://viviane.net | +| | | | | | Kelley | http://doris.net | +| | | | | | Kennedy | https://milo.net | +| Legacy Creative Liaison | 0.4.6 | Overwrite | | | Mervin | http://celestine.info | +| | | | | | Amalia | https://shanelle.info | +| | | | | | Sheila | http://darrell.info | +| | | | | | Alec | https://candice.biz | +| | | | | | Linnea | http://everardo.info | +| | | | | | Daryl | https://jerrod.com | +| | | | | | Laila | http://caleigh.net | +| | | | | | Adolfo | http://daisha.biz | +| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| | | | | | Jody | http://jakob.org | +| | | | | | Anjali | https://valentin.info | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| | | | | | Ursula | https://werner.net | +| | | | | | Linwood | http://rebekah.org | +| | | | | | Cleve | https://claudie.net | +| | | | | | Theodora | http://faye.info | +| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| | | | | | Braeden | https://sunny.name | +| | | | | | Leslie | http://bettie.info | +| | | | | | Edmund | http://sadie.info | +| | | | | | Horacio | https://loraine.name | +| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| | | | | | Earnestine | http://nathanial.biz | +| | | | | | Connor | https://augustus.net | +| | | | | | Araceli | http://hailey.biz | +| | | | | | Janessa | https://craig.com | +| | | | | | Erica | http://kristin.org | +| | | | | | Alek | http://shany.biz | +| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| | | | | | Monserrat | http://katrine.name | +| | | | | | Abel | https://geovany.com | +| | | | | | Diana | http://eula.name | +| | | | | | Raphael | https://zackery.info | +| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| | | | | | Clemmie | http://shanny.net | +| | | | | | Hildegard | http://conner.name | +| | | | | | Isabella | https://kennith.com | +| | | | | | Johanna | https://ara.org | +| | | | | | Demarco | https://rae.biz | +| | | | | | Viviane | http://christine.info | +| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| | | | | | Tyson | https://bonita.org | +| | | | | | Jazlyn | http://madonna.net | +| | | | | | Deangelo | https://jess.info | +| | | | | | Alvah | https://hans.net | +| | | | | | Payton | http://shanna.name | +| | | | | | Providenci | https://tyra.org | +| | | | | | Flo | http://isidro.net | +| | | | | | Dawn | https://anika.org | +| | | | | | Silas | http://zane.name | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Senior Brand Developer | 4.4.1 | Ignored | If we override the system, we can get to the CSS system through the neural CSS system! | http://adelbert.net | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| | | | | | Libby | http://wade.biz | +| | | | | | Leola | https://pietro.info | +| | | | | | Arch | http://hazle.org | +| | | | | | Eldred | http://gabriel.net | +| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| | | | | | Clarissa | https://audreanne.name | +| | | | | | Vida | https://theresia.biz | +| | | | | | Ransom | http://isom.com | +| | | | | | Anastasia | http://kamryn.info | +| | | | | | Marlene | https://cyril.name | +| | | | | | Zetta | http://pete.org | +| | | | | | Candida | https://craig.biz | +| | | | | | Timmothy | https://joanny.biz | +| | | | | | Alfonzo | http://dorothea.org | +| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| | | | | | Caleigh | https://albin.info | +| | | | | | Flavie | http://lavonne.biz | +| | | | | | Kaitlyn | http://osborne.org | +| | | | | | Joesph | https://michael.name | +| | | | | | Kali | http://shyanne.net | +| | | | | | Austin | https://marty.net | +| | | | | | Theresia | http://kristin.net | +| | | | | | Lester | https://paige.com | +| Direct Accounts Associate | 3.2.6 | Overwrite | | https://vesta.com | Buck | http://taryn.com | +| | | | | | Hilton | http://isabel.com | +| | | | | | Rogers | https://bertrand.biz | +| | | | | | Annetta | https://remington.org | +| | | | | | Efrain | http://davion.org | +| | | | | | Merle | https://abigayle.org | +| | | | | | Jerod | https://vicenta.info | +| | | | | | Kayli | https://shaun.net | +| | | | | | Antwan | https://hazel.net | +| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| | | | | | Princess | http://haylie.biz | +| | | | | | Jordane | https://gregorio.com | +| | | | | | Opal | http://abbie.org | +| | | | | | Pablo | https://maxime.biz | +| | | | | | Shaun | https://concepcion.net | +| | | | | | Moises | http://rupert.info | +| Dynamic Marketing Consultant | 2.4.9 | Overwrite | | | Angie | https://ardella.info | +| | | | | | Melissa | https://sandra.biz | +| | | | | | Pearline | https://noble.net | +| | | | | | Dusty | https://verlie.com | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_30a390b2acc66f73.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_30a390b2acc66f73.verified.txt new file mode 100644 index 00000000..107ce929 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_30a390b2acc66f73.verified.txt @@ -0,0 +1,128 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Assurance Executive | 2.8.5 | Ignored | The RSS driver is down, transmit the solid state driver so we can transmit the RSS driver! | | We need to parse the optical FTP driver! | http://antonina.com | Alvah | http://otha.name | +| | | | | | | | Natasha | https://nyah.com | +| | | | | | | | Oliver | http://ettie.biz | +| | | | | | | | Lonny | https://onie.org | +| | | | | | | | Cassie | http://solon.net | +| | | | | | | | Buck | http://taryn.com | +| | | | | | | | Hilton | http://isabel.com | +| Lead Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Human Accounts Executive | 7.6.7 | Unknown | Use the auxiliary PNG interface, then you can generate the auxiliary interface! | | You can't connect the interface without backing up the optical SMTP interface! | http://kristin.net | Seamus | http://maybell.info | +| | | | | | | | Monserrat | http://katrine.name | +| | | | | | | | Abel | https://geovany.com | +| | | | | | | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| Global Optimization Architect | 4.8.0 | Expression | | 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://gaylord.name | Vida | https://theresia.biz | +| | | | | | | | Ransom | http://isom.com | +| | | | | | | | Anastasia | http://kamryn.info | +| | | | | | | | Marlene | https://cyril.name | +| | | | | | | | Zetta | http://pete.org | +| | | | | | | | Candida | https://craig.biz | +| | | | | | | | Timmothy | https://joanny.biz | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | Edmund | http://sadie.info | +| | | | | | | | Horacio | https://loraine.name | +| | | | | | | | Sandra | https://emil.info | +| | | | | | | | Dayana | https://leila.info | +| | | | | | | | Micah | http://darien.com | +| | | | | | | | Ethel | http://shakira.net | +| Dynamic Data Director | 8.6.8 | Overwrite | | | We need to back up the primary SMTP circuit! | https://timothy.info | Kirsten | http://madisyn.com | +| | | | | | | | Murray | https://destinee.com | +| | | | | | | | Emanuel | https://keely.info | +| | | | | | | | Obie | https://caleigh.net | +| | | | | | | | Albin | http://flavie.com | +| | | | | | | | Lavonne | http://kaitlyn.com | +| | | | | | | | Osborne | https://joesph.name | +| | | | | | | | Michael | https://kali.com | +| Legacy Creative Liaison | 0.4.6 | Expression | | The SMS system is down, back up the open-source system so we can back up the SMS system! | I'll connect the optical FTP program, that should program the FTP program! | | Candice | http://linnea.com | +| | | | | | | | Everardo | http://daryl.net | +| | | | | | | | Jerrod | http://laila.com | +| | | | | | | | Caleigh | https://adolfo.com | +| | | | | | | | Daisha | http://justine.biz | +| | | | | | | | Americo | http://tessie.org | +| | | | | | | | Howard | https://luis.info | +| Investor Usability Producer | 9.7.6 | Url | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | Jett | https://randal.biz | +| | | | | | | | Leif | http://chaz.name | +| | | | | | | | Tristian | http://susie.com | +| | | | | | | | Carmelo | https://kariane.com | +| | | | | | | | Sofia | http://daphnee.name | +| | | | | | | | Nedra | http://orland.info | +| | | | | | | | Hilton | http://shany.info | +| Dynamic Program Associate | 5.9.7 | Expression | | | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Suzanne | http://ima.name | +| | | | | | | | Earnestine | http://nathanial.biz | +| | | | | | | | Connor | https://augustus.net | +| | | | | | | | Araceli | http://hailey.biz | +| | | | | | | | Janessa | https://craig.com | +| | | | | | | | Erica | http://kristin.org | +| | | | | | | | Alek | http://shany.biz | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| Investor Creative Architect | 4.5.6 | Overwrite | | The PCI microchip is down, input the cross-platform microchip so we can input the PCI microchip! | If we quantify the transmitter, we can get to the XML transmitter through the optical XML transmitter! | | Selmer | https://jairo.info | +| | | | | | | | Juanita | http://holly.name | +| | | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | | Adalberto | https://sister.biz | +| | | | | | | | Gerald | https://vidal.com | +| | | | | | | | Lucio | http://clemmie.info | +| Corporate Tactics Analyst | 3.0.8 | Overwrite | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | Use the virtual RAM monitor, then you can override the virtual monitor! | | | Hildegard | http://conner.name | +| | | | | | | | 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 | +| | | | | | | | Irving | https://sydnie.org | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Lead Integration Engineer | 8.7.4 | Unknown | | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | http://jackeline.biz | Reanna | http://buck.net | +| | | | | | | | Christine | http://demarco.name | +| | | | | | | | Marge | http://astrid.net | +| | | | | | | | Charlene | http://rod.net | +| Dynamic Quality Officer | 8.9.2 | Ignored | | | | https://danika.org | Jadon | https://amelia.biz | +| | | | | | | | Toni | http://angie.name | +| | | | | | | | Ardella | http://melissa.net | +| | | | | | | | Sandra | http://pearline.org | +| | | | | | | | Noble | https://dusty.net | +| Regional Paradigm Assistant | 9.8.0 | Url | | If we input the transmitter, we can get to the HDD transmitter through the bluetooth HDD transmitter! | | | Jordan | https://kathryne.name | +| | | | | | | | Mayra | http://lance.name | +| | | | | | | | Jimmie | https://lorine.org | +| | | | | | | | Rebeka | https://malika.org | +| | | | | | | | Trinity | http://fritz.info | +| | | | | | | | Neha | https://marianne.name | +| | | | | | | | Colin | https://billie.biz | +| | | | | | | | Brielle | https://brennon.name | +| | | | | | | | Myriam | https://rosemary.name | +| Chief Data Orchestrator | 4.3.2 | Ignored | | | We need to back up the multi-byte SCSI transmitter! | http://gaylord.com | Taya | http://micaela.biz | +| | | | | | | | Evert | http://tomas.net | +| | | | | | | | Brett | http://virginie.net | +| Internal Branding Executive | 2.0.9 | Overwrite | | The SAS sensor is down, input the auxiliary sensor so we can input the SAS sensor! | You can't bypass the application without programming the solid state COM application! | https://efrain.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 | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_31210bb3b59f9a2f.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_31210bb3b59f9a2f.verified.txt new file mode 100644 index 00000000..515c0ecc --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_31210bb3b59f9a2f.verified.txt @@ -0,0 +1,25 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Ignored | 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 | Unknown | 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 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_31a4561edaa43be5.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_31a4561edaa43be5.verified.txt new file mode 100644 index 00000000..c9867650 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_31a4561edaa43be5.verified.txt @@ -0,0 +1,127 @@ +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| National Accountability Producer | 6.9.7 | Unknown | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | https://linwood.biz | Travon | https://dedrick.name | +| | | | | | | | | Elissa | http://kaci.org | +| | | | | | | | | Brandi | https://aniyah.com | +| | | | | | | | | Tyson | https://bonita.org | +| | | | | | | | | Jazlyn | http://madonna.net | +| | | | | | | | | Deangelo | https://jess.info | +| | | | | | | | | Alvah | https://hans.net | +| Global Mobility Technician | 8.6.3 | Unknown | | We need to input the haptic XML port! | | Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante | | Lonie | http://wilburn.org | +| | | | | | | | | Concepcion | http://ed.org | +| | | | | | | | | Amanda | https://sophie.net | +| | | | | | | | | Claudine | http://ofelia.biz | +| | | | | | | | | Petra | http://clare.name | +| | | | | | | | | Ozella | https://verla.name | +| | | | | | | | | Denis | http://pete.com | +| International Intranet Planner | 1.3.4 | Expression | 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 | Ahmad | https://lupe.com | +| | | | | | | | | Randi | https://jaiden.biz | +| | | | | | | | | Patience | https://marlene.name | +| | | | | | | | | Lenna | https://franco.name | +| | | | | | | | | Kyleigh | https://tevin.name | +| | | | | | | | | Sallie | https://jordane.name | +| | | | | | | | | Willy | https://daija.info | +| | | | | | | | | Jannie | https://retta.net | +| | | | | | | | | Lottie | http://yasmine.com | +| | | | | | | | | Delia | http://khalil.com | +| Investor Operations Director | 5.6.0 | Expression | Try to input the AI microchip, maybe it will input the 1080p microchip! | | If we synthesize the sensor, we can get to the AI sensor through the redundant AI sensor! | | https://alene.info | Elouise | https://ron.com | +| | | | | | | | | Brown | https://cordia.com | +| | | | | | | | | Ericka | https://eugene.com | +| | | | | | | | | Rashad | http://thomas.com | +| | | | | | | | | Antonia | https://marcelle.org | +| Dynamic Group Associate | 6.6.1 | Ignored | We need to input the open-source SMTP bus! | | | | http://kian.name | Burley | http://lemuel.com | +| | | | | | | | | Brenden | http://agnes.net | +| | | | | | | | | Urban | https://micheal.name | +| | | | | | | | | Ida | https://murray.org | +| | | | | | | | | Samanta | http://assunta.biz | +| | | | | | | | | Florencio | http://bradford.info | +| | | | | | | | | Marcella | http://ray.net | +| | | | | | | | | Gunnar | https://elissa.net | +| | | | | | | | | Maud | https://edgar.name | +| | | | | | | | | Angelina | https://adonis.biz | +| Investor Division Assistant | 9.6.2 | Url | | I'll parse the primary PCI matrix, that should matrix the PCI matrix! | | | | Nya | http://sunny.biz | +| | | | | | | | | Arlo | https://cordia.info | +| | | | | | | | | Linnie | https://marcos.name | +| | | | | | | | | Luella | http://frederic.name | +| | | | | | | | | Lucinda | https://dion.name | +| | | | | | | | | Jayson | https://ryleigh.net | +| | | | | | | | | Mervin | https://lorenza.net | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Product Data Liaison | 7.8.8 | Unknown | Try to calculate the GB card, maybe it will calculate the wireless card! | | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | | | Lewis | https://alisa.com | +| | | | | | | | | Delores | https://layne.name | +| | | | | | | | | Delphine | https://katlynn.org | +| | | | | | | | | Meredith | https://johanna.info | +| | | | | | | | | Jacklyn | https://kadin.com | +| | | | | | | | | Hardy | https://donna.info | +| Product Interactions Planner | 7.4.0 | Expression | Try to navigate the PCI matrix, maybe it will navigate the haptic matrix! | | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | http://bertha.net | Rey | https://connie.info | +| | | | | | | | | Hollie | http://rico.name | +| | | | | | | | | Marshall | http://pierce.org | +| | | | | | | | | 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 | +| Principal Assurance Representative | 3.8.2 | Ignored | | | | Patsy Erdman,Patsy Erdman,Patsy Erdman,Patsy Erdman | | Jadon | https://amelia.biz | +| | | | | | | | | Toni | http://angie.name | +| | | | | | | | | Ardella | http://melissa.net | +| | | | | | | | | Sandra | http://pearline.org | +| | | | | | | | | Noble | https://dusty.net | +| Forward Tactics Agent | 6.8.8 | Url | | We need to back up the primary SMTP circuit! | The COM bandwidth is down, input the auxiliary bandwidth so we can input the COM bandwidth! | Jon Schulist,Jon Schulist | https://flo.info | Diana | http://eula.name | +| | | | | | | | | Raphael | https://zackery.info | +| | | | | | | | | Nettie | https://brayan.com | +| Corporate Marketing Strategist | 3.8.5 | Ignored | | | Use the redundant JSON application, then you can program the redundant application! | Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch | | Naomi | http://mckenna.net | +| | | | | | | | | Jalyn | https://katharina.name | +| | | | | | | | | Kane | http://beulah.biz | +| | | | | | | | | Eleanora | http://birdie.net | +| | | | | | | | | Alvah | http://keanu.net | +| Global Mobility Facilitator | 8.5.9 | Url | | We need to parse the primary PCI protocol! | | Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch | https://itzel.info | Mitchel | http://carleton.name | +| | | | | | | | | Madalyn | http://narciso.net | +| | | | | | | | | Mia | http://nicklaus.net | +| | | | | | | | | Abelardo | http://carolina.name | +| International Research Architect | 3.7.4 | Ignored | | Try to quantify the USB application, maybe it will quantify the mobile application! | If we index the pixel, we can get to the AI pixel through the wireless AI pixel! | | | Madisen | http://raegan.biz | +| | | | | | | | | Cathy | http://giovanna.info | +| | | | | | | | | Ike | https://jerome.biz | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| Dynamic Solutions Assistant | 5.6.4 | Ignored | navigating the alarm won't do anything, we need to copy the 1080p AGP alarm! | | | Craig Halvorson,Craig Halvorson,Craig Halvorson,Craig Halvorson | http://isabell.info | Tess | http://kailyn.info | +| | | | | | | | | Eileen | http://manley.name | +| | | | | | | | | Conor | https://glenna.name | +| | | | | | | | | Sylvester | http://gaylord.biz | +| | | | | | | | | Maxime | https://tom.com | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | Julius Abbott | http://celestine.info | Ettie | http://lonny.net | +| | | | | | | | | Onie | https://cassie.biz | +| | | | | | | | | Solon | https://buck.biz | +| Chief Solutions Administrator | 0.4.1 | Unknown | | 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 | Shaun | https://antwan.org | +| | | | | | | | | Hazel | https://forrest.net | +| | | | | | | | | Brianne | https://dorothea.name | +| | | | | | | | | Don | http://torey.com | +| | | | | | | | | Cedrick | https://zachariah.net | +| | | | | | | | | Marcelle | https://adah.org | +| | | | | | | | | Barney | http://erica.org | +| | | | | | | | | Jordi | https://alysha.com | +| | | | | | | | | Kristina | https://pattie.info | +| | | | | | | | | Cory | http://kailey.com | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_328693ff88472bdd.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_328693ff88472bdd.verified.txt new file mode 100644 index 00000000..56dca99a --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_328693ff88472bdd.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | --------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | --------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | --------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_32f926ba407a6b94.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_32f926ba407a6b94.verified.txt new file mode 100644 index 00000000..9d3270b7 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_32f926ba407a6b94.verified.txt @@ -0,0 +1,131 @@ +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | Unknown | 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 Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| Corporate Accountability Designer | 0.8.0 | Ignored | We need to hack the online FTP application! | | Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn | http://taya.info | Abelardo | http://carolina.name | +| | | | | | | | Lindsey | http://rigoberto.org | +| | | | | | | | Lou | http://darlene.biz | +| | | | | | | | Oliver | https://filomena.com | +| | | | | | | | Vincenzo | https://ulices.biz | +| | | | | | | | Florida | http://jovan.net | +| | | | | | | | Ari | https://chad.com | +| | | | | | | | Yvonne | http://jada.name | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Dynamic Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.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 | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Senior Solutions Strategist | 7.5.0 | 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 Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Customer Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | http://celestine.info | Clemens | https://abagail.info | +| | | | | | | | Franz | http://prudence.info | +| | | | | | | | Casper | https://alva.com | +| | | | | | | | Mario | http://alexandria.biz | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_349be43a276a3c81.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_349be43a276a3c81.verified.txt new file mode 100644 index 00000000..4f66fc95 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_349be43a276a3c81.verified.txt @@ -0,0 +1,16 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | --------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | --------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | --------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_34ffe2600b4b1ea7.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_34ffe2600b4b1ea7.verified.txt new file mode 100644 index 00000000..fa31b9f7 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_34ffe2600b4b1ea7.verified.txt @@ -0,0 +1,46 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_35d98a9778c857ff.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_35d98a9778c857ff.verified.txt new file mode 100644 index 00000000..2735804d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_35d98a9778c857ff.verified.txt @@ -0,0 +1,22 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_367ba63a09705cd6.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_367ba63a09705cd6.verified.txt new file mode 100644 index 00000000..71e5d1ee --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_367ba63a09705cd6.verified.txt @@ -0,0 +1,31 @@ +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Principal Assurance Representative | 3.8.2 | Ignored | | | | Patsy Erdman,Patsy Erdman,Patsy Erdman,Patsy Erdman | | Jadon | https://amelia.biz | +| | | | | | | | | Toni | http://angie.name | +| | | | | | | | | Ardella | http://melissa.net | +| | | | | | | | | Sandra | http://pearline.org | +| | | | | | | | | Noble | https://dusty.net | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_368cb0f433254506.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_368cb0f433254506.verified.txt new file mode 100644 index 00000000..e65ed6e4 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_368cb0f433254506.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_36fbcd7047b48db1.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_36fbcd7047b48db1.verified.txt new file mode 100644 index 00000000..b27dbd5d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_36fbcd7047b48db1.verified.txt @@ -0,0 +1,17 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | Unknown | 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 Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_37ab25587c8aae68.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_37ab25587c8aae68.verified.txt new file mode 100644 index 00000000..9e714675 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_37ab25587c8aae68.verified.txt @@ -0,0 +1,8 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | ------- | -------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | ------- | -------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3844c3e29528a865.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3844c3e29528a865.verified.txt new file mode 100644 index 00000000..6a4179ab --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3844c3e29528a865.verified.txt @@ -0,0 +1,134 @@ +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Legacy Creative Liaison | 0.4.6 | Overwrite | | | Mervin | http://celestine.info | +| | | | | | Amalia | https://shanelle.info | +| | | | | | Sheila | http://darrell.info | +| | | | | | Alec | https://candice.biz | +| | | | | | Linnea | http://everardo.info | +| | | | | | Daryl | https://jerrod.com | +| | | | | | Laila | http://caleigh.net | +| | | | | | Adolfo | http://daisha.biz | +| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| | | | | | Monserrat | http://katrine.name | +| | | | | | Abel | https://geovany.com | +| | | | | | Diana | http://eula.name | +| | | | | | Raphael | https://zackery.info | +| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| | | | | | Caleigh | https://albin.info | +| | | | | | Flavie | http://lavonne.biz | +| | | | | | Kaitlyn | http://osborne.org | +| | | | | | Joesph | https://michael.name | +| | | | | | Kali | http://shyanne.net | +| | | | | | Austin | https://marty.net | +| | | | | | Theresia | http://kristin.net | +| | | | | | Lester | https://paige.com | +| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| | | | | | Earnestine | http://nathanial.biz | +| | | | | | Connor | https://augustus.net | +| | | | | | Araceli | http://hailey.biz | +| | | | | | Janessa | https://craig.com | +| | | | | | Erica | http://kristin.org | +| | | | | | Alek | http://shany.biz | +| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| | | | | | Jody | http://jakob.org | +| | | | | | Anjali | https://valentin.info | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| | | | | | Clarissa | https://audreanne.name | +| | | | | | Vida | https://theresia.biz | +| | | | | | Ransom | http://isom.com | +| | | | | | Anastasia | http://kamryn.info | +| | | | | | Marlene | https://cyril.name | +| | | | | | Zetta | http://pete.org | +| | | | | | Candida | https://craig.biz | +| | | | | | Timmothy | https://joanny.biz | +| | | | | | Alfonzo | http://dorothea.org | +| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| | | | | | Clemmie | http://shanny.net | +| | | | | | Hildegard | http://conner.name | +| | | | | | Isabella | https://kennith.com | +| | | | | | Johanna | https://ara.org | +| | | | | | Demarco | https://rae.biz | +| | | | | | Viviane | http://christine.info | +| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| | | | | | Ursula | https://werner.net | +| | | | | | Linwood | http://rebekah.org | +| | | | | | Cleve | https://claudie.net | +| | | | | | Theodora | http://faye.info | +| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| | | | | | Braeden | https://sunny.name | +| | | | | | Leslie | http://bettie.info | +| | | | | | Edmund | http://sadie.info | +| | | | | | Horacio | https://loraine.name | +| Direct Accounts Associate | 3.2.6 | Overwrite | | https://vesta.com | Buck | http://taryn.com | +| | | | | | Hilton | http://isabel.com | +| | | | | | Rogers | https://bertrand.biz | +| | | | | | Annetta | https://remington.org | +| | | | | | Efrain | http://davion.org | +| | | | | | Merle | https://abigayle.org | +| | | | | | Jerod | https://vicenta.info | +| | | | | | Kayli | https://shaun.net | +| | | | | | Antwan | https://hazel.net | +| Senior Brand Developer | 4.4.1 | Ignored | If we override the system, we can get to the CSS system through the neural CSS system! | http://adelbert.net | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| | | | | | Libby | http://wade.biz | +| | | | | | Leola | https://pietro.info | +| | | | | | Arch | http://hazle.org | +| | | | | | Eldred | http://gabriel.net | +| National Accounts Liaison | 7.2.6 | Overwrite | | | Cedrick | https://zachariah.net | +| | | | | | Marcelle | https://adah.org | +| | | | | | Barney | http://erica.org | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Global Response Associate | 1.9.8 | Overwrite | The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth! | | Sandra | http://antonina.com | +| | | | | | Willow | https://jason.org | +| | | | | | Orland | http://rigoberto.com | +| | | | | | Laney | http://eryn.org | +| | | | | | Amari | http://viviane.net | +| | | | | | Kelley | http://doris.net | +| | | | | | Kennedy | https://milo.net | +| Dynamic Marketing Consultant | 2.4.9 | Overwrite | | | Angie | https://ardella.info | +| | | | | | Melissa | https://sandra.biz | +| | | | | | Pearline | https://noble.net | +| | | | | | Dusty | https://verlie.com | +| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| | | | | | Tyson | https://bonita.org | +| | | | | | Jazlyn | http://madonna.net | +| | | | | | Deangelo | https://jess.info | +| | | | | | Alvah | https://hans.net | +| | | | | | Payton | http://shanna.name | +| | | | | | Providenci | https://tyra.org | +| | | | | | Flo | http://isidro.net | +| | | | | | Dawn | https://anika.org | +| | | | | | Silas | http://zane.name | +| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| | | | | | Princess | http://haylie.biz | +| | | | | | Jordane | https://gregorio.com | +| | | | | | Opal | http://abbie.org | +| | | | | | Pablo | https://maxime.biz | +| | | | | | Shaun | https://concepcion.net | +| | | | | | Moises | http://rupert.info | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3866aa4cb82414a0.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3866aa4cb82414a0.verified.txt new file mode 100644 index 00000000..6c46dd00 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3866aa4cb82414a0.verified.txt @@ -0,0 +1,46 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_38a88eb6dd069c0a.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_38a88eb6dd069c0a.verified.txt new file mode 100644 index 00000000..df445af8 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_38a88eb6dd069c0a.verified.txt @@ -0,0 +1,139 @@ +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| District Metrics Associate | 8.1.6 | Overwrite | | | http://jaylin.org | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Direct Markets Executive | 9.7.7 | Ignored | We need to navigate the open-source PCI pixel! | | https://judge.name | | | +| Human Security Administrator | 9.8.5 | Overwrite | I'll synthesize the redundant XML feed, that should feed the XML feed! | Mario Stamm,Mario Stamm,Mario Stamm,Mario Stamm,Mario Stamm,Mario Stamm | | | | +| Principal Group Strategist | 4.1.0 | Url | I'll bypass the primary GB bandwidth, that should bandwidth the GB bandwidth! | | | | | +| Regional Paradigm Director | 3.0.9 | Unknown | The COM pixel is down, quantify the virtual pixel so we can quantify the COM pixel! | | | | | +| Corporate Interactions Administrator | 1.1.5 | Ignored | | | http://clemmie.info | | | +| Corporate Quality Planner | 6.6.3 | Url | 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 | | | | +| Regional Directives Liaison | 4.7.8 | Ignored | If we connect the interface, we can get to the SCSI interface through the auxiliary SCSI interface! | | https://glennie.biz | | | +| Forward Accounts Consultant | 8.9.0 | Expression | | | | | | +| Human Implementation Producer | 0.9.1 | Url | | | | | | +| Dynamic Integration Assistant | 2.1.6 | Unknown | | | https://gerson.info | | | +| Dynamic Metrics Coordinator | 5.8.1 | Unknown | overriding the circuit won't do anything, we need to copy the mobile AGP circuit! | Helen Fisher,Helen Fisher,Helen Fisher,Helen Fisher,Helen Fisher | | | | +| Regional Integration Consultant | 5.3.8 | Expression | | | http://michael.name | | | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| Regional Factors Analyst | 1.5.7 | Overwrite | | | | | | +| Dynamic Group Representative | 9.8.1 | Unknown | | | | | | +| Lead Identity Developer | 7.1.0 | Unknown | | Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover | https://eve.com | | | +| Future Web Associate | 5.1.3 | Ignored | | | http://favian.biz | | | +| Global Integration Assistant | 5.0.1 | Unknown | | | http://demarco.com | | | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | http://hanna.net | | | +| District Identity Administrator | 2.9.6 | Unknown | | Isabel Schmitt,Isabel Schmitt,Isabel Schmitt,Isabel Schmitt | http://duncan.name | | | +| Dynamic Applications Director | 5.1.4 | Unknown | | Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel | | | | +| Global Markets Designer | 1.7.0 | Overwrite | Use the multi-byte COM feed, then you can parse the multi-byte feed! | | https://toby.biz | | | +| Central Identity Analyst | 8.9.6 | Expression | | | http://leta.org | | | +| Regional Security Agent | 6.2.7 | Overwrite | | | https://kenyon.org | | | +| Legacy Communications Manager | 0.1.8 | Unknown | | | http://gus.info | | | +| Forward Intranet Technician | 2.5.3 | Expression | | Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton | https://ruby.biz | | | +| National Security Liaison | 2.4.1 | Ignored | | | http://pierce.info | | | +| Global Directives Orchestrator | 8.7.6 | Expression | | Tommy Franecki,Tommy Franecki | | | | +| Forward Integration Specialist | 8.7.1 | Expression | | | http://jordon.net | | | +| Senior Brand Analyst | 2.5.0 | Ignored | | Darlene Dickens,Darlene Dickens,Darlene Dickens,Darlene Dickens,Darlene Dickens,Darlene Dickens,Darlene Dickens,Darlene Dickens | | | | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| Dynamic Creative Supervisor | 4.1.3 | Ignored | | | | | | +| Senior Response Officer | 2.8.2 | Expression | | Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann | | | | +| Dynamic Mobility Technician | 6.0.2 | Expression | | | https://keeley.net | | | +| Future Configuration Architect | 4.2.6 | Expression | I'll generate the primary TCP bus, that should bus the TCP bus! | Victoria Padberg,Victoria Padberg,Victoria Padberg,Victoria Padberg,Victoria Padberg,Victoria Padberg | | | | +| Future Directives Associate | 1.1.1 | Expression | | Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe | https://shayne.name | | | +| Lead Implementation Supervisor | 4.9.9 | Overwrite | The ADP card is down, hack the solid state card so we can hack the ADP card! | Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis | http://katlynn.net | | | +| Legacy Assurance Representative | 6.4.9 | Unknown | | Diane Gutkowski,Diane Gutkowski,Diane Gutkowski,Diane Gutkowski,Diane Gutkowski | https://maye.info | | | +| Regional Mobility Designer | 8.5.4 | Url | | | http://brady.net | | | +| Global Communications Administrator | 3.0.6 | Ignored | | | | | | +| Senior Group Designer | 3.0.6 | Url | The AGP pixel is down, hack the neural pixel so we can hack the AGP pixel! | | | | | +| Direct Accountability Producer | 1.8.1 | Url | | | http://justine.net | | | +| Lead Directives Administrator | 5.1.9 | Ignored | Use the haptic GB matrix, then you can generate the haptic matrix! | | | | | +| Senior Identity Specialist | 2.8.9 | Ignored | We need to program the primary THX protocol! | Barbara Osinski,Barbara Osinski,Barbara Osinski,Barbara Osinski,Barbara Osinski,Barbara Osinski,Barbara Osinski,Barbara Osinski,Barbara Osinski | https://kennedy.biz | | | +| District Brand Producer | 9.3.8 | Overwrite | Use the redundant AGP application, then you can generate the redundant application! | Clarence Metz,Clarence Metz,Clarence Metz | | | | +| Product Intranet Assistant | 2.8.1 | Ignored | The THX circuit is down, copy the back-end circuit so we can copy the THX circuit! | | http://lynn.info | | | +| Internal Web Associate | 6.2.5 | Expression | | | https://arvel.name | | | +| Global Data Administrator | 0.8.4 | Unknown | | Frederick Leffler,Frederick Leffler,Frederick Leffler | https://barrett.com | | | +| Investor Configuration Technician | 1.9.1 | Url | We need to copy the primary FTP bus! | Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin | http://malvina.name | | | +| Dynamic Group Agent | 1.7.6 | Ignored | | Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins | | | | +| Internal Division Agent | 2.4.2 | Url | | Gary Von,Gary Von,Gary Von | | | | +| Future Optimization Associate | 4.0.5 | Unknown | | Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel | https://linnie.net | | | +| Future Tactics Producer | 5.8.9 | Url | navigating the pixel won't do anything, we need to parse the back-end IB pixel! | | | | | +| Future Interactions Developer | 1.1.7 | Unknown | If we reboot the matrix, we can get to the CSS matrix through the cross-platform CSS matrix! | | | | | +| Investor Communications Associate | 0.7.2 | Expression | | Arnold Franecki,Arnold Franecki | http://modesto.info | | | +| Investor Assurance Technician | 7.3.8 | Overwrite | | Merle Hirthe | | | | +| Future Directives Planner | 5.9.7 | Ignored | Use the wireless ADP array, then you can input the wireless array! | Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki | | | | +| Principal Factors Producer | 0.8.5 | Unknown | connecting the system won't do anything, we need to override the back-end SQL system! | Devin Nolan | http://toby.info | | | +| Human Marketing Representative | 0.6.1 | Ignored | | Salvador Berge,Salvador Berge,Salvador Berge,Salvador Berge,Salvador Berge,Salvador Berge,Salvador Berge | | | | +| Corporate Implementation Officer | 0.2.6 | Ignored | | | | | | +| Dynamic Research Designer | 5.6.8 | Unknown | If we connect the program, we can get to the SQL program through the digital SQL program! | | | | | +| Investor Interactions Designer | 1.9.4 | Overwrite | | | https://octavia.name | | | +| Future Applications Facilitator | 0.1.5 | Expression | transmitting the program won't do anything, we need to bypass the virtual HTTP program! | | | | | +| Central Applications Planner | 6.6.9 | Overwrite | | Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke | http://ava.org | | | +| Human Web Liaison | 8.1.1 | Unknown | | | https://imogene.org | | | +| Future Applications Engineer | 6.8.5 | Unknown | 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 | | | +| Dynamic Division Specialist | 9.6.4 | Expression | | | https://keenan.net | | | +| Legacy Data Consultant | 5.8.8 | Unknown | Try to connect the JSON pixel, maybe it will connect the primary pixel! | | | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Senior Applications Technician | 7.8.2 | Overwrite | | Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert | | | | +| Global Mobility Associate | 0.6.4 | Expression | We need to hack the haptic XSS program! | | https://brooke.org | | | +| Global Group Planner | 5.4.5 | Ignored | | | | | | +| Product Solutions Manager | 9.5.2 | Overwrite | I'll hack the primary SDD card, that should card the SDD card! | Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach | | | | +| Customer Group Director | 2.5.2 | Expression | You can't index the pixel without copying the redundant XML pixel! | Vera Krajcik,Vera Krajcik,Vera Krajcik,Vera Krajcik | https://eloise.name | | | +| 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 Response Analyst | 9.2.7 | Unknown | | Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata | http://martine.info | | | +| Forward Factors Architect | 6.7.6 | Overwrite | | Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt | | | | +| Principal Intranet Architect | 4.9.3 | Expression | | | | | | +| Central Applications Coordinator | 1.6.8 | Ignored | | | http://curtis.com | | | +| Customer Operations Liaison | 9.0.9 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | | | | +| Forward Division Strategist | 5.7.1 | Expression | You can't reboot the program without transmitting the mobile SMTP program! | Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode | https://esperanza.name | | | +| Direct Security Producer | 9.0.7 | Url | | | http://evert.net | | | +| Chief Operations Orchestrator | 9.1.5 | Ignored | Try to back up the USB application, maybe it will back up the bluetooth application! | | https://madelynn.name | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| District Mobility Administrator | 3.2.3 | Unknown | | Christopher Dietrich,Christopher Dietrich,Christopher Dietrich,Christopher Dietrich | | | | +| Product Metrics Representative | 2.7.9 | Expression | connecting the feed won't do anything, we need to transmit the primary IB feed! | Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson | http://denis.info | | | +| Central Mobility Executive | 5.0.3 | Unknown | | Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling | | | | +| Forward Program Officer | 4.2.4 | Unknown | quantifying the capacitor won't do anything, we need to override the open-source AI capacitor! | Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin | | | | +| Dynamic Integration Assistant | 2.7.5 | Overwrite | I'll back up the 1080p RSS matrix, that should matrix the RSS matrix! | | | | | +| District Intranet Agent | 1.1.6 | Url | You can't calculate the application without synthesizing the primary JBOD application! | | | | | +| District Factors Associate | 0.2.6 | Expression | | Betsy Powlowski | https://cloyd.biz | | | +| Senior Factors Technician | 3.2.5 | Overwrite | You can't input the protocol without copying the auxiliary USB protocol! | Lee Zieme,Lee Zieme,Lee Zieme,Lee Zieme,Lee Zieme | | | | +| Senior Response Developer | 8.5.8 | Ignored | We need to input the open-source SAS feed! | Jackie Abbott,Jackie Abbott,Jackie Abbott,Jackie Abbott,Jackie Abbott,Jackie Abbott,Jackie Abbott,Jackie Abbott | | | | +| Lead Solutions Technician | 1.5.7 | Unknown | | | | | | +| Global Paradigm Producer | 1.8.4 | Overwrite | If we quantify the protocol, we can get to the IB protocol through the auxiliary IB protocol! | | https://london.biz | | | +| Dynamic Brand Agent | 2.9.2 | Expression | quantifying the application won't do anything, we need to hack the haptic RAM application! | Bertha Schultz,Bertha Schultz | https://reese.info | | | +| Corporate Mobility Consultant | 1.9.0 | Expression | | | http://letha.name | | | +| Dynamic Accounts Architect | 9.8.0 | Overwrite | | | | | | +| Forward Web Designer | 0.1.4 | Overwrite | | | https://gerard.net | | | +| National Quality Executive | 4.5.1 | Expression | Use the solid state TCP driver, then you can generate the solid state driver! | | http://rylan.com | | | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_38d07f0bd741668c.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_38d07f0bd741668c.verified.txt new file mode 100644 index 00000000..53d88a69 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_38d07f0bd741668c.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Paige | https://remington.info | +| | | | | | Aletha | https://isobel.info | +| | | | | | Pearline | https://johnathon.info | +| | | | | | Eleanora | http://jaeden.info | +| | | | | | Nikolas | https://daphney.net | +| | | | | | Oceane | http://clifton.com | +| | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | http://marina.com | Myles | http://nikko.name | +| | | | | | Rolando | http://nikko.name | +| | | | | | Pamela | https://aliza.net | +| | | | | | Marcella | http://helga.net | +| | | | | | Alisha | http://alyson.name | +| | | | | | Carmelo | http://michele.name | +| | | | | | Miles | https://freddie.com | +| | | | | | Kade | https://jaunita.biz | +| | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | Abner | http://tavares.info | +| | | | | | Johann | http://andres.net | +| | | | | | Jaquan | http://carey.org | +| | | | | | Arvel | http://mortimer.org | +| | | | | | Alicia | http://paula.com | +| | | | | | Heidi | http://letha.name | +| | | | | | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_38f3f8c0407bd6e5.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_38f3f8c0407bd6e5.verified.txt new file mode 100644 index 00000000..28523e49 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_38f3f8c0407bd6e5.verified.txt @@ -0,0 +1,35 @@ +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Senior Brand Developer | 4.4.1 | Ignored | If we override the system, we can get to the CSS system through the neural CSS system! | http://adelbert.net | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| | | | | | Libby | http://wade.biz | +| | | | | | Leola | https://pietro.info | +| | | | | | Arch | http://hazle.org | +| | | | | | Eldred | http://gabriel.net | +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_391207dbd6b5d2e2.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_391207dbd6b5d2e2.verified.txt new file mode 100644 index 00000000..2896744c --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_391207dbd6b5d2e2.verified.txt @@ -0,0 +1,150 @@ +| -------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | ---------- | --------------------- | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | | | +| Global Implementation Strategist | 5.9.8 | Ignored | | | Colleen Schroeder,Colleen Schroeder | https://enos.info | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| International Optimization Coordinator | 6.5.5 | Ignored | | | Darnell Terry | http://antoinette.org | | | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.biz | +| International Tactics Administrator | 9.9.9 | Url | | | | | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | | | +| Legacy Usability Coordinator | 5.8.8 | Overwrite | Try to calculate the PNG port, maybe it will calculate the back-end port! | | | http://thora.info | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Senior Solutions Strategist | 7.5.0 | 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 | +| Customer Assurance Officer | 0.3.1 | Ignored | I'll navigate the digital CSS sensor, that should sensor the CSS sensor! | | | https://clementine.info | | | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | | | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | | | +| Legacy Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| Corporate Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | | | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| Customer Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| Corporate Accountability Designer | 0.8.0 | Ignored | We need to hack the online FTP application! | | Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn | http://taya.info | Abelardo | http://carolina.name | +| | | | | | | | Lindsey | http://rigoberto.org | +| | | | | | | | Lou | http://darlene.biz | +| | | | | | | | Oliver | https://filomena.com | +| | | | | | | | Vincenzo | https://ulices.biz | +| | | | | | | | Florida | http://jovan.net | +| | | | | | | | Ari | https://chad.com | +| | | | | | | | Yvonne | http://jada.name | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Legacy Interactions Supervisor | 9.7.2 | Ignored | | Try to generate the SAS matrix, maybe it will generate the cross-platform matrix! | Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn | | | | +| Dynamic Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | | | +| Internal Program Designer | 7.2.5 | Ignored | We need to hack the auxiliary COM hard drive! | | | | | | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | http://celestine.info | Clemens | https://abagail.info | +| | | | | | | | Franz | http://prudence.info | +| | | | | | | | Casper | https://alva.com | +| | | | | | | | Mario | http://alexandria.biz | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| Customer Division Manager | 1.3.9 | Ignored | 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! | Rafael Altenwerth,Rafael Altenwerth,Rafael Altenwerth | | | | +| -------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_39b7028fcfc4d269.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_39b7028fcfc4d269.verified.txt new file mode 100644 index 00000000..48f6ca71 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_39b7028fcfc4d269.verified.txt @@ -0,0 +1,145 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Internal Solutions Planner | 1.3.8 | Ignored | | The COM application is down, quantify the auxiliary application so we can quantify the COM application! | | Nyah | http://oliver.com | +| | | | | | | Ettie | http://lonny.net | +| | | | | | | Onie | https://cassie.biz | +| | | | | | | Solon | https://buck.biz | +| | | | | | | Taryn | http://hilton.com | +| | | | | | | Isabel | http://rogers.net | +| | | | | | | Bertrand | http://annetta.org | +| | | | | | | Remington | https://efrain.info | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | +| National Creative Engineer | 4.0.0 | Ignored | You can't parse the alarm without overriding the haptic SMTP alarm! | | | Candida | https://craig.biz | +| | | | | | | Timmothy | https://joanny.biz | +| | | | | | | Alfonzo | http://dorothea.org | +| | | | | | | 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 | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Chief Brand Associate | 7.6.8 | Ignored | | | https://lauriane.com | Devin | https://ramona.info | +| | | | | | | Alice | http://laverne.info | +| | | | | | | Layne | https://brooks.name | +| | | | | | | Kaitlyn | http://serenity.biz | +| Regional Mobility Manager | 2.7.0 | Ignored | | | http://gianni.info | Alvina | http://elouise.name | +| | | | | | | Ron | http://brown.org | +| | | | | | | Cordia | http://ericka.name | +| | | | | | | Eugene | http://rashad.info | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Forward Directives Supervisor | 8.7.6 | Ignored | | The SSL microchip is down, hack the optical microchip so we can hack the SSL microchip! | http://shaun.org | Jadon | https://amelia.biz | +| | | | | | | Toni | http://angie.name | +| | | | | | | Ardella | http://melissa.net | +| | | | | | | Sandra | http://pearline.org | +| | | | | | | Noble | https://dusty.net | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Legacy Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_39c8a9d395d05630.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_39c8a9d395d05630.verified.txt new file mode 100644 index 00000000..3af29b39 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_39c8a9d395d05630.verified.txt @@ -0,0 +1,26 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| District Creative Designer | 1.4.6 | Url | We need to program the haptic IB panel! | | | | http://cameron.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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Corporate Intranet Associate | 7.5.1 | Overwrite | | 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! | | | | | +| Chief Functionality Planner | 5.1.2 | Unknown | | I'll calculate the 1080p HDD system, that should system the HDD system! | | Matt Mills,Matt Mills | http://myrtice.com | | | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Configuration Liaison | 1.8.9 | Expression | | connecting the transmitter won't do anything, we need to program the cross-platform XSS transmitter! | | | http://esther.biz | | | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_39c9085ee18b6b2d.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_39c9085ee18b6b2d.verified.txt new file mode 100644 index 00000000..53d88a69 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_39c9085ee18b6b2d.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Paige | https://remington.info | +| | | | | | Aletha | https://isobel.info | +| | | | | | Pearline | https://johnathon.info | +| | | | | | Eleanora | http://jaeden.info | +| | | | | | Nikolas | https://daphney.net | +| | | | | | Oceane | http://clifton.com | +| | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | http://marina.com | Myles | http://nikko.name | +| | | | | | Rolando | http://nikko.name | +| | | | | | Pamela | https://aliza.net | +| | | | | | Marcella | http://helga.net | +| | | | | | Alisha | http://alyson.name | +| | | | | | Carmelo | http://michele.name | +| | | | | | Miles | https://freddie.com | +| | | | | | Kade | https://jaunita.biz | +| | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | Abner | http://tavares.info | +| | | | | | Johann | http://andres.net | +| | | | | | Jaquan | http://carey.org | +| | | | | | Arvel | http://mortimer.org | +| | | | | | Alicia | http://paula.com | +| | | | | | Heidi | http://letha.name | +| | | | | | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_39e72b3f2a5747ee.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_39e72b3f2a5747ee.verified.txt new file mode 100644 index 00000000..43846a6b --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_39e72b3f2a5747ee.verified.txt @@ -0,0 +1,8 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------- | -------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Error | Error 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 | Alyson | https://carmelo.biz | +| | | | | | | Michele | https://miles.net | +| | | | | | | Freddie | http://kade.net | +| | | | | | | Jaunita | http://marcelina.biz | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------- | -------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_39fc37f46062c5b3.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_39fc37f46062c5b3.verified.txt new file mode 100644 index 00000000..7ffec9a2 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_39fc37f46062c5b3.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | ------- | -------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | ------- | -------------------- | +| District Creative Designer | 1.4.6 | Url | We need to program the haptic IB panel! | | | | http://cameron.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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Corporate Intranet Associate | 7.5.1 | Overwrite | | 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! | | | | | +| Lead Configuration Liaison | 1.8.9 | Expression | | connecting the transmitter won't do anything, we need to program the cross-platform XSS transmitter! | | | http://esther.biz | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | | | +| Chief Functionality Planner | 5.1.2 | Unknown | | I'll calculate the 1080p HDD system, that should system the HDD system! | | Matt Mills,Matt Mills | http://myrtice.com | | | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | ------- | -------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3a42c88d9eed24d5.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3a42c88d9eed24d5.verified.txt new file mode 100644 index 00000000..f85bf1c4 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3a42c88d9eed24d5.verified.txt @@ -0,0 +1,130 @@ +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| Corporate Accountability Designer | 0.8.0 | Ignored | We need to hack the online FTP application! | | Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn | http://taya.info | Abelardo | http://carolina.name | +| | | | | | | | Lindsey | http://rigoberto.org | +| | | | | | | | Lou | http://darlene.biz | +| | | | | | | | Oliver | https://filomena.com | +| | | | | | | | Vincenzo | https://ulices.biz | +| | | | | | | | Florida | http://jovan.net | +| | | | | | | | Ari | https://chad.com | +| | | | | | | | Yvonne | http://jada.name | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Dynamic Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.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 | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Senior Solutions Strategist | 7.5.0 | 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 Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Customer Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | http://celestine.info | Clemens | https://abagail.info | +| | | | | | | | Franz | http://prudence.info | +| | | | | | | | Casper | https://alva.com | +| | | | | | | | Mario | http://alexandria.biz | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3a67b6dff671a281.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3a67b6dff671a281.verified.txt new file mode 100644 index 00000000..4d142ccf --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3a67b6dff671a281.verified.txt @@ -0,0 +1,28 @@ +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| Dynamic Mobility Technician | 6.0.2 | Expression | | | https://keeley.net | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| 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 | | | +| Customer Operations Liaison | 9.0.9 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | | | | +| Investor Interactions Designer | 1.9.4 | Overwrite | | | https://octavia.name | | | +| Dynamic Integration Assistant | 2.1.6 | Unknown | | | https://gerson.info | | | +| District Mobility Administrator | 3.2.3 | Unknown | | Christopher Dietrich,Christopher Dietrich,Christopher Dietrich,Christopher Dietrich | | | | +| Future Optimization Associate | 4.0.5 | Unknown | | Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel | https://linnie.net | | | +| Legacy Response Analyst | 9.2.7 | Unknown | | Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata | http://martine.info | | | +| Dynamic Applications Director | 5.1.4 | Unknown | | Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel | | | | +| Future Tactics Producer | 5.8.9 | Url | navigating the pixel won't do anything, we need to parse the back-end IB pixel! | | | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Forward Division Strategist | 5.7.1 | Expression | You can't reboot the program without transmitting the mobile SMTP program! | Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode | https://esperanza.name | | | +| Regional Integration Consultant | 5.3.8 | Expression | | | http://michael.name | | | +| Human Implementation Producer | 0.9.1 | Url | | | | | | +| Principal Factors Producer | 0.8.5 | Unknown | connecting the system won't do anything, we need to override the back-end SQL system! | Devin Nolan | http://toby.info | | | +| Global Integration Assistant | 5.0.1 | Unknown | | | http://demarco.com | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3b756de17fc3690c.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3b756de17fc3690c.verified.txt new file mode 100644 index 00000000..139e24a0 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3b756de17fc3690c.verified.txt @@ -0,0 +1,134 @@ +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| | | | | | Clemmie | http://shanny.net | +| | | | | | Hildegard | http://conner.name | +| | | | | | Isabella | https://kennith.com | +| | | | | | Johanna | https://ara.org | +| | | | | | Demarco | https://rae.biz | +| | | | | | Viviane | http://christine.info | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Legacy Creative Liaison | 0.4.6 | Overwrite | | | Mervin | http://celestine.info | +| | | | | | Amalia | https://shanelle.info | +| | | | | | Sheila | http://darrell.info | +| | | | | | Alec | https://candice.biz | +| | | | | | Linnea | http://everardo.info | +| | | | | | Daryl | https://jerrod.com | +| | | | | | Laila | http://caleigh.net | +| | | | | | Adolfo | http://daisha.biz | +| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| | | | | | Monserrat | http://katrine.name | +| | | | | | Abel | https://geovany.com | +| | | | | | Diana | http://eula.name | +| | | | | | Raphael | https://zackery.info | +| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| | | | | | Caleigh | https://albin.info | +| | | | | | Flavie | http://lavonne.biz | +| | | | | | Kaitlyn | http://osborne.org | +| | | | | | Joesph | https://michael.name | +| | | | | | Kali | http://shyanne.net | +| | | | | | Austin | https://marty.net | +| | | | | | Theresia | http://kristin.net | +| | | | | | Lester | https://paige.com | +| National Accounts Liaison | 7.2.6 | Overwrite | | | Cedrick | https://zachariah.net | +| | | | | | Marcelle | https://adah.org | +| | | | | | Barney | http://erica.org | +| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| | | | | | Jody | http://jakob.org | +| | | | | | Anjali | https://valentin.info | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| | | | | | Earnestine | http://nathanial.biz | +| | | | | | Connor | https://augustus.net | +| | | | | | Araceli | http://hailey.biz | +| | | | | | Janessa | https://craig.com | +| | | | | | Erica | http://kristin.org | +| | | | | | Alek | http://shany.biz | +| Dynamic Marketing Consultant | 2.4.9 | Overwrite | | | Angie | https://ardella.info | +| | | | | | Melissa | https://sandra.biz | +| | | | | | Pearline | https://noble.net | +| | | | | | Dusty | https://verlie.com | +| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| | | | | | Ursula | https://werner.net | +| | | | | | Linwood | http://rebekah.org | +| | | | | | Cleve | https://claudie.net | +| | | | | | Theodora | http://faye.info | +| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| | | | | | Braeden | https://sunny.name | +| | | | | | Leslie | http://bettie.info | +| | | | | | Edmund | http://sadie.info | +| | | | | | Horacio | https://loraine.name | +| Global Response Associate | 1.9.8 | Overwrite | The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth! | | Sandra | http://antonina.com | +| | | | | | Willow | https://jason.org | +| | | | | | Orland | http://rigoberto.com | +| | | | | | Laney | http://eryn.org | +| | | | | | Amari | http://viviane.net | +| | | | | | Kelley | http://doris.net | +| | | | | | Kennedy | https://milo.net | +| Senior Brand Developer | 4.4.1 | Ignored | If we override the system, we can get to the CSS system through the neural CSS system! | http://adelbert.net | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| | | | | | Libby | http://wade.biz | +| | | | | | Leola | https://pietro.info | +| | | | | | Arch | http://hazle.org | +| | | | | | Eldred | http://gabriel.net | +| Direct Accounts Associate | 3.2.6 | Overwrite | | https://vesta.com | Buck | http://taryn.com | +| | | | | | Hilton | http://isabel.com | +| | | | | | Rogers | https://bertrand.biz | +| | | | | | Annetta | https://remington.org | +| | | | | | Efrain | http://davion.org | +| | | | | | Merle | https://abigayle.org | +| | | | | | Jerod | https://vicenta.info | +| | | | | | Kayli | https://shaun.net | +| | | | | | Antwan | https://hazel.net | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| | | | | | Princess | http://haylie.biz | +| | | | | | Jordane | https://gregorio.com | +| | | | | | Opal | http://abbie.org | +| | | | | | Pablo | https://maxime.biz | +| | | | | | Shaun | https://concepcion.net | +| | | | | | Moises | http://rupert.info | +| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| | | | | | Tyson | https://bonita.org | +| | | | | | Jazlyn | http://madonna.net | +| | | | | | Deangelo | https://jess.info | +| | | | | | Alvah | https://hans.net | +| | | | | | Payton | http://shanna.name | +| | | | | | Providenci | https://tyra.org | +| | | | | | Flo | http://isidro.net | +| | | | | | Dawn | https://anika.org | +| | | | | | Silas | http://zane.name | +| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| | | | | | Clarissa | https://audreanne.name | +| | | | | | Vida | https://theresia.biz | +| | | | | | Ransom | http://isom.com | +| | | | | | Anastasia | http://kamryn.info | +| | | | | | Marlene | https://cyril.name | +| | | | | | Zetta | http://pete.org | +| | | | | | Candida | https://craig.biz | +| | | | | | Timmothy | https://joanny.biz | +| | | | | | Alfonzo | http://dorothea.org | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3b8431a5bdf5858e.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3b8431a5bdf5858e.verified.txt new file mode 100644 index 00000000..ad252933 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3b8431a5bdf5858e.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3b86f2eddd08a332.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3b86f2eddd08a332.verified.txt new file mode 100644 index 00000000..2735804d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3b86f2eddd08a332.verified.txt @@ -0,0 +1,22 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3ba07775a8169ce2.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3ba07775a8169ce2.verified.txt new file mode 100644 index 00000000..b9ec2dc3 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3ba07775a8169ce2.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3bb3e01d80285d10.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3bb3e01d80285d10.verified.txt new file mode 100644 index 00000000..eb98be68 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3bb3e01d80285d10.verified.txt @@ -0,0 +1,60 @@ +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | | | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | | | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | | | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | | | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3bfb04e8bb622282.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3bfb04e8bb622282.verified.txt new file mode 100644 index 00000000..0dc93714 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3bfb04e8bb622282.verified.txt @@ -0,0 +1,66 @@ +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | | | +| Regional Directives Supervisor | 4.9.8 | Ignored | Try to reboot the THX hard drive, maybe it will reboot the open-source hard drive! | Use the primary GB driver, then you can generate the primary driver! | https://malcolm.net | | | +| Dynamic Optimization Director | 3.4.6 | Ignored | The PNG protocol is down, index the digital protocol so we can index the PNG protocol! | I'll transmit the online SSL feed, that should feed the SSL feed! | https://maximilian.org | | | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | | | +| Investor Intranet Producer | 5.4.1 | Ignored | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | http://hyman.org | | | +| National Directives Analyst | 8.2.7 | Ignored | We need to compress the primary GB array! | | | | | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | | | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | | | +| International Data Representative | 3.5.7 | Ignored | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | http://dakota.com | | | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3c6227dc021dca78.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3c6227dc021dca78.verified.txt new file mode 100644 index 00000000..cd2e5a5d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3c6227dc021dca78.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3c69428ccc5dbfc8.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3c69428ccc5dbfc8.verified.txt new file mode 100644 index 00000000..9e714675 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3c69428ccc5dbfc8.verified.txt @@ -0,0 +1,8 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | ------- | -------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | ------- | -------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3c72743de174cf35.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3c72743de174cf35.verified.txt new file mode 100644 index 00000000..bcebc7ef --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3c72743de174cf35.verified.txt @@ -0,0 +1,105 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Internal Branding Executive | 2.0.9 | Overwrite | | The SAS sensor is down, input the auxiliary sensor so we can input the SAS sensor! | You can't bypass the application without programming the solid state COM application! | https://efrain.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 | +| Legacy Creative Liaison | 0.4.6 | Expression | | The SMS system is down, back up the open-source system so we can back up the SMS system! | I'll connect the optical FTP program, that should program the FTP program! | | Candice | http://linnea.com | +| | | | | | | | Everardo | http://daryl.net | +| | | | | | | | Jerrod | http://laila.com | +| | | | | | | | Caleigh | https://adolfo.com | +| | | | | | | | Daisha | http://justine.biz | +| | | | | | | | Americo | http://tessie.org | +| | | | | | | | Howard | https://luis.info | +| Regional Paradigm Assistant | 9.8.0 | Url | | If we input the transmitter, we can get to the HDD transmitter through the bluetooth HDD transmitter! | | | Jordan | https://kathryne.name | +| | | | | | | | Mayra | http://lance.name | +| | | | | | | | Jimmie | https://lorine.org | +| | | | | | | | Rebeka | https://malika.org | +| | | | | | | | Trinity | http://fritz.info | +| | | | | | | | Neha | https://marianne.name | +| | | | | | | | Colin | https://billie.biz | +| | | | | | | | Brielle | https://brennon.name | +| | | | | | | | Myriam | https://rosemary.name | +| Global Optimization Architect | 4.8.0 | Expression | | 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://gaylord.name | Vida | https://theresia.biz | +| | | | | | | | Ransom | http://isom.com | +| | | | | | | | Anastasia | http://kamryn.info | +| | | | | | | | Marlene | https://cyril.name | +| | | | | | | | Zetta | http://pete.org | +| | | | | | | | Candida | https://craig.biz | +| | | | | | | | Timmothy | https://joanny.biz | +| Lead Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Lead Integration Engineer | 8.7.4 | Unknown | | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | http://jackeline.biz | Reanna | http://buck.net | +| | | | | | | | Christine | http://demarco.name | +| | | | | | | | Marge | http://astrid.net | +| | | | | | | | Charlene | http://rod.net | +| Dynamic Data Director | 8.6.8 | Overwrite | | | We need to back up the primary SMTP circuit! | https://timothy.info | Kirsten | http://madisyn.com | +| | | | | | | | Murray | https://destinee.com | +| | | | | | | | Emanuel | https://keely.info | +| | | | | | | | Obie | https://caleigh.net | +| | | | | | | | Albin | http://flavie.com | +| | | | | | | | Lavonne | http://kaitlyn.com | +| | | | | | | | Osborne | https://joesph.name | +| | | | | | | | Michael | https://kali.com | +| Investor Usability Producer | 9.7.6 | Url | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | Jett | https://randal.biz | +| | | | | | | | Leif | http://chaz.name | +| | | | | | | | Tristian | http://susie.com | +| | | | | | | | Carmelo | https://kariane.com | +| | | | | | | | Sofia | http://daphnee.name | +| | | | | | | | Nedra | http://orland.info | +| | | | | | | | Hilton | http://shany.info | +| Corporate Tactics Analyst | 3.0.8 | Overwrite | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | Use the virtual RAM monitor, then you can override the virtual monitor! | | | Hildegard | http://conner.name | +| | | | | | | | 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 | +| | | | | | | | Irving | https://sydnie.org | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| Investor Creative Architect | 4.5.6 | Overwrite | | The PCI microchip is down, input the cross-platform microchip so we can input the PCI microchip! | If we quantify the transmitter, we can get to the XML transmitter through the optical XML transmitter! | | Selmer | https://jairo.info | +| | | | | | | | Juanita | http://holly.name | +| | | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | | Adalberto | https://sister.biz | +| | | | | | | | Gerald | https://vidal.com | +| | | | | | | | Lucio | http://clemmie.info | +| Dynamic Program Associate | 5.9.7 | Expression | | | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Suzanne | http://ima.name | +| | | | | | | | Earnestine | http://nathanial.biz | +| | | | | | | | Connor | https://augustus.net | +| | | | | | | | Araceli | http://hailey.biz | +| | | | | | | | Janessa | https://craig.com | +| | | | | | | | Erica | http://kristin.org | +| | | | | | | | Alek | http://shany.biz | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | Edmund | http://sadie.info | +| | | | | | | | Horacio | https://loraine.name | +| | | | | | | | Sandra | https://emil.info | +| | | | | | | | Dayana | https://leila.info | +| | | | | | | | Micah | http://darien.com | +| | | | | | | | Ethel | http://shakira.net | +| Human Accounts Executive | 7.6.7 | Unknown | Use the auxiliary PNG interface, then you can generate the auxiliary interface! | | You can't connect the interface without backing up the optical SMTP interface! | http://kristin.net | Seamus | http://maybell.info | +| | | | | | | | Monserrat | http://katrine.name | +| | | | | | | | Abel | https://geovany.com | +| | | | | | | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3cd7c9a83af00fb2.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3cd7c9a83af00fb2.verified.txt new file mode 100644 index 00000000..e65ed6e4 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3cd7c9a83af00fb2.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3d6aae7927131584.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3d6aae7927131584.verified.txt new file mode 100644 index 00000000..ad252933 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3d6aae7927131584.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3d90fda95864f90e.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3d90fda95864f90e.verified.txt new file mode 100644 index 00000000..a5777697 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3d90fda95864f90e.verified.txt @@ -0,0 +1,12 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Paige | https://remington.info | +| | | | | Aletha | https://isobel.info | +| | | | | Pearline | https://johnathon.info | +| | | | | Eleanora | http://jaeden.info | +| | | | | Nikolas | https://daphney.net | +| | | | | Oceane | http://clifton.com | +| | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3dc9e15200eae561.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3dc9e15200eae561.verified.txt new file mode 100644 index 00000000..84add2a0 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3dc9e15200eae561.verified.txt @@ -0,0 +1,39 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3e6183fda94d251a.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3e6183fda94d251a.verified.txt new file mode 100644 index 00000000..c40b87eb --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_3e6183fda94d251a.verified.txt @@ -0,0 +1,130 @@ +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| Legacy Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Legacy Usability Coordinator | 5.8.8 | Overwrite | Try to calculate the PNG port, maybe it will calculate the back-end port! | | | http://thora.info | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Senior Solutions Strategist | 7.5.0 | 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 Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| Corporate Accountability Designer | 0.8.0 | Ignored | We need to hack the online FTP application! | | Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn | http://taya.info | Abelardo | http://carolina.name | +| | | | | | | | Lindsey | http://rigoberto.org | +| | | | | | | | Lou | http://darlene.biz | +| | | | | | | | Oliver | https://filomena.com | +| | | | | | | | Vincenzo | https://ulices.biz | +| | | | | | | | Florida | http://jovan.net | +| | | | | | | | Ari | https://chad.com | +| | | | | | | | Yvonne | http://jada.name | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.biz | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Corporate Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | http://celestine.info | Clemens | https://abagail.info | +| | | | | | | | Franz | http://prudence.info | +| | | | | | | | Casper | https://alva.com | +| | | | | | | | Mario | http://alexandria.biz | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_402ab29c3e87a681.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_402ab29c3e87a681.verified.txt new file mode 100644 index 00000000..b9ec2dc3 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_402ab29c3e87a681.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_403dd373152795e1.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_403dd373152795e1.verified.txt new file mode 100644 index 00000000..dc1686d4 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_403dd373152795e1.verified.txt @@ -0,0 +1,145 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Internal Solutions Planner | 1.3.8 | Ignored | | The COM application is down, quantify the auxiliary application so we can quantify the COM application! | | Nyah | http://oliver.com | +| | | | | | | Ettie | http://lonny.net | +| | | | | | | Onie | https://cassie.biz | +| | | | | | | Solon | https://buck.biz | +| | | | | | | Taryn | http://hilton.com | +| | | | | | | Isabel | http://rogers.net | +| | | | | | | Bertrand | http://annetta.org | +| | | | | | | Remington | https://efrain.info | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | +| National Creative Engineer | 4.0.0 | Ignored | You can't parse the alarm without overriding the haptic SMTP alarm! | | | Candida | https://craig.biz | +| | | | | | | Timmothy | https://joanny.biz | +| | | | | | | Alfonzo | http://dorothea.org | +| | | | | | | 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 | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Chief Brand Associate | 7.6.8 | Ignored | | | https://lauriane.com | Devin | https://ramona.info | +| | | | | | | Alice | http://laverne.info | +| | | | | | | Layne | https://brooks.name | +| | | | | | | Kaitlyn | http://serenity.biz | +| Regional Mobility Manager | 2.7.0 | Ignored | | | http://gianni.info | Alvina | http://elouise.name | +| | | | | | | Ron | http://brown.org | +| | | | | | | Cordia | http://ericka.name | +| | | | | | | Eugene | http://rashad.info | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Forward Directives Supervisor | 8.7.6 | Ignored | | The SSL microchip is down, hack the optical microchip so we can hack the SSL microchip! | http://shaun.org | Jadon | https://amelia.biz | +| | | | | | | Toni | http://angie.name | +| | | | | | | Ardella | http://melissa.net | +| | | | | | | Sandra | http://pearline.org | +| | | | | | | Noble | https://dusty.net | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Legacy Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_412db18ec6f6f621.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_412db18ec6f6f621.verified.txt new file mode 100644 index 00000000..e1b6c933 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_412db18ec6f6f621.verified.txt @@ -0,0 +1,51 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | -------- | ---------------------- | +| Customer Metrics Analyst | 6.7.1 | Unknown | | | | | | | | +| 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Future Accounts Designer | 5.1.9 | Expression | We need to navigate the wireless SAS pixel! | | | | | | | +| Internal Factors Facilitator | 2.6.3 | Url | | Try to copy the PNG sensor, maybe it will copy the 1080p sensor! | | Mable Kris,Mable Kris,Mable Kris,Mable Kris,Mable Kris | http://melba.name | | | +| Global Usability Manager | 9.1.0 | Overwrite | | Try to back up the THX interface, maybe it will back up the auxiliary interface! | | | http://vella.com | | | +| Global Configuration Consultant | 5.9.5 | Expression | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | bypassing the bus won't do anything, we need to calculate the virtual GB bus! | | Guadalupe Littel,Guadalupe Littel,Guadalupe Littel | | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| Regional Factors Designer | 7.4.1 | Url | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | Use the haptic RSS port, then you can transmit the haptic port! | Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus | | | | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Corporate Optimization Agent | 2.7.0 | Ignored | | | | | http://bryce.com | | | +| District Creative Designer | 1.4.6 | Url | We need to program the haptic IB panel! | | | | http://cameron.info | | | +| Global Markets Administrator | 8.6.8 | Expression | 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! | The SSL application is down, reboot the bluetooth application so we can reboot the SSL application! | Julius Bernhard,Julius Bernhard,Julius Bernhard,Julius Bernhard | https://lois.biz | | | +| Central Tactics Director | 4.6.7 | Url | backing up the system won't do anything, we need to parse the neural CSS system! | We need to transmit the back-end RSS transmitter! | | Doyle Osinski,Doyle Osinski,Doyle Osinski,Doyle Osinski | https://valentina.net | | | +| Dynamic Configuration Assistant | 3.2.1 | Expression | | 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 Security Orchestrator | 3.5.6 | Expression | Try to copy the HDD array, maybe it will copy the back-end array! | 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! | Roderick Koelpin,Roderick Koelpin,Roderick Koelpin | | | | +| Customer Interactions Representative | 0.8.8 | Url | We need to quantify the digital SSL array! | | | | http://heather.name | | | +| Investor Interactions Designer | 1.9.4 | Url | | | parsing the card won't do anything, we need to synthesize the online SQL card! | Stella Barton,Stella Barton | https://octavia.name | | | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| Principal Assurance Representative | 3.8.2 | Ignored | | | | Patsy Erdman,Patsy Erdman,Patsy Erdman,Patsy Erdman | | Jadon | https://amelia.biz | +| | | | | | | | | Toni | http://angie.name | +| | | | | | | | | Ardella | http://melissa.net | +| | | | | | | | | Sandra | http://pearline.org | +| | | | | | | | | Noble | https://dusty.net | +| Lead Configuration Liaison | 1.8.9 | Expression | | connecting the transmitter won't do anything, we need to program the cross-platform XSS transmitter! | | | http://esther.biz | | | +| Dynamic Factors Producer | 5.7.1 | Url | | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | | | | | +| Human Accountability Developer | 6.9.0 | Unknown | If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit! | | | | | | | +| Chief Functionality Planner | 5.1.2 | Unknown | | I'll calculate the 1080p HDD system, that should system the HDD system! | | Matt Mills,Matt Mills | http://myrtice.com | | | +| Corporate Intranet Associate | 7.5.1 | Overwrite | | 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! | | | | | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_412f578e721e8c29.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_412f578e721e8c29.verified.txt new file mode 100644 index 00000000..08db0e7f --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_412f578e721e8c29.verified.txt @@ -0,0 +1,32 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Lead Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_414aa57ab74b6940.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_414aa57ab74b6940.verified.txt new file mode 100644 index 00000000..dd6a2db8 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_414aa57ab74b6940.verified.txt @@ -0,0 +1,111 @@ +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------- | ---------- | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | Unknown | 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 Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Dynamic Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.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 | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Senior Solutions Strategist | 7.5.0 | 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 Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Customer Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_420913f755fede13.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_420913f755fede13.verified.txt new file mode 100644 index 00000000..d876b4ca --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_420913f755fede13.verified.txt @@ -0,0 +1,43 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Dynamic Integration Assistant | 2.1.6 | Unknown | | | https://gerson.info | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| District Mobility Administrator | 3.2.3 | Unknown | | Christopher Dietrich,Christopher Dietrich,Christopher Dietrich,Christopher Dietrich | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_421d0867ba5a53f4.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_421d0867ba5a53f4.verified.txt new file mode 100644 index 00000000..3ef4b4f4 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_421d0867ba5a53f4.verified.txt @@ -0,0 +1,127 @@ +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| International Research Architect | 3.7.4 | Ignored | | Try to quantify the USB application, maybe it will quantify the mobile application! | If we index the pixel, we can get to the AI pixel through the wireless AI pixel! | | | Madisen | http://raegan.biz | +| | | | | | | | | Cathy | http://giovanna.info | +| | | | | | | | | Ike | https://jerome.biz | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| Global Mobility Facilitator | 8.5.9 | Url | | We need to parse the primary PCI protocol! | | Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch | https://itzel.info | Mitchel | http://carleton.name | +| | | | | | | | | Madalyn | http://narciso.net | +| | | | | | | | | Mia | http://nicklaus.net | +| | | | | | | | | Abelardo | http://carolina.name | +| National Accountability Producer | 6.9.7 | Unknown | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | https://linwood.biz | Travon | https://dedrick.name | +| | | | | | | | | Elissa | http://kaci.org | +| | | | | | | | | Brandi | https://aniyah.com | +| | | | | | | | | Tyson | https://bonita.org | +| | | | | | | | | Jazlyn | http://madonna.net | +| | | | | | | | | Deangelo | https://jess.info | +| | | | | | | | | Alvah | https://hans.net | +| Chief Solutions Administrator | 0.4.1 | Unknown | | 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 | Shaun | https://antwan.org | +| | | | | | | | | Hazel | https://forrest.net | +| | | | | | | | | Brianne | https://dorothea.name | +| | | | | | | | | Don | http://torey.com | +| | | | | | | | | Cedrick | https://zachariah.net | +| | | | | | | | | Marcelle | https://adah.org | +| | | | | | | | | Barney | http://erica.org | +| | | | | | | | | Jordi | https://alysha.com | +| | | | | | | | | Kristina | https://pattie.info | +| | | | | | | | | Cory | http://kailey.com | +| International Intranet Planner | 1.3.4 | Expression | 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 | Ahmad | https://lupe.com | +| | | | | | | | | Randi | https://jaiden.biz | +| | | | | | | | | Patience | https://marlene.name | +| | | | | | | | | Lenna | https://franco.name | +| | | | | | | | | Kyleigh | https://tevin.name | +| | | | | | | | | Sallie | https://jordane.name | +| | | | | | | | | Willy | https://daija.info | +| | | | | | | | | Jannie | https://retta.net | +| | | | | | | | | Lottie | http://yasmine.com | +| | | | | | | | | Delia | http://khalil.com | +| Investor Division Assistant | 9.6.2 | Url | | I'll parse the primary PCI matrix, that should matrix the PCI matrix! | | | | Nya | http://sunny.biz | +| | | | | | | | | Arlo | https://cordia.info | +| | | | | | | | | Linnie | https://marcos.name | +| | | | | | | | | Luella | http://frederic.name | +| | | | | | | | | Lucinda | https://dion.name | +| | | | | | | | | Jayson | https://ryleigh.net | +| | | | | | | | | Mervin | https://lorenza.net | +| Investor Operations Director | 5.6.0 | Expression | Try to input the AI microchip, maybe it will input the 1080p microchip! | | If we synthesize the sensor, we can get to the AI sensor through the redundant AI sensor! | | https://alene.info | Elouise | https://ron.com | +| | | | | | | | | Brown | https://cordia.com | +| | | | | | | | | Ericka | https://eugene.com | +| | | | | | | | | Rashad | http://thomas.com | +| | | | | | | | | Antonia | https://marcelle.org | +| Dynamic Group Associate | 6.6.1 | Ignored | We need to input the open-source SMTP bus! | | | | http://kian.name | Burley | http://lemuel.com | +| | | | | | | | | Brenden | http://agnes.net | +| | | | | | | | | Urban | https://micheal.name | +| | | | | | | | | Ida | https://murray.org | +| | | | | | | | | Samanta | http://assunta.biz | +| | | | | | | | | Florencio | http://bradford.info | +| | | | | | | | | Marcella | http://ray.net | +| | | | | | | | | Gunnar | https://elissa.net | +| | | | | | | | | Maud | https://edgar.name | +| | | | | | | | | Angelina | https://adonis.biz | +| Principal Assurance Representative | 3.8.2 | Ignored | | | | Patsy Erdman,Patsy Erdman,Patsy Erdman,Patsy Erdman | | Jadon | https://amelia.biz | +| | | | | | | | | Toni | http://angie.name | +| | | | | | | | | Ardella | http://melissa.net | +| | | | | | | | | Sandra | http://pearline.org | +| | | | | | | | | Noble | https://dusty.net | +| Corporate Marketing Strategist | 3.8.5 | Ignored | | | Use the redundant JSON application, then you can program the redundant application! | Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch | | Naomi | http://mckenna.net | +| | | | | | | | | Jalyn | https://katharina.name | +| | | | | | | | | Kane | http://beulah.biz | +| | | | | | | | | Eleanora | http://birdie.net | +| | | | | | | | | Alvah | http://keanu.net | +| Product Interactions Planner | 7.4.0 | Expression | Try to navigate the PCI matrix, maybe it will navigate the haptic matrix! | | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | http://bertha.net | Rey | https://connie.info | +| | | | | | | | | Hollie | http://rico.name | +| | | | | | | | | Marshall | http://pierce.org | +| | | | | | | | | 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 | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Forward Tactics Agent | 6.8.8 | Url | | We need to back up the primary SMTP circuit! | The COM bandwidth is down, input the auxiliary bandwidth so we can input the COM bandwidth! | Jon Schulist,Jon Schulist | https://flo.info | Diana | http://eula.name | +| | | | | | | | | Raphael | https://zackery.info | +| | | | | | | | | Nettie | https://brayan.com | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | Julius Abbott | http://celestine.info | Ettie | http://lonny.net | +| | | | | | | | | Onie | https://cassie.biz | +| | | | | | | | | Solon | https://buck.biz | +| Dynamic Solutions Assistant | 5.6.4 | Ignored | navigating the alarm won't do anything, we need to copy the 1080p AGP alarm! | | | Craig Halvorson,Craig Halvorson,Craig Halvorson,Craig Halvorson | http://isabell.info | Tess | http://kailyn.info | +| | | | | | | | | Eileen | http://manley.name | +| | | | | | | | | Conor | https://glenna.name | +| | | | | | | | | Sylvester | http://gaylord.biz | +| | | | | | | | | Maxime | https://tom.com | +| Global Mobility Technician | 8.6.3 | Unknown | | We need to input the haptic XML port! | | Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante | | Lonie | http://wilburn.org | +| | | | | | | | | Concepcion | http://ed.org | +| | | | | | | | | Amanda | https://sophie.net | +| | | | | | | | | Claudine | http://ofelia.biz | +| | | | | | | | | Petra | http://clare.name | +| | | | | | | | | Ozella | https://verla.name | +| | | | | | | | | Denis | http://pete.com | +| Product Data Liaison | 7.8.8 | Unknown | Try to calculate the GB card, maybe it will calculate the wireless card! | | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | | | Lewis | https://alisa.com | +| | | | | | | | | Delores | https://layne.name | +| | | | | | | | | Delphine | https://katlynn.org | +| | | | | | | | | Meredith | https://johanna.info | +| | | | | | | | | Jacklyn | https://kadin.com | +| | | | | | | | | Hardy | https://donna.info | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_42bd75a6f98b53a6.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_42bd75a6f98b53a6.verified.txt new file mode 100644 index 00000000..67c89094 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_42bd75a6f98b53a6.verified.txt @@ -0,0 +1,32 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_43614b4c3d73d64c.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_43614b4c3d73d64c.verified.txt new file mode 100644 index 00000000..17c77dd9 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_43614b4c3d73d64c.verified.txt @@ -0,0 +1,179 @@ +| ------------------------------------ | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| International Marketing Officer | 2.2.1 | Overwrite | If we connect the driver, we can get to the XSS driver through the online XSS driver! | | | | https://weldon.info | | | +| Internal Program Engineer | 2.9.3 | Expression | I'll input the neural SQL application, that should application the SQL application! | You can't generate the hard drive without transmitting the haptic RAM hard drive! | I'll bypass the optical AGP feed, that should feed the AGP feed! | | http://cleta.org | | | +| Dynamic Configuration Specialist | 3.6.8 | Overwrite | | Use the haptic AGP protocol, then you can program the haptic protocol! | | Meredith Sawayn,Meredith Sawayn,Meredith Sawayn,Meredith Sawayn,Meredith Sawayn,Meredith Sawayn | | | | +| Corporate Intranet Agent | 9.1.8 | Url | We need to compress the 1080p GB circuit! | | The PCI driver is down, reboot the haptic driver so we can reboot the PCI driver! | Essie Hamill,Essie Hamill | http://precious.name | | | +| Central Factors Supervisor | 0.8.3 | Overwrite | If we transmit the monitor, we can get to the HTTP monitor through the digital HTTP monitor! | Use the optical IB transmitter, then you can navigate the optical transmitter! | If we back up the firewall, we can get to the TCP firewall through the multi-byte TCP firewall! | Kathleen Blick,Kathleen Blick,Kathleen Blick,Kathleen Blick,Kathleen Blick | http://clement.name | | | +| Forward Paradigm Developer | 7.9.7 | Overwrite | The GB interface is down, input the auxiliary interface so we can input the GB interface! | The XSS transmitter is down, back up the online transmitter so we can back up the XSS transmitter! | | Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter | http://maureen.name | | | +| Central Functionality Technician | 3.9.3 | Url | | | The AI microchip is down, override the multi-byte microchip so we can override the AI microchip! | | | | | +| Lead Configuration Liaison | 1.8.9 | Expression | | connecting the transmitter won't do anything, we need to program the cross-platform XSS transmitter! | | | http://esther.biz | | | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| National Creative Analyst | 6.3.1 | Expression | | The SSL feed is down, back up the cross-platform feed so we can back up the SSL feed! | | | | | | +| Global Mobility Facilitator | 8.5.9 | Url | | We need to parse the primary PCI protocol! | | Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch | https://itzel.info | Mitchel | http://carleton.name | +| | | | | | | | | Madalyn | http://narciso.net | +| | | | | | | | | Mia | http://nicklaus.net | +| | | | | | | | | Abelardo | http://carolina.name | +| Lead Program Engineer | 4.5.7 | Overwrite | | The PCI protocol is down, calculate the bluetooth protocol so we can calculate the PCI protocol! | | | | | | +| Internal Operations Producer | 5.8.9 | Overwrite | | Use the online SMTP pixel, then you can index the online pixel! | | | | | | +| Future Tactics Specialist | 0.2.2 | Overwrite | We need to override the primary SQL pixel! | We need to transmit the redundant EXE driver! | You can't calculate the hard drive without hacking the multi-byte FTP hard drive! | | | | | +| Human Program Technician | 2.8.4 | Overwrite | | | | Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill | http://tomasa.info | | | +| National Security Orchestrator | 3.5.6 | Expression | Try to copy the HDD array, maybe it will copy the back-end array! | 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! | Roderick Koelpin,Roderick Koelpin,Roderick Koelpin | | | | +| Forward Communications Director | 6.0.8 | Overwrite | Try to override the AI alarm, maybe it will override the online alarm! | We need to quantify the virtual TCP card! | | Kristin Bernhard,Kristin Bernhard | | | | +| Legacy Marketing Designer | 4.5.9 | Expression | | You can't bypass the microchip without parsing the back-end JBOD microchip! | You can't bypass the alarm without generating the back-end HTTP alarm! | | http://lexi.net | | | +| Corporate Division Executive | 4.7.8 | Url | I'll index the neural SDD bus, that should bus the SDD bus! | If we reboot the program, we can get to the SSL program through the primary SSL program! | | Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros | http://wilmer.com | | | +| Chief Paradigm Supervisor | 4.3.3 | Url | | | We need to bypass the wireless XML pixel! | Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins | https://zion.info | | | +| Dynamic Factors Producer | 5.7.1 | Url | | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | | | | | +| Principal Web Associate | 4.2.5 | Expression | | | If we index the hard drive, we can get to the XSS hard drive through the primary XSS hard drive! | Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles | | | | +| Senior Quality Executive | 4.4.8 | Url | I'll quantify the solid state THX feed, that should feed the THX feed! | Use the online RAM array, then you can index the online array! | You can't reboot the transmitter without transmitting the online ADP transmitter! | | http://khalid.com | | | +| Investor Usability Officer | 2.5.2 | Unknown | Try to program the XML capacitor, maybe it will program the haptic capacitor! | Use the optical SSL alarm, then you can bypass the optical alarm! | | Johnny Bernier | http://orlo.name | | | +| District Creative Designer | 1.4.6 | Url | We need to program the haptic IB panel! | | | | http://cameron.info | | | +| National Accountability Producer | 6.9.7 | Unknown | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | https://linwood.biz | Travon | https://dedrick.name | +| | | | | | | | | Elissa | http://kaci.org | +| | | | | | | | | Brandi | https://aniyah.com | +| | | | | | | | | Tyson | https://bonita.org | +| | | | | | | | | Jazlyn | http://madonna.net | +| | | | | | | | | Deangelo | https://jess.info | +| | | | | | | | | Alvah | https://hans.net | +| Human Group Agent | 3.2.2 | Url | | | generating the interface won't do anything, we need to hack the optical PCI interface! | Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser | https://vilma.com | | | +| Chief Solutions Administrator | 0.4.1 | Unknown | | 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 | Shaun | https://antwan.org | +| | | | | | | | | Hazel | https://forrest.net | +| | | | | | | | | Brianne | https://dorothea.name | +| | | | | | | | | Don | http://torey.com | +| | | | | | | | | Cedrick | https://zachariah.net | +| | | | | | | | | Marcelle | https://adah.org | +| | | | | | | | | Barney | http://erica.org | +| | | | | | | | | Jordi | https://alysha.com | +| | | | | | | | | Kristina | https://pattie.info | +| | | | | | | | | Cory | http://kailey.com | +| Regional Brand Associate | 4.0.9 | Expression | | | I'll program the wireless HDD pixel, that should pixel the HDD pixel! | | | | | +| International Intranet Planner | 1.3.4 | Expression | 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 | Ahmad | https://lupe.com | +| | | | | | | | | Randi | https://jaiden.biz | +| | | | | | | | | Patience | https://marlene.name | +| | | | | | | | | Lenna | https://franco.name | +| | | | | | | | | Kyleigh | https://tevin.name | +| | | | | | | | | Sallie | https://jordane.name | +| | | | | | | | | Willy | https://daija.info | +| | | | | | | | | Jannie | https://retta.net | +| | | | | | | | | Lottie | http://yasmine.com | +| | | | | | | | | Delia | http://khalil.com | +| Regional Configuration Engineer | 7.3.8 | Expression | Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter! | You can't reboot the matrix without navigating the optical SDD matrix! | | | http://roman.org | | | +| Global Configuration Consultant | 5.9.5 | Expression | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | bypassing the bus won't do anything, we need to calculate the virtual GB bus! | | Guadalupe Littel,Guadalupe Littel,Guadalupe Littel | | | | +| Human Program Orchestrator | 5.2.4 | Url | Use the cross-platform EXE microchip, then you can quantify the cross-platform microchip! | | bypassing the bandwidth won't do anything, we need to copy the mobile JBOD bandwidth! | | | | | +| Senior Metrics Engineer | 8.3.4 | Overwrite | | Try to quantify the FTP bus, maybe it will quantify the optical bus! | | Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand | http://lou.net | | | +| Central Tactics Director | 4.6.7 | Url | backing up the system won't do anything, we need to parse the neural CSS system! | We need to transmit the back-end RSS transmitter! | | Doyle Osinski,Doyle Osinski,Doyle Osinski,Doyle Osinski | https://valentina.net | | | +| Senior Operations Assistant | 2.4.2 | Expression | | If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth! | | Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva | https://hector.info | | | +| Investor Division Assistant | 9.6.2 | Url | | I'll parse the primary PCI matrix, that should matrix the PCI matrix! | | | | Nya | http://sunny.biz | +| | | | | | | | | Arlo | https://cordia.info | +| | | | | | | | | Linnie | https://marcos.name | +| | | | | | | | | Luella | http://frederic.name | +| | | | | | | | | Lucinda | https://dion.name | +| | | | | | | | | Jayson | https://ryleigh.net | +| | | | | | | | | Mervin | https://lorenza.net | +| Forward Usability Developer | 6.9.1 | Overwrite | | | You can't connect the protocol without overriding the redundant RSS protocol! | | | | | +| Direct Group Liaison | 3.5.1 | Overwrite | We need to parse the haptic SMS monitor! | | We need to program the auxiliary JBOD circuit! | | | | | +| Global Usability Manager | 9.1.0 | Overwrite | | Try to back up the THX interface, maybe it will back up the auxiliary interface! | | | http://vella.com | | | +| Forward Directives Representative | 0.5.1 | Url | | parsing the panel won't do anything, we need to calculate the digital SMTP panel! | | Theresa Heathcote,Theresa Heathcote,Theresa Heathcote,Theresa Heathcote,Theresa Heathcote,Theresa Heathcote | https://cleve.biz | | | +| Chief Program Director | 8.8.8 | Overwrite | If we parse the protocol, we can get to the IB protocol through the wireless IB protocol! | | Use the primary SCSI matrix, then you can program the primary matrix! | | | | | +| Dynamic Paradigm Officer | 2.3.4 | Overwrite | | | | | https://charity.biz | | | +| National Implementation Agent | 5.6.8 | Expression | | | Use the multi-byte PNG circuit, then you can navigate the multi-byte circuit! | Ira Hermiston,Ira Hermiston,Ira Hermiston,Ira Hermiston | http://rex.biz | | | +| Legacy Solutions Architect | 7.9.3 | Url | | Try to input the AI sensor, maybe it will input the digital sensor! | If we program the array, we can get to the JBOD array through the primary JBOD array! | | | | | +| Lead Identity Developer | 7.1.0 | Url | | compressing the bandwidth won't do anything, we need to bypass the primary RAM bandwidth! | | | https://eve.com | | | +| Corporate Intranet Associate | 7.5.1 | Overwrite | | 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! | | | | | +| Investor Operations Director | 5.6.0 | Expression | Try to input the AI microchip, maybe it will input the 1080p microchip! | | If we synthesize the sensor, we can get to the AI sensor through the redundant AI sensor! | | https://alene.info | Elouise | https://ron.com | +| | | | | | | | | Brown | https://cordia.com | +| | | | | | | | | Ericka | https://eugene.com | +| | | | | | | | | Rashad | http://thomas.com | +| | | | | | | | | Antonia | https://marcelle.org | +| Regional Communications Strategist | 9.3.1 | Url | overriding the matrix won't do anything, we need to back up the solid state IB matrix! | Try to index the HDD panel, maybe it will index the haptic panel! | We need to index the bluetooth JSON pixel! | | http://eloisa.biz | | | +| International Marketing Officer | 7.2.8 | Expression | | | | Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk | | | | +| Future Markets Architect | 7.2.2 | Overwrite | If we synthesize the port, we can get to the CSS port through the online CSS port! | synthesizing the panel won't do anything, we need to transmit the neural THX panel! | | Gerald Cruickshank,Gerald Cruickshank,Gerald Cruickshank | https://maxime.info | | | +| Senior Brand Officer | 9.3.6 | Url | If we override the system, we can get to the HDD system through the haptic HDD system! | If we parse the bus, we can get to the XML bus through the solid state XML bus! | | | http://carol.name | | | +| International Branding Associate | 4.9.4 | Url | | 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://trinity.name | | | +| Product Interactions Planner | 7.4.0 | Expression | Try to navigate the PCI matrix, maybe it will navigate the haptic matrix! | | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | http://bertha.net | Rey | https://connie.info | +| | | | | | | | | Hollie | http://rico.name | +| | | | | | | | | Marshall | http://pierce.org | +| | | | | | | | | 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 | +| National Factors Administrator | 8.1.4 | Unknown | | | | | http://janelle.name | | | +| Corporate Infrastructure Executive | 4.8.1 | Unknown | | | Try to index the FTP transmitter, maybe it will index the bluetooth transmitter! | Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist | https://justice.info | | | +| Chief Functionality Planner | 5.1.2 | Unknown | | I'll calculate the 1080p HDD system, that should system the HDD system! | | Matt Mills,Matt Mills | http://myrtice.com | | | +| Human Accountability Developer | 6.9.0 | Unknown | If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit! | | | | | | | +| National Solutions Representative | 5.6.2 | Overwrite | | | You can't synthesize the bandwidth without programming the solid state XSS bandwidth! | | | | | +| Legacy Interactions Officer | 8.8.5 | Overwrite | | | Try to program the RAM bandwidth, maybe it will program the optical bandwidth! | | | | | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Customer Metrics Analyst | 6.7.1 | Unknown | | | | | | | | +| Forward Tactics Agent | 6.8.8 | Url | | We need to back up the primary SMTP circuit! | The COM bandwidth is down, input the auxiliary bandwidth so we can input the COM bandwidth! | Jon Schulist,Jon Schulist | https://flo.info | Diana | http://eula.name | +| | | | | | | | | Raphael | https://zackery.info | +| | | | | | | | | Nettie | https://brayan.com | +| Chief Response Strategist | 8.0.4 | Url | | The RSS alarm is down, compress the mobile alarm so we can compress the RSS alarm! | Use the 1080p PNG application, then you can calculate the 1080p application! | Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann | | | | +| International Branding Producer | 3.8.2 | Expression | We need to generate the solid state AGP microchip! | | | | | | | +| Global Solutions Administrator | 5.2.4 | Overwrite | We need to calculate the online SAS bandwidth! | If we index the bus, we can get to the CSS bus through the optical CSS bus! | | Nellie Oberbrunner | https://hailee.biz | | | +| Global Markets Administrator | 8.6.8 | Expression | 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! | The SSL application is down, reboot the bluetooth application so we can reboot the SSL application! | Julius Bernhard,Julius Bernhard,Julius Bernhard,Julius Bernhard | https://lois.biz | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Brand Agent | 3.1.9 | Url | generating the alarm won't do anything, we need to parse the virtual XSS alarm! | | I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth! | | https://lina.info | | | +| Regional Factors Designer | 7.4.1 | Url | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | Use the haptic RSS port, then you can transmit the haptic port! | Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus | | | | +| Legacy Intranet Planner | 8.3.2 | Expression | Use the bluetooth AI bandwidth, then you can transmit the bluetooth bandwidth! | | | | http://nathanael.name | | | +| Future Accounts Designer | 5.1.9 | Expression | We need to navigate the wireless SAS pixel! | | | | | | | +| Internal Solutions Director | 8.4.4 | Unknown | | | | | | | | +| Direct Applications Designer | 1.5.1 | Unknown | | We need to connect the haptic TCP panel! | If we bypass the card, we can get to the HDD card through the auxiliary HDD card! | Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling | http://tito.name | | | +| Dynamic Configuration Assistant | 3.2.1 | Expression | | 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 | | | | +| Dynamic Configuration Administrator | 4.3.8 | Url | | | Use the redundant AGP microchip, then you can override the redundant microchip! | Roberto Deckow,Roberto Deckow,Roberto Deckow | | | | +| Investor Interactions Designer | 1.9.4 | Url | | | parsing the card won't do anything, we need to synthesize the online SQL card! | Stella Barton,Stella Barton | https://octavia.name | | | +| Corporate Program Associate | 5.2.5 | Overwrite | | | overriding the interface won't do anything, we need to override the virtual THX interface! | | | | | +| Lead Optimization Analyst | 2.1.7 | Expression | Use the wireless XSS bandwidth, then you can program the wireless bandwidth! | The SDD hard drive is down, copy the virtual hard drive so we can copy the SDD hard drive! | | Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson | https://madge.info | | | +| Forward Branding Strategist | 4.6.2 | Overwrite | | | The THX hard drive is down, compress the back-end hard drive so we can compress the THX hard drive! | | | | | +| Dynamic Tactics Facilitator | 0.7.3 | Unknown | | | The SSL port is down, bypass the haptic port so we can bypass the SSL port! | | | | | +| Product Tactics Engineer | 5.6.9 | Overwrite | Use the online TCP driver, then you can navigate the online driver! | I'll transmit the open-source HTTP pixel, that should pixel the HTTP pixel! | transmitting the program won't do anything, we need to generate the multi-byte SAS program! | Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich | | | | +| Direct Applications Assistant | 3.5.8 | Unknown | The PCI pixel is down, synthesize the multi-byte pixel so we can synthesize the PCI pixel! | If we back up the driver, we can get to the TCP driver through the redundant TCP driver! | We need to back up the 1080p COM interface! | | http://consuelo.info | | | +| Legacy Communications Engineer | 7.8.1 | Expression | | I'll synthesize the haptic THX hard drive, that should hard drive the THX hard drive! | The ADP hard drive is down, input the back-end hard drive so we can input the ADP hard drive! | Hilda Kub,Hilda Kub,Hilda Kub,Hilda Kub,Hilda Kub | | | | +| National Infrastructure Architect | 6.6.7 | Unknown | | If we bypass the hard drive, we can get to the EXE hard drive through the bluetooth EXE hard drive! | | Howard Rath,Howard Rath,Howard Rath,Howard Rath | http://darlene.net | | | +| Forward Tactics Planner | 5.4.6 | Url | I'll input the primary GB port, that should port the GB port! | | 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 | https://caterina.info | | | +| Customer Interactions Representative | 0.8.8 | Url | We need to quantify the digital SSL array! | | | | http://heather.name | | | +| Forward Program Officer | 4.2.4 | Url | quantifying the capacitor won't do anything, we need to override the open-source AI capacitor! | indexing the port won't do anything, we need to back up the virtual AGP port! | calculating the bus won't do anything, we need to generate the online CSS bus! | Leon Mayer,Leon Mayer | | | | +| Global Mobility Technician | 8.6.3 | Unknown | | We need to input the haptic XML port! | | Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante | | Lonie | http://wilburn.org | +| | | | | | | | | Concepcion | http://ed.org | +| | | | | | | | | Amanda | https://sophie.net | +| | | | | | | | | Claudine | http://ofelia.biz | +| | | | | | | | | Petra | http://clare.name | +| | | | | | | | | Ozella | https://verla.name | +| | | | | | | | | Denis | http://pete.com | +| Forward Research Associate | 3.4.7 | Url | | You can't navigate the capacitor without programming the solid state SQL capacitor! | | | | | | +| District Integration Designer | 6.2.2 | Expression | | You can't connect the port without connecting the back-end COM port! | | Ignacio Hane,Ignacio Hane | https://cindy.org | | | +| Senior Research Liaison | 5.0.6 | Overwrite | If we compress the system, we can get to the AGP system through the multi-byte AGP system! | I'll hack the optical XSS monitor, that should monitor the XSS monitor! | | | http://clair.biz | | | +| Product Data Liaison | 7.8.8 | Unknown | Try to calculate the GB card, maybe it will calculate the wireless card! | | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | | | Lewis | https://alisa.com | +| | | | | | | | | Delores | https://layne.name | +| | | | | | | | | Delphine | https://katlynn.org | +| | | | | | | | | Meredith | https://johanna.info | +| | | | | | | | | Jacklyn | https://kadin.com | +| | | | | | | | | Hardy | https://donna.info | +| National Creative Officer | 5.5.6 | Overwrite | indexing the capacitor won't do anything, we need to reboot the redundant FTP capacitor! | | The TCP array is down, bypass the mobile array so we can bypass the TCP array! | | http://orpha.name | | | +| Internal Factors Facilitator | 2.6.3 | Url | | Try to copy the PNG sensor, maybe it will copy the 1080p sensor! | | Mable Kris,Mable Kris,Mable Kris,Mable Kris,Mable Kris | http://melba.name | | | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| ------------------------------------ | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_437878896e09b8ba.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_437878896e09b8ba.verified.txt new file mode 100644 index 00000000..edcc31c7 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_437878896e09b8ba.verified.txt @@ -0,0 +1,145 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| Internal Solutions Planner | 1.3.8 | Ignored | | The COM application is down, quantify the auxiliary application so we can quantify the COM application! | | Nyah | http://oliver.com | +| | | | | | | Ettie | http://lonny.net | +| | | | | | | Onie | https://cassie.biz | +| | | | | | | Solon | https://buck.biz | +| | | | | | | Taryn | http://hilton.com | +| | | | | | | Isabel | http://rogers.net | +| | | | | | | Bertrand | http://annetta.org | +| | | | | | | Remington | https://efrain.info | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| National Creative Engineer | 4.0.0 | Ignored | You can't parse the alarm without overriding the haptic SMTP alarm! | | | Candida | https://craig.biz | +| | | | | | | Timmothy | https://joanny.biz | +| | | | | | | Alfonzo | http://dorothea.org | +| | | | | | | 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 | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Forward Directives Supervisor | 8.7.6 | Ignored | | The SSL microchip is down, hack the optical microchip so we can hack the SSL microchip! | http://shaun.org | Jadon | https://amelia.biz | +| | | | | | | Toni | http://angie.name | +| | | | | | | Ardella | http://melissa.net | +| | | | | | | Sandra | http://pearline.org | +| | | | | | | Noble | https://dusty.net | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Regional Mobility Manager | 2.7.0 | Ignored | | | http://gianni.info | Alvina | http://elouise.name | +| | | | | | | Ron | http://brown.org | +| | | | | | | Cordia | http://ericka.name | +| | | | | | | Eugene | http://rashad.info | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Chief Brand Associate | 7.6.8 | Ignored | | | https://lauriane.com | Devin | https://ramona.info | +| | | | | | | Alice | http://laverne.info | +| | | | | | | Layne | https://brooks.name | +| | | | | | | Kaitlyn | http://serenity.biz | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_43fa784e4b73c3c4.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_43fa784e4b73c3c4.verified.txt new file mode 100644 index 00000000..c1b31118 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_43fa784e4b73c3c4.verified.txt @@ -0,0 +1,142 @@ +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Product Identity Analyst | 5.9.3 | Expression | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | | Rey | https://connie.info | +| | | | | | | Hollie | http://rico.name | +| | | | | | | Marshall | http://pierce.org | +| | | | | | | 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 | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Response Consultant | 9.3.1 | Unknown | | | https://ulices.biz | Ari | https://chad.com | +| | | | | | | Yvonne | http://jada.name | +| | | | | | | Noemie | https://kayley.name | +| | | | | | | Brandon | http://kristopher.name | +| | | | | | | Maggie | http://kimberly.info | +| | | | | | | Veronica | https://mya.net | +| | | | | | | Marty | https://obie.net | +| | | | | | | Braxton | http://flavio.net | +| | | | | | | Jeramie | http://jaycee.net | +| Future Group Assistant | 1.7.9 | Expression | Use the multi-byte AI port, then you can reboot the multi-byte port! | | | Darien | http://mitchel.biz | +| | | | | | | Carleton | https://madalyn.com | +| | | | | | | Narciso | https://mia.com | +| | | | | | | Nicklaus | https://abelardo.com | +| | | | | | | Carolina | https://lindsey.info | +| | | | | | | Rigoberto | https://lou.biz | +| Corporate Accountability Designer | 0.8.0 | Overwrite | We need to hack the online FTP application! | | http://taya.info | Carlee | http://britney.name | +| | | | | | | Tess | http://julian.biz | +| | | | | | | Isadore | http://billy.net | +| | | | | | | Alice | http://vern.net | +| | | | | | | King | http://trace.net | +| | | | | | | Carmela | https://adolf.info | +| | | | | | | Sherman | http://alec.net | +| | | | | | | Lamar | http://deion.org | +| Dynamic Group Associate | 6.6.1 | Unknown | We need to input the open-source SMTP bus! | | http://kian.name | Neil | https://burley.info | +| | | | | | | Lemuel | http://brenden.info | +| | | | | | | Agnes | https://urban.org | +| | | | | | | Micheal | https://ida.net | +| | | | | | | Murray | https://samanta.com | +| | | | | | | Assunta | http://florencio.com | +| Customer Program Consultant | 5.0.4 | Ignored | Try to compress the GB system, maybe it will compress the neural system! | Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan | http://kieran.biz | Bettie | http://edmund.info | +| | | | | | | Sadie | http://horacio.org | +| | | | | | | Loraine | https://sandra.org | +| | | | | | | Emil | http://dayana.net | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| Direct Tactics Technician | 2.8.6 | Unknown | Try to quantify the SAS port, maybe it will quantify the wireless port! | | | Demond | http://stefan.name | +| | | | | | | Norval | http://annie.net | +| | | | | | | Destin | http://penelope.name | +| Internal Solutions Planner | 1.3.8 | Expression | | Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| | | | | | | Mallory | http://angeline.name | +| Lead Creative Administrator | 9.0.0 | Overwrite | Use the virtual RAM monitor, then you can override the virtual monitor! | | https://roderick.net | Hildegard | http://conner.name | +| | | | | | | 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 | +| | | | | | | Irving | https://sydnie.org | +| Chief Data Director | 2.1.5 | Unknown | Use the haptic PCI bandwidth, then you can generate the haptic bandwidth! | | | Earnestine | http://nathanial.biz | +| | | | | | | Connor | https://augustus.net | +| | | | | | | Araceli | http://hailey.biz | +| | | | | | | Janessa | https://craig.com | +| | | | | | | Erica | http://kristin.org | +| | | | | | | Alek | http://shany.biz | +| | | | | | | Camren | http://joany.info | +| Future Mobility Strategist | 4.7.6 | Overwrite | Use the virtual ADP bandwidth, then you can calculate the virtual bandwidth! | | http://gerardo.net | Cathy | http://giovanna.info | +| | | | | | | Ike | https://jerome.biz | +| | | | | | | Emerald | https://camren.net | +| | | | | | | Sheila | https://garry.org | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| Product Marketing Developer | 3.3.6 | Unknown | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | Lewis | https://alisa.com | +| | | | | | | Delores | https://layne.name | +| | | | | | | Delphine | https://katlynn.org | +| | | | | | | Meredith | https://johanna.info | +| | | | | | | Jacklyn | https://kadin.com | +| | | | | | | Hardy | https://donna.info | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Global Infrastructure Developer | 5.5.0 | Url | generating the application won't do anything, we need to calculate the auxiliary JSON application! | Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger | https://austin.net | 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 Creative Architect | 4.5.6 | Overwrite | | Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| | | | | | | Retta | https://lottie.biz | +| | | | | | | Yasmine | http://delia.com | +| | | | | | | Khalil | http://jewel.net | +| | | | | | | Roy | https://johanna.org | +| | | | | | | Price | https://itzel.info | +| | | | | | | Dalton | https://daren.info | +| | | | | | | Arnold | http://arlo.org | +| Investor Identity Developer | 4.2.0 | Url | | Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| | | | | | | Keely | http://obie.org | +| | | | | | | Caleigh | https://albin.info | +| | | | | | | Flavie | http://lavonne.biz | +| | | | | | | Kaitlyn | http://osborne.org | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_441bcf0215ebcfa6.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_441bcf0215ebcfa6.verified.txt new file mode 100644 index 00000000..7f86595e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_441bcf0215ebcfa6.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Future Integration Analyst | 9.0.4 | Expression | | | Abner | http://tavares.info | +| | | | | | Johann | http://andres.net | +| | | | | | Jaquan | http://carey.org | +| | | | | | Arvel | http://mortimer.org | +| | | | | | Alicia | http://paula.com | +| | | | | | Heidi | http://letha.name | +| | | | | | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Paige | https://remington.info | +| | | | | | Aletha | https://isobel.info | +| | | | | | Pearline | https://johnathon.info | +| | | | | | Eleanora | http://jaeden.info | +| | | | | | Nikolas | https://daphney.net | +| | | | | | Oceane | http://clifton.com | +| | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | http://marina.com | Myles | http://nikko.name | +| | | | | | Rolando | http://nikko.name | +| | | | | | Pamela | https://aliza.net | +| | | | | | Marcella | http://helga.net | +| | | | | | Alisha | http://alyson.name | +| | | | | | Carmelo | http://michele.name | +| | | | | | Miles | https://freddie.com | +| | | | | | Kade | https://jaunita.biz | +| | | | | | Marcelina | http://donna.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_44b875cb03b75687.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_44b875cb03b75687.verified.txt new file mode 100644 index 00000000..c49cabb6 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_44b875cb03b75687.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_45a621cdbe7ee2c0.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_45a621cdbe7ee2c0.verified.txt new file mode 100644 index 00000000..8a669095 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_45a621cdbe7ee2c0.verified.txt @@ -0,0 +1,134 @@ +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| | | | | | Jody | http://jakob.org | +| | | | | | Anjali | https://valentin.info | +| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| | | | | | Clemmie | http://shanny.net | +| | | | | | Hildegard | http://conner.name | +| | | | | | Isabella | https://kennith.com | +| | | | | | Johanna | https://ara.org | +| | | | | | Demarco | https://rae.biz | +| | | | | | Viviane | http://christine.info | +| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| | | | | | Ursula | https://werner.net | +| | | | | | Linwood | http://rebekah.org | +| | | | | | Cleve | https://claudie.net | +| | | | | | Theodora | http://faye.info | +| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| | | | | | Braeden | https://sunny.name | +| | | | | | Leslie | http://bettie.info | +| | | | | | Edmund | http://sadie.info | +| | | | | | Horacio | https://loraine.name | +| Global Response Associate | 1.9.8 | Overwrite | The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth! | | Sandra | http://antonina.com | +| | | | | | Willow | https://jason.org | +| | | | | | Orland | http://rigoberto.com | +| | | | | | Laney | http://eryn.org | +| | | | | | Amari | http://viviane.net | +| | | | | | Kelley | http://doris.net | +| | | | | | Kennedy | https://milo.net | +| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| | | | | | Caleigh | https://albin.info | +| | | | | | Flavie | http://lavonne.biz | +| | | | | | Kaitlyn | http://osborne.org | +| | | | | | Joesph | https://michael.name | +| | | | | | Kali | http://shyanne.net | +| | | | | | Austin | https://marty.net | +| | | | | | Theresia | http://kristin.net | +| | | | | | Lester | https://paige.com | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Legacy Creative Liaison | 0.4.6 | Overwrite | | | Mervin | http://celestine.info | +| | | | | | Amalia | https://shanelle.info | +| | | | | | Sheila | http://darrell.info | +| | | | | | Alec | https://candice.biz | +| | | | | | Linnea | http://everardo.info | +| | | | | | Daryl | https://jerrod.com | +| | | | | | Laila | http://caleigh.net | +| | | | | | Adolfo | http://daisha.biz | +| Direct Accounts Associate | 3.2.6 | Overwrite | | https://vesta.com | Buck | http://taryn.com | +| | | | | | Hilton | http://isabel.com | +| | | | | | Rogers | https://bertrand.biz | +| | | | | | Annetta | https://remington.org | +| | | | | | Efrain | http://davion.org | +| | | | | | Merle | https://abigayle.org | +| | | | | | Jerod | https://vicenta.info | +| | | | | | Kayli | https://shaun.net | +| | | | | | Antwan | https://hazel.net | +| Senior Brand Developer | 4.4.1 | Ignored | If we override the system, we can get to the CSS system through the neural CSS system! | http://adelbert.net | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| | | | | | Libby | http://wade.biz | +| | | | | | Leola | https://pietro.info | +| | | | | | Arch | http://hazle.org | +| | | | | | Eldred | http://gabriel.net | +| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| | | | | | Clarissa | https://audreanne.name | +| | | | | | Vida | https://theresia.biz | +| | | | | | Ransom | http://isom.com | +| | | | | | Anastasia | http://kamryn.info | +| | | | | | Marlene | https://cyril.name | +| | | | | | Zetta | http://pete.org | +| | | | | | Candida | https://craig.biz | +| | | | | | Timmothy | https://joanny.biz | +| | | | | | Alfonzo | http://dorothea.org | +| National Accounts Liaison | 7.2.6 | Overwrite | | | Cedrick | https://zachariah.net | +| | | | | | Marcelle | https://adah.org | +| | | | | | Barney | http://erica.org | +| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| | | | | | Tyson | https://bonita.org | +| | | | | | Jazlyn | http://madonna.net | +| | | | | | Deangelo | https://jess.info | +| | | | | | Alvah | https://hans.net | +| | | | | | Payton | http://shanna.name | +| | | | | | Providenci | https://tyra.org | +| | | | | | Flo | http://isidro.net | +| | | | | | Dawn | https://anika.org | +| | | | | | Silas | http://zane.name | +| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| | | | | | Monserrat | http://katrine.name | +| | | | | | Abel | https://geovany.com | +| | | | | | Diana | http://eula.name | +| | | | | | Raphael | https://zackery.info | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| | | | | | Earnestine | http://nathanial.biz | +| | | | | | Connor | https://augustus.net | +| | | | | | Araceli | http://hailey.biz | +| | | | | | Janessa | https://craig.com | +| | | | | | Erica | http://kristin.org | +| | | | | | Alek | http://shany.biz | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| | | | | | Princess | http://haylie.biz | +| | | | | | Jordane | https://gregorio.com | +| | | | | | Opal | http://abbie.org | +| | | | | | Pablo | https://maxime.biz | +| | | | | | Shaun | https://concepcion.net | +| | | | | | Moises | http://rupert.info | +| Dynamic Marketing Consultant | 2.4.9 | Overwrite | | | Angie | https://ardella.info | +| | | | | | Melissa | https://sandra.biz | +| | | | | | Pearline | https://noble.net | +| | | | | | Dusty | https://verlie.com | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_45f4dede9aaf2f1d.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_45f4dede9aaf2f1d.verified.txt new file mode 100644 index 00000000..7d3cc5b3 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_45f4dede9aaf2f1d.verified.txt @@ -0,0 +1,21 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_46483d58879c5028.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_46483d58879c5028.verified.txt new file mode 100644 index 00000000..fc9fee6c --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_46483d58879c5028.verified.txt @@ -0,0 +1,245 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | ---------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | ---------------------- | ---------- | ---------------------- | +| Legacy Directives Supervisor | 9.6.2 | Url | The PNG circuit is down, back up the online circuit so we can back up the PNG circuit! | | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Human Program Technician | 2.8.4 | Unknown | | | http://tomasa.info | | | +| Global Division Designer | 8.2.7 | Expression | Try to program the EXE hard drive, maybe it will program the virtual hard drive! | | https://pamela.name | | | +| National Communications Orchestrator | 4.5.1 | Unknown | The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit! | | | | | +| Human Directives Specialist | 4.3.4 | Unknown | Use the digital XSS hard drive, then you can compress the digital hard drive! | You can't generate the card without synthesizing the bluetooth PNG card! | | | | +| Human Optimization Facilitator | 7.4.8 | Overwrite | 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! | https://cooper.name | | | +| Direct Assurance Strategist | 1.3.7 | Expression | The RSS firewall is down, hack the neural firewall so we can hack the RSS firewall! | | | | | +| National Intranet Technician | 8.0.0 | Overwrite | | | | | | +| Senior Brand Analyst | 2.5.0 | Url | | overriding the interface won't do anything, we need to override the virtual THX interface! | | | | +| Internal Solutions Planner | 1.3.8 | Ignored | | The COM application is down, quantify the auxiliary application so we can quantify the COM application! | | Nyah | http://oliver.com | +| | | | | | | Ettie | http://lonny.net | +| | | | | | | Onie | https://cassie.biz | +| | | | | | | Solon | https://buck.biz | +| | | | | | | Taryn | http://hilton.com | +| | | | | | | Isabel | http://rogers.net | +| | | | | | | Bertrand | http://annetta.org | +| | | | | | | Remington | https://efrain.info | +| Internal Directives Designer | 0.4.8 | Url | The EXE protocol is down, reboot the redundant protocol so we can reboot the EXE protocol! | | | | | +| Corporate Tactics Director | 2.5.7 | Url | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | http://marcos.info | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Direct Accountability Assistant | 2.2.8 | Url | bypassing the protocol won't do anything, we need to compress the primary HTTP protocol! | | http://natasha.info | | | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | +| Chief Applications Facilitator | 7.7.6 | Overwrite | | parsing the card won't do anything, we need to synthesize the online SQL card! | | | | +| Forward Functionality Developer | 5.1.1 | Url | | | | | | +| Central Identity Analyst | 8.9.6 | Expression | | | http://leta.org | | | +| Investor Interactions Liaison | 4.4.9 | Overwrite | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | | | | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | | | +| Dynamic Quality Analyst | 0.9.5 | Overwrite | We need to index the optical HTTP application! | I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor! | | | | +| Corporate Directives Planner | 8.8.5 | Unknown | The CSS bus is down, generate the 1080p bus so we can generate the CSS bus! | We need to back up the 1080p SMTP feed! | | | | +| Senior Optimization Assistant | 3.6.0 | Overwrite | | overriding the pixel won't do anything, we need to copy the optical JSON pixel! | http://akeem.info | | | +| Investor Creative Architect | 8.2.4 | Unknown | | | | | | +| Human Operations Assistant | 0.7.2 | Overwrite | Use the haptic USB driver, then you can override the haptic driver! | | http://camila.net | | | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | | | +| Direct Data Orchestrator | 2.4.5 | Expression | | Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor! | | | | +| Customer Security Representative | 3.7.3 | Ignored | The GB circuit is down, hack the redundant circuit so we can hack the GB circuit! | | https://jalon.net | | | +| Legacy Directives Officer | 2.4.4 | Url | | The PCI program is down, hack the multi-byte program so we can hack the PCI program! | http://sedrick.biz | | | +| Investor Intranet Producer | 5.4.1 | Ignored | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | http://hyman.org | | | +| National Creative Engineer | 4.0.0 | Ignored | You can't parse the alarm without overriding the haptic SMTP alarm! | | | Candida | https://craig.biz | +| | | | | | | Timmothy | https://joanny.biz | +| | | | | | | Alfonzo | http://dorothea.org | +| | | | | | | 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 | +| Regional Factors Designer | 7.4.1 | Overwrite | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | | | | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| Chief Division Producer | 2.3.9 | Overwrite | | | | | | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Principal Markets Designer | 3.8.8 | Overwrite | overriding the transmitter won't do anything, we need to generate the cross-platform SCSI transmitter! | | | | | +| Dynamic Optimization Director | 3.4.6 | Ignored | The PNG protocol is down, index the digital protocol so we can index the PNG protocol! | I'll transmit the online SSL feed, that should feed the SSL feed! | https://maximilian.org | | | +| Product Creative Facilitator | 8.4.6 | Unknown | 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://juliana.net | | | +| Human Optimization Producer | 5.0.9 | Overwrite | | | | | | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | | | +| National Creative Coordinator | 5.9.5 | Expression | | | https://bobbie.info | | | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | | | +| Future Accounts Agent | 0.9.7 | Ignored | | | | | | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 Communications Supervisor | 6.0.1 | Ignored | Use the cross-platform SAS feed, then you can bypass the cross-platform feed! | | http://ethan.name | | | +| Investor Research Manager | 6.3.1 | Ignored | | | | | | +| Principal Accounts Coordinator | 1.0.4 | Overwrite | | I'll connect the digital JSON bus, that should bus the JSON bus! | http://rene.com | | | +| Regional Directives Supervisor | 4.9.8 | Ignored | Try to reboot the THX hard drive, maybe it will reboot the open-source hard drive! | Use the primary GB driver, then you can generate the primary driver! | https://malcolm.net | | | +| Senior Security Consultant | 2.7.5 | Unknown | | | http://adelbert.biz | | | +| Regional Operations Coordinator | 0.2.5 | Unknown | | I'll hack the cross-platform SSL array, that should array the SSL array! | http://ena.com | | | +| Human Directives Engineer | 5.3.9 | Url | | | | | | +| Central Web Assistant | 4.2.1 | Unknown | | Use the wireless ADP array, then you can input the wireless array! | https://verda.net | | | +| Global Program Representative | 5.1.0 | Url | | If we back up the monitor, we can get to the PCI monitor through the virtual PCI monitor! | | | | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | http://hanna.net | | | +| Customer Functionality Consultant | 5.5.1 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | http://terence.com | | | +| Senior Factors Administrator | 1.6.1 | Expression | I'll calculate the solid state ADP panel, that should panel the ADP panel! | If we generate the circuit, we can get to the XSS circuit through the primary XSS circuit! | | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Dynamic Division Consultant | 4.8.7 | Overwrite | Use the multi-byte IB microchip, then you can connect the multi-byte microchip! | backing up the feed won't do anything, we need to compress the haptic SMTP feed! | http://raquel.net | | | +| Dynamic Accountability Strategist | 7.0.9 | Unknown | You can't bypass the sensor without transmitting the neural JSON sensor! | | | | | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 Branding Facilitator | 8.3.2 | Ignored | | | | | | +| Chief Brand Associate | 7.6.8 | Ignored | | | https://lauriane.com | Devin | https://ramona.info | +| | | | | | | Alice | http://laverne.info | +| | | | | | | Layne | https://brooks.name | +| | | | | | | Kaitlyn | http://serenity.biz | +| Dynamic Accountability Analyst | 4.9.7 | Overwrite | | | https://jaron.info | | | +| National Applications Designer | 6.4.9 | Expression | | Use the back-end SMS feed, then you can program the back-end feed! | | | | +| International Quality Director | 0.3.8 | Expression | | | | | | +| Global Security Coordinator | 1.7.9 | Ignored | | | https://carol.info | | | +| National Research Facilitator | 6.0.6 | Expression | Use the primary EXE array, then you can navigate the primary array! | | | | | +| Human Group Designer | 9.9.1 | Expression | Use the haptic XSS application, then you can synthesize the haptic application! | If we transmit the hard drive, we can get to the AGP hard drive through the bluetooth AGP hard drive! | http://jodie.org | | | +| Forward Division Strategist | 5.7.1 | Ignored | You can't reboot the program without transmitting the mobile SMTP program! | The SCSI circuit is down, index the open-source circuit so we can index the SCSI circuit! | https://esperanza.name | | | +| Regional Mobility Manager | 2.7.0 | Ignored | | | http://gianni.info | Alvina | http://elouise.name | +| | | | | | | Ron | http://brown.org | +| | | | | | | Cordia | http://ericka.name | +| | | | | | | Eugene | http://rashad.info | +| Corporate Accounts Technician | 5.8.0 | Ignored | | | https://isobel.org | | | +| International Functionality Agent | 8.7.6 | Unknown | | If we hack the card, we can get to the JBOD card through the optical JBOD card! | http://jalyn.org | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | | | +| Lead Branding Developer | 4.1.5 | Url | | | http://abe.com | | | +| Corporate Data Strategist | 9.0.0 | Ignored | | | http://eli.net | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | | | +| Forward Directives Supervisor | 8.7.6 | Ignored | | The SSL microchip is down, hack the optical microchip so we can hack the SSL microchip! | http://shaun.org | Jadon | https://amelia.biz | +| | | | | | | Toni | http://angie.name | +| | | | | | | Ardella | http://melissa.net | +| | | | | | | Sandra | http://pearline.org | +| | | | | | | Noble | https://dusty.net | +| National Creative Assistant | 4.9.0 | Ignored | | If we navigate the pixel, we can get to the SCSI pixel through the bluetooth SCSI pixel! | https://michelle.org | | | +| Lead Usability Assistant | 1.3.4 | Overwrite | quantifying the matrix won't do anything, we need to synthesize the wireless PCI matrix! | Use the solid state SQL firewall, then you can connect the solid state firewall! | https://duane.info | | | +| Human Quality Facilitator | 1.2.0 | Expression | We need to copy the online THX firewall! | You can't calculate the application without calculating the auxiliary AI application! | | | | +| National Directives Analyst | 8.2.7 | Ignored | We need to compress the primary GB array! | | | | | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| Dynamic Factors Facilitator | 6.5.2 | Expression | | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | http://magnolia.com | | | +| Global Mobility Facilitator | 9.5.8 | Expression | | | | | | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | | | +| Chief Intranet Facilitator | 6.6.1 | Expression | | | https://rosalind.net | | | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| Forward Intranet Engineer | 2.5.9 | Expression | The RSS sensor is down, input the 1080p sensor so we can input the RSS sensor! | Try to index the ADP port, maybe it will index the auxiliary port! | | | | +| Corporate Marketing Assistant | 8.7.9 | Url | | You can't program the firewall without connecting the wireless AI firewall! | http://arlene.biz | | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | | | +| Investor Implementation Technician | 2.7.9 | Unknown | | | http://crystal.name | | | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | | | +| Direct Mobility Designer | 7.7.3 | Expression | | | http://geovanny.info | | | +| Customer Metrics Developer | 2.2.9 | Ignored | | | | | | +| Human Response Coordinator | 2.9.7 | Ignored | | | http://ruth.org | | | +| Future Accounts Architect | 9.1.8 | Url | You can't bypass the firewall without indexing the multi-byte COM firewall! | | https://fermin.biz | | | +| Chief Factors Supervisor | 5.2.2 | Expression | | | http://helga.com | | | +| Forward Marketing Orchestrator | 1.6.4 | Overwrite | I'll connect the primary SQL sensor, that should sensor the SQL sensor! | The SMTP driver is down, bypass the mobile driver so we can bypass the SMTP driver! | https://lukas.com | | | +| Legacy Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| International Intranet Planner | 6.4.6 | Url | The IB interface is down, program the redundant interface so we can program the IB interface! | | https://lenna.com | | | +| Dynamic Integration Architect | 1.6.3 | Overwrite | | The RAM feed is down, copy the neural feed so we can copy the RAM feed! | | | | +| Product Assurance Technician | 0.8.2 | Overwrite | | | https://steve.info | | | +| 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 | | | +| International Data Representative | 3.5.7 | Ignored | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | http://dakota.com | | | +| Forward Configuration Supervisor | 9.0.8 | Overwrite | You can't program the protocol without overriding the primary IB protocol! | | http://quinn.name | | | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Central Tactics Engineer | 6.3.5 | Unknown | connecting the bandwidth won't do anything, we need to bypass the multi-byte AI bandwidth! | | | | | +| Regional Paradigm Manager | 8.9.8 | Ignored | | If we transmit the application, we can get to the SMS application through the primary SMS application! | https://eileen.name | | | +| District Operations Director | 0.6.3 | Url | | We need to program the cross-platform FTP hard drive! | https://dejah.net | | | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| National Solutions Associate | 9.1.2 | Overwrite | | | | | | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | ---------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_46a020e829a88d13.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_46a020e829a88d13.verified.txt new file mode 100644 index 00000000..3b2ff31b --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_46a020e829a88d13.verified.txt @@ -0,0 +1,33 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Ignored | 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 | Unknown | 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 Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_46eb8b86445467da.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_46eb8b86445467da.verified.txt new file mode 100644 index 00000000..d9b9991e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_46eb8b86445467da.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | Clare | https://bobby.info | +| | | | | | | Cecil | https://kira.net | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | Ila | http://rachel.com | +| | | | | | | Catalina | http://jolie.com | +| | | | | | | Dianna | https://leda.net | +| | | | | | | Nicola | http://aleen.name | +| | | | | | | Nelda | http://delpha.net | +| | | | | | | Delores | http://rae.biz | +| | | | | | | Cynthia | https://zella.com | +| | | | | | | Greta | http://adolph.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_470bbd357709dfd5.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_470bbd357709dfd5.verified.txt new file mode 100644 index 00000000..2a2cb1da --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_470bbd357709dfd5.verified.txt @@ -0,0 +1,32 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_47148afdbadfda9e.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_47148afdbadfda9e.verified.txt new file mode 100644 index 00000000..ac841ddc --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_47148afdbadfda9e.verified.txt @@ -0,0 +1,51 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Investor Intranet Producer | 5.4.1 | Ignored | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | http://hyman.org | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_473503ae811bab67.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_473503ae811bab67.verified.txt new file mode 100644 index 00000000..4fd0a4bf --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_473503ae811bab67.verified.txt @@ -0,0 +1,27 @@ +| ----------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | | | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | | | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Tactics Administrator | 9.9.9 | Url | | | | | | | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | | | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | | | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | | | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| ----------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4738cdb91bf1452d.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4738cdb91bf1452d.verified.txt new file mode 100644 index 00000000..e3011689 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4738cdb91bf1452d.verified.txt @@ -0,0 +1,130 @@ +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Accountability Designer | 0.8.0 | Ignored | We need to hack the online FTP application! | | Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn | http://taya.info | Abelardo | http://carolina.name | +| | | | | | | | Lindsey | http://rigoberto.org | +| | | | | | | | Lou | http://darlene.biz | +| | | | | | | | Oliver | https://filomena.com | +| | | | | | | | Vincenzo | https://ulices.biz | +| | | | | | | | Florida | http://jovan.net | +| | | | | | | | Ari | https://chad.com | +| | | | | | | | Yvonne | http://jada.name | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| Legacy Usability Coordinator | 5.8.8 | Overwrite | Try to calculate the PNG port, maybe it will calculate the back-end port! | | | http://thora.info | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Senior Solutions Strategist | 7.5.0 | 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 | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Customer Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| Corporate Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | http://celestine.info | Clemens | https://abagail.info | +| | | | | | | | Franz | http://prudence.info | +| | | | | | | | Casper | https://alva.com | +| | | | | | | | Mario | http://alexandria.biz | +| Dynamic Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.biz | +| Legacy Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_478b4941af92b240.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_478b4941af92b240.verified.txt new file mode 100644 index 00000000..a19bd922 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_478b4941af92b240.verified.txt @@ -0,0 +1,109 @@ +| --------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| District Metrics Associate | 8.1.6 | Overwrite | | | http://jaylin.org | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Human Security Administrator | 9.8.5 | Overwrite | I'll synthesize the redundant XML feed, that should feed the XML feed! | Mario Stamm,Mario Stamm,Mario Stamm,Mario Stamm,Mario Stamm,Mario Stamm | | | | +| Dynamic Metrics Coordinator | 5.8.1 | Unknown | overriding the circuit won't do anything, we need to copy the mobile AGP circuit! | Helen Fisher,Helen Fisher,Helen Fisher,Helen Fisher,Helen Fisher | | | | +| Regional Paradigm Director | 3.0.9 | Unknown | The COM pixel is down, quantify the virtual pixel so we can quantify the COM pixel! | | | | | +| Forward Program Officer | 4.2.4 | Unknown | quantifying the capacitor won't do anything, we need to override the open-source AI capacitor! | Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin | | | | +| Product Solutions Manager | 9.5.2 | Overwrite | I'll hack the primary SDD card, that should card the SDD card! | Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach | | | | +| Forward Accounts Consultant | 8.9.0 | Expression | | | | | | +| Dynamic Applications Director | 5.1.4 | Unknown | | Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel | | | | +| Dynamic Group Representative | 9.8.1 | Unknown | | | | | | +| Global Paradigm Producer | 1.8.4 | Overwrite | If we quantify the protocol, we can get to the IB protocol through the auxiliary IB protocol! | | https://london.biz | | | +| Forward Division Strategist | 5.7.1 | Expression | You can't reboot the program without transmitting the mobile SMTP program! | Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode | https://esperanza.name | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Regional Factors Analyst | 1.5.7 | Overwrite | | | | | | +| Future Tactics Producer | 5.8.9 | Url | navigating the pixel won't do anything, we need to parse the back-end IB pixel! | | | | | +| Principal Group Strategist | 4.1.0 | Url | I'll bypass the primary GB bandwidth, that should bandwidth the GB bandwidth! | | | | | +| Future Configuration Architect | 4.2.6 | Expression | I'll generate the primary TCP bus, that should bus the TCP bus! | Victoria Padberg,Victoria Padberg,Victoria Padberg,Victoria Padberg,Victoria Padberg,Victoria Padberg | | | | +| Global Integration Assistant | 5.0.1 | Unknown | | | http://demarco.com | | | +| Central Identity Analyst | 8.9.6 | Expression | | | http://leta.org | | | +| Investor Interactions Designer | 1.9.4 | Overwrite | | | https://octavia.name | | | +| Senior Factors Technician | 3.2.5 | Overwrite | You can't input the protocol without copying the auxiliary USB protocol! | Lee Zieme,Lee Zieme,Lee Zieme,Lee Zieme,Lee Zieme | | | | +| Regional Mobility Designer | 8.5.4 | Url | | | http://brady.net | | | +| Legacy Communications Manager | 0.1.8 | Unknown | | | http://gus.info | | | +| Global Directives Orchestrator | 8.7.6 | Expression | | Tommy Franecki,Tommy Franecki | | | | +| Senior Response Officer | 2.8.2 | Expression | | Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann | | | | +| Dynamic Accounts Architect | 9.8.0 | Overwrite | | | | | | +| District Brand Producer | 9.3.8 | Overwrite | Use the redundant AGP application, then you can generate the redundant application! | Clarence Metz,Clarence Metz,Clarence Metz | | | | +| Forward Factors Architect | 6.7.6 | Overwrite | | Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt | | | | +| Future Optimization Associate | 4.0.5 | Unknown | | Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel | https://linnie.net | | | +| Corporate Quality Planner | 6.6.3 | Url | 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 | | | | +| National Quality Executive | 4.5.1 | Expression | Use the solid state TCP driver, then you can generate the solid state driver! | | http://rylan.com | | | +| District Intranet Agent | 1.1.6 | Url | You can't calculate the application without synthesizing the primary JBOD application! | | | | | +| Direct Security Producer | 9.0.7 | Url | | | http://evert.net | | | +| Legacy Assurance Representative | 6.4.9 | Unknown | | Diane Gutkowski,Diane Gutkowski,Diane Gutkowski,Diane Gutkowski,Diane Gutkowski | https://maye.info | | | +| Forward Intranet Technician | 2.5.3 | Expression | | Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton | https://ruby.biz | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Central Applications Planner | 6.6.9 | Overwrite | | Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke | http://ava.org | | | +| Senior Applications Technician | 7.8.2 | Overwrite | | Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert | | | | +| Senior Group Designer | 3.0.6 | Url | The AGP pixel is down, hack the neural pixel so we can hack the AGP pixel! | | | | | +| Future Directives Associate | 1.1.1 | Expression | | Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe | https://shayne.name | | | +| Regional Security Agent | 6.2.7 | Overwrite | | | https://kenyon.org | | | +| Forward Web Designer | 0.1.4 | Overwrite | | | https://gerard.net | | | +| Direct Accountability Producer | 1.8.1 | Url | | | http://justine.net | | | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | http://hanna.net | | | +| Investor Communications Associate | 0.7.2 | Expression | | Arnold Franecki,Arnold Franecki | http://modesto.info | | | +| Principal Factors Producer | 0.8.5 | Unknown | connecting the system won't do anything, we need to override the back-end SQL system! | Devin Nolan | http://toby.info | | | +| Human Web Liaison | 8.1.1 | Unknown | | | https://imogene.org | | | +| Future Applications Facilitator | 0.1.5 | Expression | transmitting the program won't do anything, we need to bypass the virtual HTTP program! | | | | | +| Dynamic Integration Assistant | 2.7.5 | Overwrite | I'll back up the 1080p RSS matrix, that should matrix the RSS matrix! | | | | | +| Customer Operations Liaison | 9.0.9 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | | | | +| Legacy Response Analyst | 9.2.7 | Unknown | | Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata | http://martine.info | | | +| Dynamic Integration Assistant | 2.1.6 | Unknown | | | https://gerson.info | | | +| Human Implementation Producer | 0.9.1 | Url | | | | | | +| Future Applications Engineer | 6.8.5 | Unknown | 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 | | | +| Principal Intranet Architect | 4.9.3 | Expression | | | | | | +| Internal Division Agent | 2.4.2 | Url | | Gary Von,Gary Von,Gary Von | | | | +| Lead Implementation Supervisor | 4.9.9 | Overwrite | The ADP card is down, hack the solid state card so we can hack the ADP card! | Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis | http://katlynn.net | | | +| Legacy Data Consultant | 5.8.8 | Unknown | Try to connect the JSON pixel, maybe it will connect the primary 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 | | | +| District Mobility Administrator | 3.2.3 | Unknown | | Christopher Dietrich,Christopher Dietrich,Christopher Dietrich,Christopher Dietrich | | | | +| Future Interactions Developer | 1.1.7 | Unknown | If we reboot the matrix, we can get to the CSS matrix through the cross-platform CSS matrix! | | | | | +| Global Mobility Associate | 0.6.4 | Expression | We need to hack the haptic XSS program! | | https://brooke.org | | | +| Global Data Administrator | 0.8.4 | Unknown | | Frederick Leffler,Frederick Leffler,Frederick Leffler | https://barrett.com | | | +| Product Metrics Representative | 2.7.9 | Expression | connecting the feed won't do anything, we need to transmit the primary IB feed! | Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson | http://denis.info | | | +| Lead Solutions Technician | 1.5.7 | Unknown | | | | | | +| Investor Configuration Technician | 1.9.1 | Url | We need to copy the primary FTP bus! | Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin | http://malvina.name | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Dynamic Brand Agent | 2.9.2 | Expression | quantifying the application won't do anything, we need to hack the haptic RAM application! | Bertha Schultz,Bertha Schultz | https://reese.info | | | +| Dynamic Division Specialist | 9.6.4 | Expression | | | https://keenan.net | | | +| Dynamic Research Designer | 5.6.8 | Unknown | If we connect the program, we can get to the SQL program through the digital SQL program! | | | | | +| Dynamic Mobility Technician | 6.0.2 | Expression | | | https://keeley.net | | | +| Corporate Mobility Consultant | 1.9.0 | Expression | | | http://letha.name | | | +| Customer Group Director | 2.5.2 | Expression | You can't index the pixel without copying the redundant XML pixel! | Vera Krajcik,Vera Krajcik,Vera Krajcik,Vera Krajcik | https://eloise.name | | | +| Investor Assurance Technician | 7.3.8 | Overwrite | | Merle Hirthe | | | | +| Forward Integration Specialist | 8.7.1 | Expression | | | http://jordon.net | | | +| Regional Integration Consultant | 5.3.8 | Expression | | | http://michael.name | | | +| Internal Web Associate | 6.2.5 | Expression | | | https://arvel.name | | | +| District Factors Associate | 0.2.6 | Expression | | Betsy Powlowski | https://cloyd.biz | | | +| District Identity Administrator | 2.9.6 | Unknown | | Isabel Schmitt,Isabel Schmitt,Isabel Schmitt,Isabel Schmitt | http://duncan.name | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Central Mobility Executive | 5.0.3 | Unknown | | Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling | | | | +| Lead Identity Developer | 7.1.0 | Unknown | | Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover | https://eve.com | | | +| Global Markets Designer | 1.7.0 | Overwrite | Use the multi-byte COM feed, then you can parse the multi-byte feed! | | https://toby.biz | | | +| --------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_486e2be63e60b654.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_486e2be63e60b654.verified.txt new file mode 100644 index 00000000..6f35c8f2 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_486e2be63e60b654.verified.txt @@ -0,0 +1,46 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_48a8a0dd9f517a28.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_48a8a0dd9f517a28.verified.txt new file mode 100644 index 00000000..cac62e52 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_48a8a0dd9f517a28.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | --------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | --------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_490cd706c0f84fa5.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_490cd706c0f84fa5.verified.txt new file mode 100644 index 00000000..2b597f34 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_490cd706c0f84fa5.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_493a8b7a497fb964.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_493a8b7a497fb964.verified.txt new file mode 100644 index 00000000..0d97b135 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_493a8b7a497fb964.verified.txt @@ -0,0 +1,21 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_496ae4ddf0081381.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_496ae4ddf0081381.verified.txt new file mode 100644 index 00000000..2b10c307 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_496ae4ddf0081381.verified.txt @@ -0,0 +1,127 @@ +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error Context | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | +| Global Mobility Technician | 8.6.3 | Unknown | | We need to input the haptic XML port! | | Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante | | Lonie | http://wilburn.org | +| | | | | | | | | Concepcion | http://ed.org | +| | | | | | | | | Amanda | https://sophie.net | +| | | | | | | | | Claudine | http://ofelia.biz | +| | | | | | | | | Petra | http://clare.name | +| | | | | | | | | Ozella | https://verla.name | +| | | | | | | | | Denis | http://pete.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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Product Data Liaison | 7.8.8 | Unknown | Try to calculate the GB card, maybe it will calculate the wireless card! | | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | | | Lewis | https://alisa.com | +| | | | | | | | | Delores | https://layne.name | +| | | | | | | | | Delphine | https://katlynn.org | +| | | | | | | | | Meredith | https://johanna.info | +| | | | | | | | | Jacklyn | https://kadin.com | +| | | | | | | | | Hardy | https://donna.info | +| International Research Architect | 3.7.4 | Ignored | | Try to quantify the USB application, maybe it will quantify the mobile application! | If we index the pixel, we can get to the AI pixel through the wireless AI pixel! | | | Madisen | http://raegan.biz | +| | | | | | | | | Cathy | http://giovanna.info | +| | | | | | | | | Ike | https://jerome.biz | +| Investor Division Assistant | 9.6.2 | Url | | I'll parse the primary PCI matrix, that should matrix the PCI matrix! | | | | Nya | http://sunny.biz | +| | | | | | | | | Arlo | https://cordia.info | +| | | | | | | | | Linnie | https://marcos.name | +| | | | | | | | | Luella | http://frederic.name | +| | | | | | | | | Lucinda | https://dion.name | +| | | | | | | | | Jayson | https://ryleigh.net | +| | | | | | | | | Mervin | https://lorenza.net | +| Corporate Marketing Strategist | 3.8.5 | Ignored | | | Use the redundant JSON application, then you can program the redundant application! | Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch | | Naomi | http://mckenna.net | +| | | | | | | | | Jalyn | https://katharina.name | +| | | | | | | | | Kane | http://beulah.biz | +| | | | | | | | | Eleanora | http://birdie.net | +| | | | | | | | | Alvah | http://keanu.net | +| National Accountability Producer | 6.9.7 | Unknown | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | https://linwood.biz | Travon | https://dedrick.name | +| | | | | | | | | Elissa | http://kaci.org | +| | | | | | | | | Brandi | https://aniyah.com | +| | | | | | | | | Tyson | https://bonita.org | +| | | | | | | | | Jazlyn | http://madonna.net | +| | | | | | | | | Deangelo | https://jess.info | +| | | | | | | | | Alvah | https://hans.net | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| Dynamic Solutions Assistant | 5.6.4 | Ignored | navigating the alarm won't do anything, we need to copy the 1080p AGP alarm! | | | Craig Halvorson,Craig Halvorson,Craig Halvorson,Craig Halvorson | http://isabell.info | Tess | http://kailyn.info | +| | | | | | | | | Eileen | http://manley.name | +| | | | | | | | | Conor | https://glenna.name | +| | | | | | | | | Sylvester | http://gaylord.biz | +| | | | | | | | | Maxime | https://tom.com | +| Chief Solutions Administrator | 0.4.1 | Unknown | | 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 | Shaun | https://antwan.org | +| | | | | | | | | Hazel | https://forrest.net | +| | | | | | | | | Brianne | https://dorothea.name | +| | | | | | | | | Don | http://torey.com | +| | | | | | | | | Cedrick | https://zachariah.net | +| | | | | | | | | Marcelle | https://adah.org | +| | | | | | | | | Barney | http://erica.org | +| | | | | | | | | Jordi | https://alysha.com | +| | | | | | | | | Kristina | https://pattie.info | +| | | | | | | | | Cory | http://kailey.com | +| International Intranet Planner | 1.3.4 | Expression | 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 | Ahmad | https://lupe.com | +| | | | | | | | | Randi | https://jaiden.biz | +| | | | | | | | | Patience | https://marlene.name | +| | | | | | | | | Lenna | https://franco.name | +| | | | | | | | | Kyleigh | https://tevin.name | +| | | | | | | | | Sallie | https://jordane.name | +| | | | | | | | | Willy | https://daija.info | +| | | | | | | | | Jannie | https://retta.net | +| | | | | | | | | Lottie | http://yasmine.com | +| | | | | | | | | Delia | http://khalil.com | +| Investor Operations Director | 5.6.0 | Expression | Try to input the AI microchip, maybe it will input the 1080p microchip! | | If we synthesize the sensor, we can get to the AI sensor through the redundant AI sensor! | | https://alene.info | Elouise | https://ron.com | +| | | | | | | | | Brown | https://cordia.com | +| | | | | | | | | Ericka | https://eugene.com | +| | | | | | | | | Rashad | http://thomas.com | +| | | | | | | | | Antonia | https://marcelle.org | +| Dynamic Group Associate | 6.6.1 | Ignored | We need to input the open-source SMTP bus! | | | | http://kian.name | Burley | http://lemuel.com | +| | | | | | | | | Brenden | http://agnes.net | +| | | | | | | | | Urban | https://micheal.name | +| | | | | | | | | Ida | https://murray.org | +| | | | | | | | | Samanta | http://assunta.biz | +| | | | | | | | | Florencio | http://bradford.info | +| | | | | | | | | Marcella | http://ray.net | +| | | | | | | | | Gunnar | https://elissa.net | +| | | | | | | | | Maud | https://edgar.name | +| | | | | | | | | Angelina | https://adonis.biz | +| Principal Assurance Representative | 3.8.2 | Ignored | | | | Patsy Erdman,Patsy Erdman,Patsy Erdman,Patsy Erdman | | Jadon | https://amelia.biz | +| | | | | | | | | Toni | http://angie.name | +| | | | | | | | | Ardella | http://melissa.net | +| | | | | | | | | Sandra | http://pearline.org | +| | | | | | | | | Noble | https://dusty.net | +| Product Interactions Planner | 7.4.0 | Expression | Try to navigate the PCI matrix, maybe it will navigate the haptic matrix! | | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | http://bertha.net | Rey | https://connie.info | +| | | | | | | | | Hollie | http://rico.name | +| | | | | | | | | Marshall | http://pierce.org | +| | | | | | | | | 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 | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | Julius Abbott | http://celestine.info | Ettie | http://lonny.net | +| | | | | | | | | Onie | https://cassie.biz | +| | | | | | | | | Solon | https://buck.biz | +| Global Mobility Facilitator | 8.5.9 | Url | | We need to parse the primary PCI protocol! | | Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch | https://itzel.info | Mitchel | http://carleton.name | +| | | | | | | | | Madalyn | http://narciso.net | +| | | | | | | | | Mia | http://nicklaus.net | +| | | | | | | | | Abelardo | http://carolina.name | +| Forward Tactics Agent | 6.8.8 | Url | | We need to back up the primary SMTP circuit! | The COM bandwidth is down, input the auxiliary bandwidth so we can input the COM bandwidth! | Jon Schulist,Jon Schulist | https://flo.info | Diana | http://eula.name | +| | | | | | | | | Raphael | https://zackery.info | +| | | | | | | | | Nettie | https://brayan.com | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_49a56785212c2cd2.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_49a56785212c2cd2.verified.txt new file mode 100644 index 00000000..7f86595e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_49a56785212c2cd2.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Future Integration Analyst | 9.0.4 | Expression | | | Abner | http://tavares.info | +| | | | | | Johann | http://andres.net | +| | | | | | Jaquan | http://carey.org | +| | | | | | Arvel | http://mortimer.org | +| | | | | | Alicia | http://paula.com | +| | | | | | Heidi | http://letha.name | +| | | | | | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Paige | https://remington.info | +| | | | | | Aletha | https://isobel.info | +| | | | | | Pearline | https://johnathon.info | +| | | | | | Eleanora | http://jaeden.info | +| | | | | | Nikolas | https://daphney.net | +| | | | | | Oceane | http://clifton.com | +| | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | http://marina.com | Myles | http://nikko.name | +| | | | | | Rolando | http://nikko.name | +| | | | | | Pamela | https://aliza.net | +| | | | | | Marcella | http://helga.net | +| | | | | | Alisha | http://alyson.name | +| | | | | | Carmelo | http://michele.name | +| | | | | | Miles | https://freddie.com | +| | | | | | Kade | https://jaunita.biz | +| | | | | | Marcelina | http://donna.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_49c0b140de2e11a7.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_49c0b140de2e11a7.verified.txt new file mode 100644 index 00000000..34142cb8 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_49c0b140de2e11a7.verified.txt @@ -0,0 +1,40 @@ +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4a512278836898a1.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4a512278836898a1.verified.txt new file mode 100644 index 00000000..52558874 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4a512278836898a1.verified.txt @@ -0,0 +1,39 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4a7465d4cfd6c79b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4a7465d4cfd6c79b.verified.txt new file mode 100644 index 00000000..82964184 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4a7465d4cfd6c79b.verified.txt @@ -0,0 +1,40 @@ +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4a9f608cefff6a29.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4a9f608cefff6a29.verified.txt new file mode 100644 index 00000000..285a8944 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4a9f608cefff6a29.verified.txt @@ -0,0 +1,110 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | -------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | -------------------- | --------- | ---------------------- | +| Direct Accountability Assistant | 2.2.8 | Url | bypassing the protocol won't do anything, we need to compress the primary HTTP protocol! | | http://natasha.info | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Forward Marketing Orchestrator | 1.6.4 | Overwrite | I'll connect the primary SQL sensor, that should sensor the SQL sensor! | The SMTP driver is down, bypass the mobile driver so we can bypass the SMTP driver! | https://lukas.com | | | +| Global Division Designer | 8.2.7 | Expression | Try to program the EXE hard drive, maybe it will program the virtual hard drive! | | https://pamela.name | | | +| National Intranet Technician | 8.0.0 | Overwrite | | | | | | +| Central Tactics Engineer | 6.3.5 | Unknown | connecting the bandwidth won't do anything, we need to bypass the multi-byte AI bandwidth! | | | | | +| Dynamic Quality Analyst | 0.9.5 | Overwrite | We need to index the optical HTTP application! | I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor! | | | | +| Central Identity Analyst | 8.9.6 | Expression | | | http://leta.org | | | +| Dynamic Division Consultant | 4.8.7 | Overwrite | Use the multi-byte IB microchip, then you can connect the multi-byte microchip! | backing up the feed won't do anything, we need to compress the haptic SMTP feed! | http://raquel.net | | | +| Dynamic Accountability Analyst | 4.9.7 | Overwrite | | | https://jaron.info | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | | | +| Regional Factors Designer | 7.4.1 | Overwrite | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | | | | +| National Research Facilitator | 6.0.6 | Expression | Use the primary EXE array, then you can navigate the primary array! | | | | | +| Principal Markets Designer | 3.8.8 | Overwrite | overriding the transmitter won't do anything, we need to generate the cross-platform SCSI transmitter! | | | | | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | | | +| Chief Factors Supervisor | 5.2.2 | Expression | | | http://helga.com | | | +| Human Directives Specialist | 4.3.4 | Unknown | Use the digital XSS hard drive, then you can compress the digital hard drive! | You can't generate the card without synthesizing the bluetooth PNG card! | | | | +| Human Optimization Producer | 5.0.9 | Overwrite | | | | | | +| Legacy Directives Officer | 2.4.4 | Url | | The PCI program is down, hack the multi-byte program so we can hack the PCI program! | http://sedrick.biz | | | +| Direct Data Orchestrator | 2.4.5 | Expression | | Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor! | | | | +| Human Optimization Facilitator | 7.4.8 | Overwrite | 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! | https://cooper.name | | | +| Corporate Marketing Assistant | 8.7.9 | Url | | You can't program the firewall without connecting the wireless AI firewall! | http://arlene.biz | | | +| Senior Security Consultant | 2.7.5 | Unknown | | | http://adelbert.biz | | | +| Human Quality Facilitator | 1.2.0 | Expression | We need to copy the online THX firewall! | You can't calculate the application without calculating the auxiliary AI application! | | | | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | | | +| Chief Applications Facilitator | 7.7.6 | Overwrite | | parsing the card won't do anything, we need to synthesize the online SQL card! | | | | +| Senior Optimization Assistant | 3.6.0 | Overwrite | | overriding the pixel won't do anything, we need to copy the optical JSON pixel! | http://akeem.info | | | +| Lead Branding Developer | 4.1.5 | Url | | | http://abe.com | | | +| Customer Functionality Consultant | 5.5.1 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | http://terence.com | | | +| National Solutions Associate | 9.1.2 | Overwrite | | | | | | +| Legacy Directives Supervisor | 9.6.2 | Url | The PNG circuit is down, back up the online circuit so we can back up the PNG circuit! | | | | | +| Product Assurance Technician | 0.8.2 | Overwrite | | | https://steve.info | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Chief Division Producer | 2.3.9 | Overwrite | | | | | | +| Chief Intranet Facilitator | 6.6.1 | Expression | | | https://rosalind.net | | | +| National Creative Coordinator | 5.9.5 | Expression | | | https://bobbie.info | | | +| Central Web Assistant | 4.2.1 | Unknown | | Use the wireless ADP array, then you can input the wireless array! | https://verda.net | | | +| 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 | | | +| Direct Mobility Designer | 7.7.3 | Expression | | | http://geovanny.info | | | +| Internal Directives Designer | 0.4.8 | Url | The EXE protocol is down, reboot the redundant protocol so we can reboot the EXE protocol! | | | | | +| Dynamic Accountability Strategist | 7.0.9 | Unknown | You can't bypass the sensor without transmitting the neural JSON sensor! | | | | | +| Human Program Technician | 2.8.4 | Unknown | | | http://tomasa.info | | | +| Regional Operations Coordinator | 0.2.5 | Unknown | | I'll hack the cross-platform SSL array, that should array the SSL array! | http://ena.com | | | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | | | +| Future Accounts Architect | 9.1.8 | Url | You can't bypass the firewall without indexing the multi-byte COM firewall! | | https://fermin.biz | | | +| Human Operations Assistant | 0.7.2 | Overwrite | Use the haptic USB driver, then you can override the haptic driver! | | http://camila.net | | | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| Forward Intranet Engineer | 2.5.9 | Expression | The RSS sensor is down, input the 1080p sensor so we can input the RSS sensor! | Try to index the ADP port, maybe it will index the auxiliary port! | | | | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | | | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | | | +| District Operations Director | 0.6.3 | Url | | We need to program the cross-platform FTP hard drive! | https://dejah.net | | | +| Forward Configuration Supervisor | 9.0.8 | Overwrite | You can't program the protocol without overriding the primary IB protocol! | | http://quinn.name | | | +| Investor Implementation Technician | 2.7.9 | Unknown | | | http://crystal.name | | | +| Investor Creative Architect | 8.2.4 | Unknown | | | | | | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| Corporate Tactics Director | 2.5.7 | Url | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | http://marcos.info | | | +| International Intranet Planner | 6.4.6 | Url | The IB interface is down, program the redundant interface so we can program the IB interface! | | https://lenna.com | | | +| Senior Brand Analyst | 2.5.0 | Url | | overriding the interface won't do anything, we need to override the virtual THX interface! | | | | +| Dynamic Integration Architect | 1.6.3 | Overwrite | | The RAM feed is down, copy the neural feed so we can copy the RAM feed! | | | | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | http://hanna.net | | | +| Dynamic Factors Facilitator | 6.5.2 | Expression | | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | http://magnolia.com | | | +| Principal Accounts Coordinator | 1.0.4 | Overwrite | | I'll connect the digital JSON bus, that should bus the JSON bus! | http://rene.com | | | +| Corporate Directives Planner | 8.8.5 | Unknown | The CSS bus is down, generate the 1080p bus so we can generate the CSS bus! | We need to back up the 1080p SMTP feed! | | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Forward Functionality Developer | 5.1.1 | Url | | | | | | +| International Functionality Agent | 8.7.6 | Unknown | | If we hack the card, we can get to the JBOD card through the optical JBOD card! | http://jalyn.org | | | +| Senior Factors Administrator | 1.6.1 | Expression | I'll calculate the solid state ADP panel, that should panel the ADP panel! | If we generate the circuit, we can get to the XSS circuit through the primary XSS circuit! | | | | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | | | +| International Quality Director | 0.3.8 | Expression | | | | | | +| National Communications Orchestrator | 4.5.1 | Unknown | The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit! | | | | | +| Global Program Representative | 5.1.0 | Url | | If we back up the monitor, we can get to the PCI monitor through the virtual PCI monitor! | | | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | | | +| Human Group Designer | 9.9.1 | Expression | Use the haptic XSS application, then you can synthesize the haptic application! | If we transmit the hard drive, we can get to the AGP hard drive through the bluetooth AGP hard drive! | http://jodie.org | | | +| Investor Interactions Liaison | 4.4.9 | Overwrite | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | | | | +| Product Creative Facilitator | 8.4.6 | Unknown | 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://juliana.net | | | +| Direct Assurance Strategist | 1.3.7 | Expression | The RSS firewall is down, hack the neural firewall so we can hack the RSS firewall! | | | | | +| Lead Usability Assistant | 1.3.4 | Overwrite | quantifying the matrix won't do anything, we need to synthesize the wireless PCI matrix! | Use the solid state SQL firewall, then you can connect the solid state firewall! | https://duane.info | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Human Directives Engineer | 5.3.9 | Url | | | | | | +| National Applications Designer | 6.4.9 | Expression | | Use the back-end SMS feed, then you can program the back-end feed! | | | | +| Global Mobility Facilitator | 9.5.8 | Expression | | | | | | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | -------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4ad093a2f97a5402.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4ad093a2f97a5402.verified.txt new file mode 100644 index 00000000..42162f1e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4ad093a2f97a5402.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4b115c3dfbe9a6a5.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4b115c3dfbe9a6a5.verified.txt new file mode 100644 index 00000000..0b01a057 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4b115c3dfbe9a6a5.verified.txt @@ -0,0 +1,130 @@ +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Accountability Designer | 0.8.0 | Ignored | We need to hack the online FTP application! | | Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn | http://taya.info | Abelardo | http://carolina.name | +| | | | | | | | Lindsey | http://rigoberto.org | +| | | | | | | | Lou | http://darlene.biz | +| | | | | | | | Oliver | https://filomena.com | +| | | | | | | | Vincenzo | https://ulices.biz | +| | | | | | | | Florida | http://jovan.net | +| | | | | | | | Ari | https://chad.com | +| | | | | | | | Yvonne | http://jada.name | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| Legacy Usability Coordinator | 5.8.8 | Overwrite | Try to calculate the PNG port, maybe it will calculate the back-end port! | | | http://thora.info | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Senior Solutions Strategist | 7.5.0 | 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 | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Customer Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| Corporate Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | http://celestine.info | Clemens | https://abagail.info | +| | | | | | | | Franz | http://prudence.info | +| | | | | | | | Casper | https://alva.com | +| | | | | | | | Mario | http://alexandria.biz | +| Dynamic Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.biz | +| Legacy Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4b7c6c7318a096b7.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4b7c6c7318a096b7.verified.txt new file mode 100644 index 00000000..eee37253 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4b7c6c7318a096b7.verified.txt @@ -0,0 +1,19 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4b94ac0e300a3a90.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4b94ac0e300a3a90.verified.txt new file mode 100644 index 00000000..c1f8a346 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4b94ac0e300a3a90.verified.txt @@ -0,0 +1,110 @@ +| ----------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | --------- | --------------------- | +| Global Paradigm Assistant | 8.0.5 | Expression | We need to calculate the solid state HTTP hard drive! | | | https://randy.org | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Marketing Coordinator | 3.6.1 | Overwrite | | | | https://marcos.org | | | +| Dynamic Implementation Engineer | 6.7.1 | Overwrite | We need to transmit the open-source EXE interface! | | | http://margie.info | | | +| District Interactions Supervisor | 4.5.2 | Url | The XSS capacitor is down, generate the bluetooth capacitor so we can generate the XSS capacitor! | The ADP firewall is down, input the primary firewall so we can input the ADP firewall! | | | | | +| Central Research Technician | 2.8.8 | Url | | You can't generate the program without connecting the bluetooth USB program! | | | | | +| Principal Operations Assistant | 0.9.0 | Url | I'll copy the auxiliary HDD bus, that should bus the HDD bus! | I'll copy the digital USB circuit, that should circuit the USB circuit! | | | | | +| Human Identity Representative | 4.1.5 | Overwrite | The SAS bus is down, program the neural bus so we can program the SAS bus! | | Joyce Auer,Joyce Auer,Joyce Auer | http://alyce.biz | | | +| Forward Usability Specialist | 5.6.9 | Overwrite | I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth! | | | | | | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | | | +| National Assurance Planner | 2.7.7 | Unknown | | I'll reboot the online AGP alarm, that should alarm the AGP alarm! | Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag | | | | +| International Tactics Administrator | 9.9.9 | Url | | | | | | | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Customer Solutions Officer | 4.5.2 | Expression | You can't copy the matrix without compressing the wireless AGP matrix! | | | https://rylan.name | | | +| Direct Brand Director | 4.7.4 | Url | You can't navigate the capacitor without programming the solid state SQL capacitor! | | | | | | +| Global Optimization Architect | 1.5.0 | Unknown | Try to navigate the SCSI sensor, maybe it will navigate the mobile sensor! | | | | | | +| Human Tactics Facilitator | 5.7.0 | Url | Try to bypass the HTTP application, maybe it will bypass the digital application! | | | | | | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | | | +| Human Program Analyst | 3.1.8 | Expression | If we back up the application, we can get to the USB application through the cross-platform USB application! | | | http://efrain.org | | | +| Dynamic Security Specialist | 7.8.5 | Overwrite | Try to input the GB pixel, maybe it will input the wireless pixel! | You can't transmit the bus without indexing the digital TCP bus! | Guy Waters,Guy Waters | http://nova.biz | | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | | | +| Product Directives Engineer | 8.2.3 | Unknown | transmitting the bus won't do anything, we need to navigate the online IB bus! | | Maggie Lindgren | | | | +| Chief Factors Developer | 5.9.5 | Url | | Try to connect the ADP system, maybe it will connect the solid state system! | Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady | | | | +| Investor Quality Associate | 0.5.1 | Expression | | Try to reboot the SSL alarm, maybe it will reboot the solid state alarm! | Carrie Hansen,Carrie Hansen,Carrie Hansen,Carrie Hansen | https://ezequiel.biz | | | +| Human Paradigm Assistant | 8.8.8 | Expression | | | Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich | | | | +| Dynamic Branding Manager | 1.4.0 | Overwrite | You can't navigate the application without generating the cross-platform COM application! | Try to program the FTP alarm, maybe it will program the virtual alarm! | | http://dario.info | | | +| Regional Optimization Administrator | 3.6.4 | Expression | | I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive! | | http://serenity.info | | | +| Customer Web Assistant | 1.9.0 | Unknown | | | | | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Dynamic Data Technician | 4.2.3 | Url | I'll copy the optical RAM feed, that should feed the RAM feed! | | June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds | http://nia.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 | | | +| District Optimization Technician | 5.2.3 | Overwrite | | | Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti | https://douglas.info | | | +| Dynamic Factors Associate | 1.8.3 | Unknown | | You can't navigate the panel without calculating the open-source THX panel! | | http://dovie.name | | | +| Forward Data Orchestrator | 3.3.5 | Expression | Use the haptic XML driver, then you can index the haptic driver! | compressing the system won't do anything, we need to compress the optical RSS system! | | | | | +| Lead Operations Supervisor | 4.5.2 | Expression | The AI panel is down, transmit the open-source panel so we can transmit the AI panel! | | | | | | +| International Brand Strategist | 3.9.3 | Url | | | Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy | https://rowena.info | | | +| Corporate Intranet Specialist | 3.5.6 | Expression | | | Edmund Lehner,Edmund Lehner,Edmund Lehner,Edmund Lehner | | | | +| Global Identity Supervisor | 0.9.1 | Overwrite | | | | | | | +| Chief Infrastructure Specialist | 9.0.5 | Overwrite | hacking the port won't do anything, we need to back up the optical SMS port! | | Jackie Schumm | | | | +| Central Division Administrator | 1.0.4 | Overwrite | We need to program the optical COM microchip! | We need to hack the haptic SAS microchip! | | | | | +| International Branding Producer | 3.8.2 | Expression | We need to generate the solid state AGP microchip! | | | | | | +| Principal Intranet Architect | 4.9.3 | Unknown | | | | | | | +| Customer Program Developer | 2.9.8 | Expression | | You can't transmit the pixel without calculating the bluetooth FTP pixel! | | http://lenora.com | | | +| Dynamic Security Director | 0.0.2 | Url | transmitting the feed won't do anything, we need to navigate the redundant SDD feed! | Try to parse the HTTP port, maybe it will parse the bluetooth port! | Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block | | | | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | | | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | | | +| Dynamic Solutions Agent | 0.0.5 | Overwrite | Use the haptic USB card, then you can navigate the haptic card! | | | | | | +| International Solutions Planner | 9.0.0 | Url | Use the multi-byte SMTP program, then you can synthesize the multi-byte program! | | | | | | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | | | +| Customer Branding Orchestrator | 8.3.7 | Overwrite | | We need to bypass the neural USB capacitor! | Nora Dietrich | http://nona.com | | | +| Investor Accounts Facilitator | 7.7.8 | Expression | | | Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman | http://scottie.biz | | | +| Legacy Security Facilitator | 1.9.0 | Expression | | Use the cross-platform ADP alarm, then you can back up the cross-platform alarm! | | https://edythe.info | | | +| Regional Directives Liaison | 4.7.8 | Expression | If we connect the interface, we can get to the SCSI interface through the auxiliary SCSI interface! | | Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic | https://glennie.biz | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| Product Functionality Supervisor | 9.4.5 | Overwrite | Use the 1080p AI microchip, then you can reboot the 1080p microchip! | Use the open-source ADP matrix, then you can copy the open-source matrix! | | | | | +| 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 | | | | +| Future Configuration Officer | 7.6.0 | Unknown | You can't compress the alarm without parsing the optical JBOD alarm! | I'll compress the back-end SSL system, that should system the SSL system! | Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie | | | | +| Lead Program Technician | 5.8.9 | Expression | | We need to transmit the back-end AGP sensor! | Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer | http://curtis.org | | | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | | | +| Chief Program Associate | 2.6.7 | Unknown | We need to compress the optical PNG array! | | Wilbert Kunze,Wilbert Kunze,Wilbert Kunze,Wilbert Kunze | http://coy.info | | | +| Regional Metrics Strategist | 1.2.1 | Unknown | | Try to override the GB driver, maybe it will override the digital driver! | | | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | | | +| District Assurance Technician | 8.5.5 | Overwrite | | | | http://zander.com | | | +| Customer Communications Engineer | 6.9.4 | Overwrite | | | Tanya Reinger,Tanya Reinger,Tanya Reinger | http://tito.name | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Investor Tactics Director | 0.4.3 | Expression | | | | https://aylin.com | | | +| Future Tactics Assistant | 1.5.5 | Expression | The IB sensor is down, reboot the virtual sensor so we can reboot the IB sensor! | If we calculate the matrix, we can get to the SMS matrix through the bluetooth SMS matrix! | | https://giovanny.net | | | +| Global Optimization Engineer | 8.7.9 | Expression | | quantifying the transmitter won't do anything, we need to synthesize the auxiliary FTP transmitter! | | http://aniya.org | | | +| Principal Brand Executive | 7.2.7 | Unknown | | | | https://dariana.com | | | +| Human Accounts Orchestrator | 4.1.6 | Url | | | | | | | +| Direct Division Officer | 6.5.6 | Url | transmitting the protocol won't do anything, we need to generate the multi-byte THX protocol! | | Glenda Schuppe,Glenda Schuppe | http://catherine.name | | | +| Regional Functionality Agent | 5.9.9 | Overwrite | We need to index the 1080p SAS hard drive! | I'll connect the digital JBOD application, that should application the JBOD application! | Gloria Williamson,Gloria Williamson,Gloria Williamson,Gloria Williamson | http://arthur.net | | | +| Senior Configuration Developer | 4.0.9 | Url | Use the primary SCSI matrix, then you can program the primary matrix! | If we parse the interface, we can get to the JSON interface through the mobile JSON interface! | Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle | | | | +| Human Markets Planner | 5.0.1 | Expression | Try to back up the COM driver, maybe it will back up the bluetooth driver! | | | | | | +| Lead Solutions Technician | 1.5.7 | Unknown | | | | | | | +| Product Solutions Manager | 9.5.2 | Overwrite | I'll hack the primary SDD card, that should card the SDD card! | hacking the transmitter won't do anything, we need to index the open-source CSS transmitter! | Sergio Bailey,Sergio Bailey,Sergio Bailey | | | | +| Dynamic Division Representative | 7.3.5 | Unknown | | I'll index the haptic FTP alarm, that should alarm the FTP alarm! | Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson | http://taurean.net | | | +| Customer Mobility Assistant | 4.2.9 | 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 | http://adonis.biz | | | +| ----------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4b9db30370660cf4.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4b9db30370660cf4.verified.txt new file mode 100644 index 00000000..2d571232 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4b9db30370660cf4.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4bb4a65154623be5.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4bb4a65154623be5.verified.txt new file mode 100644 index 00000000..5abdbc88 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4bb4a65154623be5.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4bf49aa5a8eea459.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4bf49aa5a8eea459.verified.txt new file mode 100644 index 00000000..80f20af9 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4bf49aa5a8eea459.verified.txt @@ -0,0 +1,39 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4bf7d1a34f6c999b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4bf7d1a34f6c999b.verified.txt new file mode 100644 index 00000000..21e971f5 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4bf7d1a34f6c999b.verified.txt @@ -0,0 +1,16 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | --------------------- | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | Clare | https://bobby.info | +| | | | | | | Cecil | https://kira.net | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4ca8444dd35e7350.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4ca8444dd35e7350.verified.txt new file mode 100644 index 00000000..cac62e52 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4ca8444dd35e7350.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | --------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | --------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4e296fffbc54128d.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4e296fffbc54128d.verified.txt new file mode 100644 index 00000000..e65ed6e4 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4e296fffbc54128d.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4ea6360560090c80.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4ea6360560090c80.verified.txt new file mode 100644 index 00000000..a9203bf1 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4ea6360560090c80.verified.txt @@ -0,0 +1,33 @@ +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | --------- | --------------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | --------- | --------------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | Unknown | 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 Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | --------- | --------------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4eafeab72f69d105.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4eafeab72f69d105.verified.txt new file mode 100644 index 00000000..a08751e8 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4eafeab72f69d105.verified.txt @@ -0,0 +1,128 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | +| Chief Data Orchestrator | 4.3.2 | Ignored | | | We need to back up the multi-byte SCSI transmitter! | http://gaylord.com | Taya | http://micaela.biz | +| | | | | | | | Evert | http://tomas.net | +| | | | | | | | Brett | http://virginie.net | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Internal Branding Executive | 2.0.9 | Overwrite | | The SAS sensor is down, input the auxiliary sensor so we can input the SAS sensor! | You can't bypass the application without programming the solid state COM application! | https://efrain.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 | +| International Assurance Executive | 2.8.5 | Ignored | The RSS driver is down, transmit the solid state driver so we can transmit the RSS driver! | | We need to parse the optical FTP driver! | http://antonina.com | Alvah | http://otha.name | +| | | | | | | | Natasha | https://nyah.com | +| | | | | | | | Oliver | http://ettie.biz | +| | | | | | | | Lonny | https://onie.org | +| | | | | | | | Cassie | http://solon.net | +| | | | | | | | Buck | http://taryn.com | +| | | | | | | | Hilton | http://isabel.com | +| Legacy Creative Liaison | 0.4.6 | Expression | | The SMS system is down, back up the open-source system so we can back up the SMS system! | I'll connect the optical FTP program, that should program the FTP program! | | Candice | http://linnea.com | +| | | | | | | | Everardo | http://daryl.net | +| | | | | | | | Jerrod | http://laila.com | +| | | | | | | | Caleigh | https://adolfo.com | +| | | | | | | | Daisha | http://justine.biz | +| | | | | | | | Americo | http://tessie.org | +| | | | | | | | Howard | https://luis.info | +| Investor Creative Architect | 4.5.6 | Overwrite | | The PCI microchip is down, input the cross-platform microchip so we can input the PCI microchip! | If we quantify the transmitter, we can get to the XML transmitter through the optical XML transmitter! | | Selmer | https://jairo.info | +| | | | | | | | Juanita | http://holly.name | +| | | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | | Adalberto | https://sister.biz | +| | | | | | | | Gerald | https://vidal.com | +| | | | | | | | Lucio | http://clemmie.info | +| Global Optimization Architect | 4.8.0 | Expression | | 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://gaylord.name | Vida | https://theresia.biz | +| | | | | | | | Ransom | http://isom.com | +| | | | | | | | Anastasia | http://kamryn.info | +| | | | | | | | Marlene | https://cyril.name | +| | | | | | | | Zetta | http://pete.org | +| | | | | | | | Candida | https://craig.biz | +| | | | | | | | Timmothy | https://joanny.biz | +| Lead Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Regional Paradigm Assistant | 9.8.0 | Url | | If we input the transmitter, we can get to the HDD transmitter through the bluetooth HDD transmitter! | | | Jordan | https://kathryne.name | +| | | | | | | | Mayra | http://lance.name | +| | | | | | | | Jimmie | https://lorine.org | +| | | | | | | | Rebeka | https://malika.org | +| | | | | | | | Trinity | http://fritz.info | +| | | | | | | | Neha | https://marianne.name | +| | | | | | | | Colin | https://billie.biz | +| | | | | | | | Brielle | https://brennon.name | +| | | | | | | | Myriam | https://rosemary.name | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | Edmund | http://sadie.info | +| | | | | | | | Horacio | https://loraine.name | +| | | | | | | | Sandra | https://emil.info | +| | | | | | | | Dayana | https://leila.info | +| | | | | | | | Micah | http://darien.com | +| | | | | | | | Ethel | http://shakira.net | +| Dynamic Data Director | 8.6.8 | Overwrite | | | We need to back up the primary SMTP circuit! | https://timothy.info | Kirsten | http://madisyn.com | +| | | | | | | | Murray | https://destinee.com | +| | | | | | | | Emanuel | https://keely.info | +| | | | | | | | Obie | https://caleigh.net | +| | | | | | | | Albin | http://flavie.com | +| | | | | | | | Lavonne | http://kaitlyn.com | +| | | | | | | | Osborne | https://joesph.name | +| | | | | | | | Michael | https://kali.com | +| Investor Usability Producer | 9.7.6 | Url | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | Jett | https://randal.biz | +| | | | | | | | Leif | http://chaz.name | +| | | | | | | | Tristian | http://susie.com | +| | | | | | | | Carmelo | https://kariane.com | +| | | | | | | | Sofia | http://daphnee.name | +| | | | | | | | Nedra | http://orland.info | +| | | | | | | | Hilton | http://shany.info | +| Dynamic Program Associate | 5.9.7 | Expression | | | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Suzanne | http://ima.name | +| | | | | | | | Earnestine | http://nathanial.biz | +| | | | | | | | Connor | https://augustus.net | +| | | | | | | | Araceli | http://hailey.biz | +| | | | | | | | Janessa | https://craig.com | +| | | | | | | | Erica | http://kristin.org | +| | | | | | | | Alek | http://shany.biz | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| Corporate Tactics Analyst | 3.0.8 | Overwrite | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | Use the virtual RAM monitor, then you can override the virtual monitor! | | | Hildegard | http://conner.name | +| | | | | | | | 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 | +| | | | | | | | Irving | https://sydnie.org | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Dynamic Quality Officer | 8.9.2 | Ignored | | | | https://danika.org | Jadon | https://amelia.biz | +| | | | | | | | Toni | http://angie.name | +| | | | | | | | Ardella | http://melissa.net | +| | | | | | | | Sandra | http://pearline.org | +| | | | | | | | Noble | https://dusty.net | +| Human Accounts Executive | 7.6.7 | Unknown | Use the auxiliary PNG interface, then you can generate the auxiliary interface! | | You can't connect the interface without backing up the optical SMTP interface! | http://kristin.net | Seamus | http://maybell.info | +| | | | | | | | Monserrat | http://katrine.name | +| | | | | | | | Abel | https://geovany.com | +| | | | | | | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| Lead Integration Engineer | 8.7.4 | Unknown | | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | http://jackeline.biz | Reanna | http://buck.net | +| | | | | | | | Christine | http://demarco.name | +| | | | | | | | Marge | http://astrid.net | +| | | | | | | | Charlene | http://rod.net | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4eeccf3f5c0f0d26.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4eeccf3f5c0f0d26.verified.txt new file mode 100644 index 00000000..26082f20 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4eeccf3f5c0f0d26.verified.txt @@ -0,0 +1,142 @@ +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Dynamic Group Associate | 6.6.1 | Unknown | We need to input the open-source SMTP bus! | | http://kian.name | Neil | https://burley.info | +| | | | | | | Lemuel | http://brenden.info | +| | | | | | | Agnes | https://urban.org | +| | | | | | | Micheal | https://ida.net | +| | | | | | | Murray | https://samanta.com | +| | | | | | | Assunta | http://florencio.com | +| Future Mobility Strategist | 4.7.6 | Overwrite | Use the virtual ADP bandwidth, then you can calculate the virtual bandwidth! | | http://gerardo.net | Cathy | http://giovanna.info | +| | | | | | | Ike | https://jerome.biz | +| | | | | | | Emerald | https://camren.net | +| | | | | | | Sheila | https://garry.org | +| Future Response Consultant | 9.3.1 | Unknown | | | https://ulices.biz | Ari | https://chad.com | +| | | | | | | Yvonne | http://jada.name | +| | | | | | | Noemie | https://kayley.name | +| | | | | | | Brandon | http://kristopher.name | +| | | | | | | Maggie | http://kimberly.info | +| | | | | | | Veronica | https://mya.net | +| | | | | | | Marty | https://obie.net | +| | | | | | | Braxton | http://flavio.net | +| | | | | | | Jeramie | http://jaycee.net | +| Customer Program Consultant | 5.0.4 | Ignored | Try to compress the GB system, maybe it will compress the neural system! | Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan | http://kieran.biz | Bettie | http://edmund.info | +| | | | | | | Sadie | http://horacio.org | +| | | | | | | Loraine | https://sandra.org | +| | | | | | | Emil | http://dayana.net | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Lead Creative Administrator | 9.0.0 | Overwrite | Use the virtual RAM monitor, then you can override the virtual monitor! | | https://roderick.net | Hildegard | http://conner.name | +| | | | | | | 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 | +| | | | | | | Irving | https://sydnie.org | +| Chief Data Director | 2.1.5 | Unknown | Use the haptic PCI bandwidth, then you can generate the haptic bandwidth! | | | Earnestine | http://nathanial.biz | +| | | | | | | Connor | https://augustus.net | +| | | | | | | Araceli | http://hailey.biz | +| | | | | | | Janessa | https://craig.com | +| | | | | | | Erica | http://kristin.org | +| | | | | | | Alek | http://shany.biz | +| | | | | | | Camren | http://joany.info | +| Direct Tactics Technician | 2.8.6 | Unknown | Try to quantify the SAS port, maybe it will quantify the wireless port! | | | Demond | http://stefan.name | +| | | | | | | Norval | http://annie.net | +| | | | | | | Destin | http://penelope.name | +| Future Group Assistant | 1.7.9 | Expression | Use the multi-byte AI port, then you can reboot the multi-byte port! | | | Darien | http://mitchel.biz | +| | | | | | | Carleton | https://madalyn.com | +| | | | | | | Narciso | https://mia.com | +| | | | | | | Nicklaus | https://abelardo.com | +| | | | | | | Carolina | https://lindsey.info | +| | | | | | | Rigoberto | https://lou.biz | +| Product Identity Analyst | 5.9.3 | Expression | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | | Rey | https://connie.info | +| | | | | | | Hollie | http://rico.name | +| | | | | | | Marshall | http://pierce.org | +| | | | | | | 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 | +| Investor Creative Architect | 4.5.6 | Overwrite | | Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| | | | | | | Retta | https://lottie.biz | +| | | | | | | Yasmine | http://delia.com | +| | | | | | | Khalil | http://jewel.net | +| | | | | | | Roy | https://johanna.org | +| | | | | | | Price | https://itzel.info | +| | | | | | | Dalton | https://daren.info | +| | | | | | | Arnold | http://arlo.org | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| Investor Identity Developer | 4.2.0 | Url | | Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| | | | | | | Keely | http://obie.org | +| | | | | | | Caleigh | https://albin.info | +| | | | | | | Flavie | http://lavonne.biz | +| | | | | | | Kaitlyn | http://osborne.org | +| Corporate Accountability Designer | 0.8.0 | Overwrite | We need to hack the online FTP application! | | http://taya.info | Carlee | http://britney.name | +| | | | | | | Tess | http://julian.biz | +| | | | | | | Isadore | http://billy.net | +| | | | | | | Alice | http://vern.net | +| | | | | | | King | http://trace.net | +| | | | | | | Carmela | https://adolf.info | +| | | | | | | Sherman | http://alec.net | +| | | | | | | Lamar | http://deion.org | +| Product Marketing Developer | 3.3.6 | Unknown | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | Lewis | https://alisa.com | +| | | | | | | Delores | https://layne.name | +| | | | | | | Delphine | https://katlynn.org | +| | | | | | | Meredith | https://johanna.info | +| | | | | | | Jacklyn | https://kadin.com | +| | | | | | | Hardy | https://donna.info | +| Global Infrastructure Developer | 5.5.0 | Url | generating the application won't do anything, we need to calculate the auxiliary JSON application! | Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger | https://austin.net | 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 | +| Internal Solutions Planner | 1.3.8 | Expression | | Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| | | | | | | Mallory | http://angeline.name | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4f369e684b4793a7.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4f369e684b4793a7.verified.txt new file mode 100644 index 00000000..fbd0321b --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4f369e684b4793a7.verified.txt @@ -0,0 +1,114 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------- | ---------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4f437a966456f36b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4f437a966456f36b.verified.txt new file mode 100644 index 00000000..ecce1a1f --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4f437a966456f36b.verified.txt @@ -0,0 +1,60 @@ +| -------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | | | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | | | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Customer Assurance Officer | 0.3.1 | Ignored | I'll navigate the digital CSS sensor, that should sensor the CSS sensor! | | | https://clementine.info | | | +| Global Implementation Strategist | 5.9.8 | Ignored | | | Colleen Schroeder,Colleen Schroeder | https://enos.info | | | +| International Optimization Coordinator | 6.5.5 | Ignored | | | Darnell Terry | http://antoinette.org | | | +| Customer Division Manager | 1.3.9 | Ignored | 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! | Rafael Altenwerth,Rafael Altenwerth,Rafael Altenwerth | | | | +| International Tactics Administrator | 9.9.9 | Url | | | | | | | +| Legacy Interactions Supervisor | 9.7.2 | Ignored | | Try to generate the SAS matrix, maybe it will generate the cross-platform matrix! | Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn | | | | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | | | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| Internal Program Designer | 7.2.5 | Ignored | We need to hack the auxiliary COM hard drive! | | | | | | +| -------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4f7ae45a9abd05ef.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4f7ae45a9abd05ef.verified.txt new file mode 100644 index 00000000..8561c063 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4f7ae45a9abd05ef.verified.txt @@ -0,0 +1,46 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4fdce49dd2ed63a6.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4fdce49dd2ed63a6.verified.txt new file mode 100644 index 00000000..e7e1ac84 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_4fdce49dd2ed63a6.verified.txt @@ -0,0 +1,51 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Investor Intranet Producer | 5.4.1 | Ignored | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | http://hyman.org | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_506fcb7bca72e678.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_506fcb7bca72e678.verified.txt new file mode 100644 index 00000000..9e714675 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_506fcb7bca72e678.verified.txt @@ -0,0 +1,8 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | ------- | -------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | ------- | -------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_51bc635588dce728.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_51bc635588dce728.verified.txt new file mode 100644 index 00000000..4b762774 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_51bc635588dce728.verified.txt @@ -0,0 +1,49 @@ +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| Legacy Response Analyst | 9.2.7 | Unknown | | Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata | http://martine.info | | | +| Dynamic Mobility Technician | 6.0.2 | Expression | | | https://keeley.net | | | +| 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 | | | +| Future Directives Planner | 5.9.7 | Ignored | Use the wireless ADP array, then you can input the wireless array! | Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki | | | | +| Principal Factors Producer | 0.8.5 | Unknown | connecting the system won't do anything, we need to override the back-end SQL system! | Devin Nolan | http://toby.info | | | +| Forward Division Strategist | 5.7.1 | Expression | You can't reboot the program without transmitting the mobile SMTP program! | Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode | https://esperanza.name | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Investor Interactions Designer | 1.9.4 | Overwrite | | | https://octavia.name | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Human Implementation Producer | 0.9.1 | Url | | | | | | +| Global Integration Assistant | 5.0.1 | Unknown | | | http://demarco.com | | | +| Regional Integration Consultant | 5.3.8 | Expression | | | http://michael.name | | | +| Dynamic Integration Assistant | 2.1.6 | Unknown | | | https://gerson.info | | | +| Central Applications Coordinator | 1.6.8 | Ignored | | | http://curtis.com | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Customer Operations Liaison | 9.0.9 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | | | | +| District Mobility Administrator | 3.2.3 | Unknown | | Christopher Dietrich,Christopher Dietrich,Christopher Dietrich,Christopher Dietrich | | | | +| Dynamic Applications Director | 5.1.4 | Unknown | | Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel | | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Future Optimization Associate | 4.0.5 | Unknown | | Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel | https://linnie.net | | | +| Future Tactics Producer | 5.8.9 | Url | navigating the pixel won't do anything, we need to parse the back-end IB pixel! | | | | | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_524be565157adc4b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_524be565157adc4b.verified.txt new file mode 100644 index 00000000..70756fa8 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_524be565157adc4b.verified.txt @@ -0,0 +1,40 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_528b178b18facd10.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_528b178b18facd10.verified.txt new file mode 100644 index 00000000..4b39a9c8 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_528b178b18facd10.verified.txt @@ -0,0 +1,9 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Judson | https://wilson.net | +| | | | | Guadalupe | http://otho.info | +| | | | | General | https://skylar.name | +| | | | | Haylie | http://audreanne.info | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_52af0a7e40ed4b55.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_52af0a7e40ed4b55.verified.txt new file mode 100644 index 00000000..c49cabb6 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_52af0a7e40ed4b55.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_52b4286a0570fb79.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_52b4286a0570fb79.verified.txt new file mode 100644 index 00000000..cfc01e56 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_52b4286a0570fb79.verified.txt @@ -0,0 +1,41 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | -------- | ---------------------- | +| Customer Metrics Analyst | 6.7.1 | Unknown | | | | | | | | +| National Security Orchestrator | 3.5.6 | Expression | Try to copy the HDD array, maybe it will copy the back-end array! | 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! | Roderick Koelpin,Roderick Koelpin,Roderick Koelpin | | | | +| Global Markets Administrator | 8.6.8 | Expression | 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! | The SSL application is down, reboot the bluetooth application so we can reboot the SSL application! | Julius Bernhard,Julius Bernhard,Julius Bernhard,Julius Bernhard | https://lois.biz | | | +| Human Accountability Developer | 6.9.0 | Unknown | If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit! | | | | | | | +| Internal Factors Facilitator | 2.6.3 | Url | | Try to copy the PNG sensor, maybe it will copy the 1080p sensor! | | Mable Kris,Mable Kris,Mable Kris,Mable Kris,Mable Kris | http://melba.name | | | +| Global Configuration Consultant | 5.9.5 | Expression | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | bypassing the bus won't do anything, we need to calculate the virtual GB bus! | | Guadalupe Littel,Guadalupe Littel,Guadalupe Littel | | | | +| Chief Functionality Planner | 5.1.2 | Unknown | | I'll calculate the 1080p HDD system, that should system the HDD system! | | Matt Mills,Matt Mills | http://myrtice.com | | | +| Lead Configuration Liaison | 1.8.9 | Expression | | connecting the transmitter won't do anything, we need to program the cross-platform XSS transmitter! | | | http://esther.biz | | | +| Regional Factors Designer | 7.4.1 | Url | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | Use the haptic RSS port, then you can transmit the haptic port! | Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus | | | | +| 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Dynamic Factors Producer | 5.7.1 | Url | | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | | | | | +| Customer Interactions Representative | 0.8.8 | Url | We need to quantify the digital SSL array! | | | | http://heather.name | | | +| Dynamic Configuration Assistant | 3.2.1 | Expression | | 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 | | | | +| District Creative Designer | 1.4.6 | Url | We need to program the haptic IB panel! | | | | http://cameron.info | | | +| Investor Interactions Designer | 1.9.4 | Url | | | parsing the card won't do anything, we need to synthesize the online SQL card! | Stella Barton,Stella Barton | https://octavia.name | | | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Future Accounts Designer | 5.1.9 | Expression | We need to navigate the wireless SAS pixel! | | | | | | | +| Corporate Intranet Associate | 7.5.1 | Overwrite | | 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! | | | | | +| Global Usability Manager | 9.1.0 | Overwrite | | Try to back up the THX interface, maybe it will back up the auxiliary interface! | | | http://vella.com | | | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| Corporate Optimization Agent | 2.7.0 | Ignored | | | | | http://bryce.com | | | +| Central Tactics Director | 4.6.7 | Url | backing up the system won't do anything, we need to parse the neural CSS system! | We need to transmit the back-end RSS transmitter! | | Doyle Osinski,Doyle Osinski,Doyle Osinski,Doyle Osinski | https://valentina.net | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_53155a3df6e5014a.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_53155a3df6e5014a.verified.txt new file mode 100644 index 00000000..c6001182 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_53155a3df6e5014a.verified.txt @@ -0,0 +1,146 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| Internal Solutions Planner | 1.3.8 | Ignored | | The COM application is down, quantify the auxiliary application so we can quantify the COM application! | | Nyah | http://oliver.com | +| | | | | | | Ettie | http://lonny.net | +| | | | | | | Onie | https://cassie.biz | +| | | | | | | Solon | https://buck.biz | +| | | | | | | Taryn | http://hilton.com | +| | | | | | | Isabel | http://rogers.net | +| | | | | | | Bertrand | http://annetta.org | +| | | | | | | Remington | https://efrain.info | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| National Creative Engineer | 4.0.0 | Ignored | You can't parse the alarm without overriding the haptic SMTP alarm! | | | Candida | https://craig.biz | +| | | | | | | Timmothy | https://joanny.biz | +| | | | | | | Alfonzo | http://dorothea.org | +| | | | | | | 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 | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Forward Directives Supervisor | 8.7.6 | Ignored | | The SSL microchip is down, hack the optical microchip so we can hack the SSL microchip! | http://shaun.org | Jadon | https://amelia.biz | +| | | | | | | Toni | http://angie.name | +| | | | | | | Ardella | http://melissa.net | +| | | | | | | Sandra | http://pearline.org | +| | | | | | | Noble | https://dusty.net | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Regional Mobility Manager | 2.7.0 | Ignored | | | http://gianni.info | Alvina | http://elouise.name | +| | | | | | | Ron | http://brown.org | +| | | | | | | Cordia | http://ericka.name | +| | | | | | | Eugene | http://rashad.info | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Chief Brand Associate | 7.6.8 | Ignored | | | https://lauriane.com | Devin | https://ramona.info | +| | | | | | | Alice | http://laverne.info | +| | | | | | | Layne | https://brooks.name | +| | | | | | | Kaitlyn | http://serenity.biz | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_531f8a6547a0bc4f.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_531f8a6547a0bc4f.verified.txt new file mode 100644 index 00000000..8a47a73a --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_531f8a6547a0bc4f.verified.txt @@ -0,0 +1,128 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Global Optimization Architect | 4.8.0 | Expression | | 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://gaylord.name | Vida | https://theresia.biz | +| | | | | | | | Ransom | http://isom.com | +| | | | | | | | Anastasia | http://kamryn.info | +| | | | | | | | Marlene | https://cyril.name | +| | | | | | | | Zetta | http://pete.org | +| | | | | | | | Candida | https://craig.biz | +| | | | | | | | Timmothy | https://joanny.biz | +| Chief Data Orchestrator | 4.3.2 | Ignored | | | We need to back up the multi-byte SCSI transmitter! | http://gaylord.com | Taya | http://micaela.biz | +| | | | | | | | Evert | http://tomas.net | +| | | | | | | | Brett | http://virginie.net | +| Dynamic Data Director | 8.6.8 | Overwrite | | | We need to back up the primary SMTP circuit! | https://timothy.info | Kirsten | http://madisyn.com | +| | | | | | | | Murray | https://destinee.com | +| | | | | | | | Emanuel | https://keely.info | +| | | | | | | | Obie | https://caleigh.net | +| | | | | | | | Albin | http://flavie.com | +| | | | | | | | Lavonne | http://kaitlyn.com | +| | | | | | | | Osborne | https://joesph.name | +| | | | | | | | Michael | https://kali.com | +| Investor Usability Producer | 9.7.6 | Url | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | Jett | https://randal.biz | +| | | | | | | | Leif | http://chaz.name | +| | | | | | | | Tristian | http://susie.com | +| | | | | | | | Carmelo | https://kariane.com | +| | | | | | | | Sofia | http://daphnee.name | +| | | | | | | | Nedra | http://orland.info | +| | | | | | | | Hilton | http://shany.info | +| Dynamic Program Associate | 5.9.7 | Expression | | | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Suzanne | http://ima.name | +| | | | | | | | Earnestine | http://nathanial.biz | +| | | | | | | | Connor | https://augustus.net | +| | | | | | | | Araceli | http://hailey.biz | +| | | | | | | | Janessa | https://craig.com | +| | | | | | | | Erica | http://kristin.org | +| | | | | | | | Alek | http://shany.biz | +| Legacy Creative Liaison | 0.4.6 | Expression | | The SMS system is down, back up the open-source system so we can back up the SMS system! | I'll connect the optical FTP program, that should program the FTP program! | | Candice | http://linnea.com | +| | | | | | | | Everardo | http://daryl.net | +| | | | | | | | Jerrod | http://laila.com | +| | | | | | | | Caleigh | https://adolfo.com | +| | | | | | | | Daisha | http://justine.biz | +| | | | | | | | Americo | http://tessie.org | +| | | | | | | | Howard | https://luis.info | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Internal Branding Executive | 2.0.9 | Overwrite | | The SAS sensor is down, input the auxiliary sensor so we can input the SAS sensor! | You can't bypass the application without programming the solid state COM application! | https://efrain.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 | +| Corporate Tactics Analyst | 3.0.8 | Overwrite | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | Use the virtual RAM monitor, then you can override the virtual monitor! | | | Hildegard | http://conner.name | +| | | | | | | | 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 | +| | | | | | | | Irving | https://sydnie.org | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| Lead Integration Engineer | 8.7.4 | Unknown | | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | http://jackeline.biz | Reanna | http://buck.net | +| | | | | | | | Christine | http://demarco.name | +| | | | | | | | Marge | http://astrid.net | +| | | | | | | | Charlene | http://rod.net | +| Investor Creative Architect | 4.5.6 | Overwrite | | The PCI microchip is down, input the cross-platform microchip so we can input the PCI microchip! | If we quantify the transmitter, we can get to the XML transmitter through the optical XML transmitter! | | Selmer | https://jairo.info | +| | | | | | | | Juanita | http://holly.name | +| | | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | | Adalberto | https://sister.biz | +| | | | | | | | Gerald | https://vidal.com | +| | | | | | | | Lucio | http://clemmie.info | +| Human Accounts Executive | 7.6.7 | Unknown | Use the auxiliary PNG interface, then you can generate the auxiliary interface! | | You can't connect the interface without backing up the optical SMTP interface! | http://kristin.net | Seamus | http://maybell.info | +| | | | | | | | Monserrat | http://katrine.name | +| | | | | | | | Abel | https://geovany.com | +| | | | | | | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| International Assurance Executive | 2.8.5 | Ignored | The RSS driver is down, transmit the solid state driver so we can transmit the RSS driver! | | We need to parse the optical FTP driver! | http://antonina.com | Alvah | http://otha.name | +| | | | | | | | Natasha | https://nyah.com | +| | | | | | | | Oliver | http://ettie.biz | +| | | | | | | | Lonny | https://onie.org | +| | | | | | | | Cassie | http://solon.net | +| | | | | | | | Buck | http://taryn.com | +| | | | | | | | Hilton | http://isabel.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Regional Paradigm Assistant | 9.8.0 | Url | | If we input the transmitter, we can get to the HDD transmitter through the bluetooth HDD transmitter! | | | Jordan | https://kathryne.name | +| | | | | | | | Mayra | http://lance.name | +| | | | | | | | Jimmie | https://lorine.org | +| | | | | | | | Rebeka | https://malika.org | +| | | | | | | | Trinity | http://fritz.info | +| | | | | | | | Neha | https://marianne.name | +| | | | | | | | Colin | https://billie.biz | +| | | | | | | | Brielle | https://brennon.name | +| | | | | | | | Myriam | https://rosemary.name | +| Lead Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Dynamic Quality Officer | 8.9.2 | Ignored | | | | https://danika.org | Jadon | https://amelia.biz | +| | | | | | | | Toni | http://angie.name | +| | | | | | | | Ardella | http://melissa.net | +| | | | | | | | Sandra | http://pearline.org | +| | | | | | | | Noble | https://dusty.net | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | Edmund | http://sadie.info | +| | | | | | | | Horacio | https://loraine.name | +| | | | | | | | Sandra | https://emil.info | +| | | | | | | | Dayana | https://leila.info | +| | | | | | | | Micah | http://darien.com | +| | | | | | | | Ethel | http://shakira.net | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_539383b8d415e69f.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_539383b8d415e69f.verified.txt new file mode 100644 index 00000000..175ab01a --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_539383b8d415e69f.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_53afaf1a712b083a.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_53afaf1a712b083a.verified.txt new file mode 100644 index 00000000..e39df5e8 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_53afaf1a712b083a.verified.txt @@ -0,0 +1,26 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | Helga | https://jermey.info | +| | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | Jedediah | http://amber.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 | | Alyson | https://carmelo.biz | +| | | | | | | | Michele | https://miles.net | +| | | | | | | | Freddie | http://kade.net | +| | | | | | | | Jaunita | http://marcelina.biz | +| Future Data Manager | 2.5.9 | Expression | | | | | Abner | http://tavares.info | +| | | | | | | | Johann | http://andres.net | +| | | | | | | | Jaquan | http://carey.org | +| | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | Alicia | http://paula.com | +| | | | | | | | Heidi | http://letha.name | +| | | | | | | | Reid | https://amely.info | +| | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | Braeden | http://ayana.org | +| | | | | | | | Avery | http://jarret.biz | +| | | | | | | | Clarissa | https://audreanne.name | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_53ea9f9f176be132.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_53ea9f9f176be132.verified.txt new file mode 100644 index 00000000..53270f4f --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_53ea9f9f176be132.verified.txt @@ -0,0 +1,31 @@ +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | Helga | https://jermey.info | +| | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | Jedediah | http://amber.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 | | Alyson | https://carmelo.biz | +| | | | | | | | Michele | https://miles.net | +| | | | | | | | Freddie | http://kade.net | +| | | | | | | | Jaunita | http://marcelina.biz | +| Future Data Manager | 2.5.9 | Expression | | | | | Abner | http://tavares.info | +| | | | | | | | Johann | http://andres.net | +| | | | | | | | Jaquan | http://carey.org | +| | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | Alicia | http://paula.com | +| | | | | | | | Heidi | http://letha.name | +| | | | | | | | Reid | https://amely.info | +| | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | Braeden | http://ayana.org | +| | | | | | | | Avery | http://jarret.biz | +| | | | | | | | Clarissa | https://audreanne.name | +| Principal Assurance Representative | 3.8.2 | Ignored | | | Patsy Erdman,Patsy Erdman,Patsy Erdman,Patsy Erdman | | Jadon | https://amelia.biz | +| | | | | | | | Toni | http://angie.name | +| | | | | | | | Ardella | http://melissa.net | +| | | | | | | | Sandra | http://pearline.org | +| | | | | | | | Noble | https://dusty.net | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_540b7e1f732d51b7.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_540b7e1f732d51b7.verified.txt new file mode 100644 index 00000000..7e75e2d1 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_540b7e1f732d51b7.verified.txt @@ -0,0 +1,14 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | --------- | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Ignored | 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 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_54c2128673e5c414.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_54c2128673e5c414.verified.txt new file mode 100644 index 00000000..b9fb1ef1 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_54c2128673e5c414.verified.txt @@ -0,0 +1,27 @@ +| ----------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | | | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | | | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Tactics Administrator | 9.9.9 | Url | | | | | | | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | | | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | | | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | | | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| ----------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_55408ed4729d547e.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_55408ed4729d547e.verified.txt new file mode 100644 index 00000000..87927a0a --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_55408ed4729d547e.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | --------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | --------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | --------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5547d28470b2471c.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5547d28470b2471c.verified.txt new file mode 100644 index 00000000..df19b48a --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5547d28470b2471c.verified.txt @@ -0,0 +1,138 @@ +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Response Consultant | 9.3.1 | Unknown | | | https://ulices.biz | Ari | https://chad.com | +| | | | | | | Yvonne | http://jada.name | +| | | | | | | Noemie | https://kayley.name | +| | | | | | | Brandon | http://kristopher.name | +| | | | | | | Maggie | http://kimberly.info | +| | | | | | | Veronica | https://mya.net | +| | | | | | | Marty | https://obie.net | +| | | | | | | Braxton | http://flavio.net | +| | | | | | | Jeramie | http://jaycee.net | +| Future Group Assistant | 1.7.9 | Expression | Use the multi-byte AI port, then you can reboot the multi-byte port! | | | Darien | http://mitchel.biz | +| | | | | | | Carleton | https://madalyn.com | +| | | | | | | Narciso | https://mia.com | +| | | | | | | Nicklaus | https://abelardo.com | +| | | | | | | Carolina | https://lindsey.info | +| | | | | | | Rigoberto | https://lou.biz | +| Corporate Accountability Designer | 0.8.0 | Overwrite | We need to hack the online FTP application! | | http://taya.info | Carlee | http://britney.name | +| | | | | | | Tess | http://julian.biz | +| | | | | | | Isadore | http://billy.net | +| | | | | | | Alice | http://vern.net | +| | | | | | | King | http://trace.net | +| | | | | | | Carmela | https://adolf.info | +| | | | | | | Sherman | http://alec.net | +| | | | | | | Lamar | http://deion.org | +| Direct Tactics Technician | 2.8.6 | Unknown | Try to quantify the SAS port, maybe it will quantify the wireless port! | | | Demond | http://stefan.name | +| | | | | | | Norval | http://annie.net | +| | | | | | | Destin | http://penelope.name | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| Investor Identity Developer | 4.2.0 | Url | | Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| | | | | | | Keely | http://obie.org | +| | | | | | | Caleigh | https://albin.info | +| | | | | | | Flavie | http://lavonne.biz | +| | | | | | | Kaitlyn | http://osborne.org | +| Product Identity Analyst | 5.9.3 | Expression | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | | Rey | https://connie.info | +| | | | | | | Hollie | http://rico.name | +| | | | | | | Marshall | http://pierce.org | +| | | | | | | 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 | +| Lead Creative Administrator | 9.0.0 | Overwrite | Use the virtual RAM monitor, then you can override the virtual monitor! | | https://roderick.net | Hildegard | http://conner.name | +| | | | | | | 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 | +| | | | | | | Irving | https://sydnie.org | +| Chief Data Director | 2.1.5 | Unknown | Use the haptic PCI bandwidth, then you can generate the haptic bandwidth! | | | Earnestine | http://nathanial.biz | +| | | | | | | Connor | https://augustus.net | +| | | | | | | Araceli | http://hailey.biz | +| | | | | | | Janessa | https://craig.com | +| | | | | | | Erica | http://kristin.org | +| | | | | | | Alek | http://shany.biz | +| | | | | | | Camren | http://joany.info | +| Product Marketing Developer | 3.3.6 | Unknown | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | Lewis | https://alisa.com | +| | | | | | | Delores | https://layne.name | +| | | | | | | Delphine | https://katlynn.org | +| | | | | | | Meredith | https://johanna.info | +| | | | | | | Jacklyn | https://kadin.com | +| | | | | | | Hardy | https://donna.info | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| Dynamic Group Associate | 6.6.1 | Unknown | We need to input the open-source SMTP bus! | | http://kian.name | Neil | https://burley.info | +| | | | | | | Lemuel | http://brenden.info | +| | | | | | | Agnes | https://urban.org | +| | | | | | | Micheal | https://ida.net | +| | | | | | | Murray | https://samanta.com | +| | | | | | | Assunta | http://florencio.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Mobility Strategist | 4.7.6 | Overwrite | Use the virtual ADP bandwidth, then you can calculate the virtual bandwidth! | | http://gerardo.net | Cathy | http://giovanna.info | +| | | | | | | Ike | https://jerome.biz | +| | | | | | | Emerald | https://camren.net | +| | | | | | | Sheila | https://garry.org | +| Internal Solutions Planner | 1.3.8 | Expression | | Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| | | | | | | Mallory | http://angeline.name | +| Investor Creative Architect | 4.5.6 | Overwrite | | Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| | | | | | | Retta | https://lottie.biz | +| | | | | | | Yasmine | http://delia.com | +| | | | | | | Khalil | http://jewel.net | +| | | | | | | Roy | https://johanna.org | +| | | | | | | Price | https://itzel.info | +| | | | | | | Dalton | https://daren.info | +| | | | | | | Arnold | http://arlo.org | +| Global Infrastructure Developer | 5.5.0 | Url | generating the application won't do anything, we need to calculate the auxiliary JSON application! | Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger | https://austin.net | 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 Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5549ade40974eefb.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5549ade40974eefb.verified.txt new file mode 100644 index 00000000..0d15c82d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5549ade40974eefb.verified.txt @@ -0,0 +1,145 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| Internal Solutions Planner | 1.3.8 | Ignored | | The COM application is down, quantify the auxiliary application so we can quantify the COM application! | | Nyah | http://oliver.com | +| | | | | | | Ettie | http://lonny.net | +| | | | | | | Onie | https://cassie.biz | +| | | | | | | Solon | https://buck.biz | +| | | | | | | Taryn | http://hilton.com | +| | | | | | | Isabel | http://rogers.net | +| | | | | | | Bertrand | http://annetta.org | +| | | | | | | Remington | https://efrain.info | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| National Creative Engineer | 4.0.0 | Ignored | You can't parse the alarm without overriding the haptic SMTP alarm! | | | Candida | https://craig.biz | +| | | | | | | Timmothy | https://joanny.biz | +| | | | | | | Alfonzo | http://dorothea.org | +| | | | | | | 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 | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Forward Directives Supervisor | 8.7.6 | Ignored | | The SSL microchip is down, hack the optical microchip so we can hack the SSL microchip! | http://shaun.org | Jadon | https://amelia.biz | +| | | | | | | Toni | http://angie.name | +| | | | | | | Ardella | http://melissa.net | +| | | | | | | Sandra | http://pearline.org | +| | | | | | | Noble | https://dusty.net | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Regional Mobility Manager | 2.7.0 | Ignored | | | http://gianni.info | Alvina | http://elouise.name | +| | | | | | | Ron | http://brown.org | +| | | | | | | Cordia | http://ericka.name | +| | | | | | | Eugene | http://rashad.info | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Chief Brand Associate | 7.6.8 | Ignored | | | https://lauriane.com | Devin | https://ramona.info | +| | | | | | | Alice | http://laverne.info | +| | | | | | | Layne | https://brooks.name | +| | | | | | | Kaitlyn | http://serenity.biz | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_55c4c7d3334d44d3.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_55c4c7d3334d44d3.verified.txt new file mode 100644 index 00000000..d2230fc8 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_55c4c7d3334d44d3.verified.txt @@ -0,0 +1,124 @@ +| ------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | --------------------- | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.biz | +| International Tactics Administrator | 9.9.9 | Url | | | | | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | | | +| Legacy Usability Coordinator | 5.8.8 | Overwrite | Try to calculate the PNG port, maybe it will calculate the back-end port! | | | http://thora.info | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Senior Solutions Strategist | 7.5.0 | 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 | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | | | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | | | +| Legacy Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| Corporate Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | | | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| Customer Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | | | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| ------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_55c4de00a1364362.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_55c4de00a1364362.verified.txt new file mode 100644 index 00000000..1e73ad1b --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_55c4de00a1364362.verified.txt @@ -0,0 +1,13 @@ +| ------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| District Mobility Administrator | 3.2.3 | Ignored | | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Global Usability Representative | 3.5.9 | Url | | | | | +| Forward Quality Producer | 6.3.7 | Overwrite | The CSS microchip is down, back up the bluetooth microchip so we can back up the CSS microchip! | https://jayne.name | | | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | +| Regional Security Architect | 2.2.5 | Url | | | | | +| ------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_55c588b70c50020f.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_55c588b70c50020f.verified.txt new file mode 100644 index 00000000..889d43b3 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_55c588b70c50020f.verified.txt @@ -0,0 +1,114 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------- | ---------- | ---------------------- | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Legacy Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_55e5c24cd8420512.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_55e5c24cd8420512.verified.txt new file mode 100644 index 00000000..25460f71 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_55e5c24cd8420512.verified.txt @@ -0,0 +1,43 @@ +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | | | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | | | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | | | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | | | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | | | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_56112c3fe0c5b214.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_56112c3fe0c5b214.verified.txt new file mode 100644 index 00000000..7dd5216f --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_56112c3fe0c5b214.verified.txt @@ -0,0 +1,33 @@ +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ----------- | --------------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ----------- | --------------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | Unknown | 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 Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ----------- | --------------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5659b1ef8186a7fb.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5659b1ef8186a7fb.verified.txt new file mode 100644 index 00000000..bba8d810 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5659b1ef8186a7fb.verified.txt @@ -0,0 +1,111 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ---------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ---------------------- | --------- | ---------------------- | +| Direct Accountability Assistant | 2.2.8 | Url | bypassing the protocol won't do anything, we need to compress the primary HTTP protocol! | | http://natasha.info | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Forward Configuration Supervisor | 9.0.8 | Overwrite | You can't program the protocol without overriding the primary IB protocol! | | http://quinn.name | | | +| Lead Usability Assistant | 1.3.4 | Overwrite | quantifying the matrix won't do anything, we need to synthesize the wireless PCI matrix! | Use the solid state SQL firewall, then you can connect the solid state firewall! | https://duane.info | | | +| Dynamic Accountability Analyst | 4.9.7 | Overwrite | | | https://jaron.info | | | +| National Intranet Technician | 8.0.0 | Overwrite | | | | | | +| Central Tactics Engineer | 6.3.5 | Unknown | connecting the bandwidth won't do anything, we need to bypass the multi-byte AI bandwidth! | | | | | +| National Communications Orchestrator | 4.5.1 | Unknown | The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit! | | | | | +| Central Identity Analyst | 8.9.6 | Expression | | | http://leta.org | | | +| Dynamic Division Consultant | 4.8.7 | Overwrite | Use the multi-byte IB microchip, then you can connect the multi-byte microchip! | backing up the feed won't do anything, we need to compress the haptic SMTP feed! | http://raquel.net | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | | | +| Human Communications Supervisor | 6.0.1 | Ignored | Use the cross-platform SAS feed, then you can bypass the cross-platform feed! | | http://ethan.name | | | +| Regional Operations Coordinator | 0.2.5 | Unknown | | I'll hack the cross-platform SSL array, that should array the SSL array! | http://ena.com | | | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| Human Response Coordinator | 2.9.7 | Ignored | | | http://ruth.org | | | +| Human Operations Assistant | 0.7.2 | Overwrite | Use the haptic USB driver, then you can override the haptic driver! | | http://camila.net | | | +| Global Division Designer | 8.2.7 | Expression | Try to program the EXE hard drive, maybe it will program the virtual hard drive! | | https://pamela.name | | | +| Regional Paradigm Manager | 8.9.8 | Ignored | | If we transmit the application, we can get to the SMS application through the primary SMS application! | https://eileen.name | | | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | | | +| Dynamic Branding Facilitator | 8.3.2 | Ignored | | | | | | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | | | +| National Directives Analyst | 8.2.7 | Ignored | We need to compress the primary GB array! | | | | | +| Principal Accounts Coordinator | 1.0.4 | Overwrite | | I'll connect the digital JSON bus, that should bus the JSON bus! | http://rene.com | | | +| Forward Division Strategist | 5.7.1 | Ignored | You can't reboot the program without transmitting the mobile SMTP program! | The SCSI circuit is down, index the open-source circuit so we can index the SCSI circuit! | https://esperanza.name | | | +| Human Directives Specialist | 4.3.4 | Unknown | Use the digital XSS hard drive, then you can compress the digital hard drive! | You can't generate the card without synthesizing the bluetooth PNG card! | | | | +| Human Optimization Producer | 5.0.9 | Overwrite | | | | | | +| Direct Mobility Designer | 7.7.3 | Expression | | | http://geovanny.info | | | +| Direct Data Orchestrator | 2.4.5 | Expression | | Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor! | | | | +| Investor Research Manager | 6.3.1 | Ignored | | | | | | +| Chief Applications Facilitator | 7.7.6 | Overwrite | | parsing the card won't do anything, we need to synthesize the online SQL card! | | | | +| Corporate Marketing Assistant | 8.7.9 | Url | | You can't program the firewall without connecting the wireless AI firewall! | http://arlene.biz | | | +| Senior Security Consultant | 2.7.5 | Unknown | | | http://adelbert.biz | | | +| Human Program Technician | 2.8.4 | Unknown | | | http://tomasa.info | | | +| Senior Brand Analyst | 2.5.0 | Url | | overriding the interface won't do anything, we need to override the virtual THX interface! | | | | +| Dynamic Quality Analyst | 0.9.5 | Overwrite | We need to index the optical HTTP application! | I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor! | | | | +| Global Program Representative | 5.1.0 | Url | | If we back up the monitor, we can get to the PCI monitor through the virtual PCI monitor! | | | | +| National Applications Designer | 6.4.9 | Expression | | Use the back-end SMS feed, then you can program the back-end feed! | | | | +| Investor Implementation Technician | 2.7.9 | Unknown | | | http://crystal.name | | | +| National Solutions Associate | 9.1.2 | Overwrite | | | | | | +| Legacy Directives Supervisor | 9.6.2 | Url | The PNG circuit is down, back up the online circuit so we can back up the PNG circuit! | | | | | +| Dynamic Factors Facilitator | 6.5.2 | Expression | | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | http://magnolia.com | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| International Functionality Agent | 8.7.6 | Unknown | | If we hack the card, we can get to the JBOD card through the optical JBOD card! | http://jalyn.org | | | +| Global Security Coordinator | 1.7.9 | Ignored | | | https://carol.info | | | +| District Operations Director | 0.6.3 | Url | | We need to program the cross-platform FTP hard drive! | https://dejah.net | | | +| Chief Division Producer | 2.3.9 | Overwrite | | | | | | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | http://hanna.net | | | +| Customer Functionality Consultant | 5.5.1 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | http://terence.com | | | +| Legacy Directives Officer | 2.4.4 | Url | | The PCI program is down, hack the multi-byte program so we can hack the PCI program! | http://sedrick.biz | | | +| Internal Directives Designer | 0.4.8 | Url | The EXE protocol is down, reboot the redundant protocol so we can reboot the EXE protocol! | | | | | +| Corporate Tactics Director | 2.5.7 | Url | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | http://marcos.info | | | +| International Quality Director | 0.3.8 | Expression | | | | | | +| International Data Representative | 3.5.7 | Ignored | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | http://dakota.com | | | +| Future Accounts Agent | 0.9.7 | Ignored | | | | | | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | | | +| Human Directives Engineer | 5.3.9 | Url | | | | | | +| Human Group Designer | 9.9.1 | Expression | Use the haptic XSS application, then you can synthesize the haptic application! | If we transmit the hard drive, we can get to the AGP hard drive through the bluetooth AGP hard drive! | http://jodie.org | | | +| Investor Creative Architect | 8.2.4 | Unknown | | | | | | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | | | +| Forward Intranet Engineer | 2.5.9 | Expression | The RSS sensor is down, input the 1080p sensor so we can input the RSS sensor! | Try to index the ADP port, maybe it will index the auxiliary port! | | | | +| Customer Metrics Developer | 2.2.9 | Ignored | | | | | | +| Forward Functionality Developer | 5.1.1 | Url | | | | | | +| Corporate Data Strategist | 9.0.0 | Ignored | | | http://eli.net | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Global Mobility Facilitator | 9.5.8 | Expression | | | | | | +| Dynamic Optimization Director | 3.4.6 | Ignored | The PNG protocol is down, index the digital protocol so we can index the PNG protocol! | I'll transmit the online SSL feed, that should feed the SSL feed! | https://maximilian.org | | | +| National Creative Assistant | 4.9.0 | Ignored | | If we navigate the pixel, we can get to the SCSI pixel through the bluetooth SCSI pixel! | https://michelle.org | | | +| Lead Branding Developer | 4.1.5 | Url | | | http://abe.com | | | +| Corporate Accounts Technician | 5.8.0 | Ignored | | | https://isobel.org | | | +| Forward Marketing Orchestrator | 1.6.4 | Overwrite | I'll connect the primary SQL sensor, that should sensor the SQL sensor! | The SMTP driver is down, bypass the mobile driver so we can bypass the SMTP driver! | https://lukas.com | | | +| Investor Intranet Producer | 5.4.1 | Ignored | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | http://hyman.org | | | +| National Research Facilitator | 6.0.6 | Expression | Use the primary EXE array, then you can navigate the primary array! | | | | | +| International Intranet Planner | 6.4.6 | Url | The IB interface is down, program the redundant interface so we can program the IB interface! | | https://lenna.com | | | +| Central Web Assistant | 4.2.1 | Unknown | | Use the wireless ADP array, then you can input the wireless array! | https://verda.net | | | +| Dynamic Integration Architect | 1.6.3 | Overwrite | | The RAM feed is down, copy the neural feed so we can copy the RAM feed! | | | | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | | | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | | | +| Future Accounts Architect | 9.1.8 | Url | You can't bypass the firewall without indexing the multi-byte COM firewall! | | https://fermin.biz | | | +| Chief Intranet Facilitator | 6.6.1 | Expression | | | https://rosalind.net | | | +| Direct Assurance Strategist | 1.3.7 | Expression | The RSS firewall is down, hack the neural firewall so we can hack the RSS firewall! | | | | | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| Corporate Directives Planner | 8.8.5 | Unknown | The CSS bus is down, generate the 1080p bus so we can generate the CSS bus! | We need to back up the 1080p SMTP feed! | | | | +| Product Creative Facilitator | 8.4.6 | Unknown | 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://juliana.net | | | +| Regional Directives Supervisor | 4.9.8 | Ignored | Try to reboot the THX hard drive, maybe it will reboot the open-source hard drive! | Use the primary GB driver, then you can generate the primary driver! | https://malcolm.net | | | +| 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 | | | +| Dynamic Accountability Strategist | 7.0.9 | Unknown | You can't bypass the sensor without transmitting the neural JSON sensor! | | | | | +| Human Quality Facilitator | 1.2.0 | Expression | We need to copy the online THX firewall! | You can't calculate the application without calculating the auxiliary AI application! | | | | +| Human Optimization Facilitator | 7.4.8 | Overwrite | 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! | https://cooper.name | | | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| Senior Optimization Assistant | 3.6.0 | Overwrite | | overriding the pixel won't do anything, we need to copy the optical JSON pixel! | http://akeem.info | | | +| Regional Factors Designer | 7.4.1 | Overwrite | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | | | | +| Investor Interactions Liaison | 4.4.9 | Overwrite | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | | | | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | | | +| Senior Factors Administrator | 1.6.1 | Expression | I'll calculate the solid state ADP panel, that should panel the ADP panel! | If we generate the circuit, we can get to the XSS circuit through the primary XSS circuit! | | | | +| Principal Markets Designer | 3.8.8 | Overwrite | overriding the transmitter won't do anything, we need to generate the cross-platform SCSI transmitter! | | | | | +| Customer Security Representative | 3.7.3 | Ignored | The GB circuit is down, hack the redundant circuit so we can hack the GB circuit! | | https://jalon.net | | | +| Product Assurance Technician | 0.8.2 | Overwrite | | | https://steve.info | | | +| National Creative Coordinator | 5.9.5 | Expression | | | https://bobbie.info | | | +| Chief Factors Supervisor | 5.2.2 | Expression | | | http://helga.com | | | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ---------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_56732340deeee280.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_56732340deeee280.verified.txt new file mode 100644 index 00000000..ad252933 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_56732340deeee280.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_57c567e9a231b86c.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_57c567e9a231b86c.verified.txt new file mode 100644 index 00000000..e5490634 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_57c567e9a231b86c.verified.txt @@ -0,0 +1,60 @@ +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | | | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | | | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | | | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | | | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5900d4064fcc9a25.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5900d4064fcc9a25.verified.txt new file mode 100644 index 00000000..ebd38d72 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5900d4064fcc9a25.verified.txt @@ -0,0 +1,124 @@ +| ------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | --------------------- | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.biz | +| International Tactics Administrator | 9.9.9 | Url | | | | | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | | | +| Legacy Usability Coordinator | 5.8.8 | Overwrite | Try to calculate the PNG port, maybe it will calculate the back-end port! | | | http://thora.info | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Senior Solutions Strategist | 7.5.0 | 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 | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | | | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | | | +| Legacy Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| Corporate Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | | | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| Customer Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | | | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| ------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_592f0b3fcc3ca5b7.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_592f0b3fcc3ca5b7.verified.txt new file mode 100644 index 00000000..5ca949e9 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_592f0b3fcc3ca5b7.verified.txt @@ -0,0 +1,127 @@ +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Corporate Marketing Strategist | 3.8.5 | Ignored | | | Use the redundant JSON application, then you can program the redundant application! | Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch | | Naomi | http://mckenna.net | +| | | | | | | | | Jalyn | https://katharina.name | +| | | | | | | | | Kane | http://beulah.biz | +| | | | | | | | | Eleanora | http://birdie.net | +| | | | | | | | | Alvah | http://keanu.net | +| Dynamic Group Associate | 6.6.1 | Ignored | We need to input the open-source SMTP bus! | | | | http://kian.name | Burley | http://lemuel.com | +| | | | | | | | | Brenden | http://agnes.net | +| | | | | | | | | Urban | https://micheal.name | +| | | | | | | | | Ida | https://murray.org | +| | | | | | | | | Samanta | http://assunta.biz | +| | | | | | | | | Florencio | http://bradford.info | +| | | | | | | | | Marcella | http://ray.net | +| | | | | | | | | Gunnar | https://elissa.net | +| | | | | | | | | Maud | https://edgar.name | +| | | | | | | | | Angelina | https://adonis.biz | +| Product Data Liaison | 7.8.8 | Unknown | Try to calculate the GB card, maybe it will calculate the wireless card! | | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | | | Lewis | https://alisa.com | +| | | | | | | | | Delores | https://layne.name | +| | | | | | | | | Delphine | https://katlynn.org | +| | | | | | | | | Meredith | https://johanna.info | +| | | | | | | | | Jacklyn | https://kadin.com | +| | | | | | | | | Hardy | https://donna.info | +| National Accountability Producer | 6.9.7 | Unknown | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | https://linwood.biz | Travon | https://dedrick.name | +| | | | | | | | | Elissa | http://kaci.org | +| | | | | | | | | Brandi | https://aniyah.com | +| | | | | | | | | Tyson | https://bonita.org | +| | | | | | | | | Jazlyn | http://madonna.net | +| | | | | | | | | Deangelo | https://jess.info | +| | | | | | | | | Alvah | https://hans.net | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| International Intranet Planner | 1.3.4 | Expression | 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 | Ahmad | https://lupe.com | +| | | | | | | | | Randi | https://jaiden.biz | +| | | | | | | | | Patience | https://marlene.name | +| | | | | | | | | Lenna | https://franco.name | +| | | | | | | | | Kyleigh | https://tevin.name | +| | | | | | | | | Sallie | https://jordane.name | +| | | | | | | | | Willy | https://daija.info | +| | | | | | | | | Jannie | https://retta.net | +| | | | | | | | | Lottie | http://yasmine.com | +| | | | | | | | | Delia | http://khalil.com | +| Investor Operations Director | 5.6.0 | Expression | Try to input the AI microchip, maybe it will input the 1080p microchip! | | If we synthesize the sensor, we can get to the AI sensor through the redundant AI sensor! | | https://alene.info | Elouise | https://ron.com | +| | | | | | | | | Brown | https://cordia.com | +| | | | | | | | | Ericka | https://eugene.com | +| | | | | | | | | Rashad | http://thomas.com | +| | | | | | | | | Antonia | https://marcelle.org | +| Dynamic Solutions Assistant | 5.6.4 | Ignored | navigating the alarm won't do anything, we need to copy the 1080p AGP alarm! | | | Craig Halvorson,Craig Halvorson,Craig Halvorson,Craig Halvorson | http://isabell.info | Tess | http://kailyn.info | +| | | | | | | | | Eileen | http://manley.name | +| | | | | | | | | Conor | https://glenna.name | +| | | | | | | | | Sylvester | http://gaylord.biz | +| | | | | | | | | Maxime | https://tom.com | +| International Research Architect | 3.7.4 | Ignored | | Try to quantify the USB application, maybe it will quantify the mobile application! | If we index the pixel, we can get to the AI pixel through the wireless AI pixel! | | | Madisen | http://raegan.biz | +| | | | | | | | | Cathy | http://giovanna.info | +| | | | | | | | | Ike | https://jerome.biz | +| Global Mobility Technician | 8.6.3 | Unknown | | We need to input the haptic XML port! | | Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante | | Lonie | http://wilburn.org | +| | | | | | | | | Concepcion | http://ed.org | +| | | | | | | | | Amanda | https://sophie.net | +| | | | | | | | | Claudine | http://ofelia.biz | +| | | | | | | | | Petra | http://clare.name | +| | | | | | | | | Ozella | https://verla.name | +| | | | | | | | | Denis | http://pete.com | +| Global Mobility Facilitator | 8.5.9 | Url | | We need to parse the primary PCI protocol! | | Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch | https://itzel.info | Mitchel | http://carleton.name | +| | | | | | | | | Madalyn | http://narciso.net | +| | | | | | | | | Mia | http://nicklaus.net | +| | | | | | | | | Abelardo | http://carolina.name | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| Principal Assurance Representative | 3.8.2 | Ignored | | | | Patsy Erdman,Patsy Erdman,Patsy Erdman,Patsy Erdman | | Jadon | https://amelia.biz | +| | | | | | | | | Toni | http://angie.name | +| | | | | | | | | Ardella | http://melissa.net | +| | | | | | | | | Sandra | http://pearline.org | +| | | | | | | | | Noble | https://dusty.net | +| Forward Tactics Agent | 6.8.8 | Url | | We need to back up the primary SMTP circuit! | The COM bandwidth is down, input the auxiliary bandwidth so we can input the COM bandwidth! | Jon Schulist,Jon Schulist | https://flo.info | Diana | http://eula.name | +| | | | | | | | | Raphael | https://zackery.info | +| | | | | | | | | Nettie | https://brayan.com | +| Investor Division Assistant | 9.6.2 | Url | | I'll parse the primary PCI matrix, that should matrix the PCI matrix! | | | | Nya | http://sunny.biz | +| | | | | | | | | Arlo | https://cordia.info | +| | | | | | | | | Linnie | https://marcos.name | +| | | | | | | | | Luella | http://frederic.name | +| | | | | | | | | Lucinda | https://dion.name | +| | | | | | | | | Jayson | https://ryleigh.net | +| | | | | | | | | Mervin | https://lorenza.net | +| Product Interactions Planner | 7.4.0 | Expression | Try to navigate the PCI matrix, maybe it will navigate the haptic matrix! | | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | http://bertha.net | Rey | https://connie.info | +| | | | | | | | | Hollie | http://rico.name | +| | | | | | | | | Marshall | http://pierce.org | +| | | | | | | | | 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 | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | Julius Abbott | http://celestine.info | Ettie | http://lonny.net | +| | | | | | | | | Onie | https://cassie.biz | +| | | | | | | | | Solon | https://buck.biz | +| Chief Solutions Administrator | 0.4.1 | Unknown | | 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 | Shaun | https://antwan.org | +| | | | | | | | | Hazel | https://forrest.net | +| | | | | | | | | Brianne | https://dorothea.name | +| | | | | | | | | Don | http://torey.com | +| | | | | | | | | Cedrick | https://zachariah.net | +| | | | | | | | | Marcelle | https://adah.org | +| | | | | | | | | Barney | http://erica.org | +| | | | | | | | | Jordi | https://alysha.com | +| | | | | | | | | Kristina | https://pattie.info | +| | | | | | | | | Cory | http://kailey.com | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5a95f5e613772d99.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5a95f5e613772d99.verified.txt new file mode 100644 index 00000000..31d2bcd6 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5a95f5e613772d99.verified.txt @@ -0,0 +1,30 @@ +| ----------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | | | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | | | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | | | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | | | +| International Tactics Administrator | 9.9.9 | Url | | | | | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5b0e96c23666763f.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5b0e96c23666763f.verified.txt new file mode 100644 index 00000000..1d9d4385 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5b0e96c23666763f.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5bff6367c4d98fb2.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5bff6367c4d98fb2.verified.txt new file mode 100644 index 00000000..99adc6dd --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5bff6367c4d98fb2.verified.txt @@ -0,0 +1,106 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | ---------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | ---------------------- | --------- | --------------------- | +| Product Usability Coordinator | 5.4.7 | Overwrite | The GB panel is down, synthesize the neural panel so we can synthesize the GB panel! | You can't copy the system without indexing the virtual XSS system! | If we override the hard drive, we can get to the RSS hard drive through the multi-byte RSS hard drive! | | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Future Solutions Officer | 3.3.5 | Unknown | You can't override the hard drive without bypassing the mobile TCP hard drive! | | Use the online IB protocol, then you can back up the online protocol! | | | | +| Central Creative Analyst | 3.6.4 | Overwrite | | programming the driver won't do anything, we need to calculate the primary SMTP driver! | | | | | +| Dynamic Accountability Engineer | 3.1.8 | Url | | Use the online RAM program, then you can generate the online program! | I'll back up the back-end JSON card, that should card the JSON card! | https://gerson.com | | | +| Senior Integration Engineer | 4.4.3 | Url | | | | | | | +| Future Accountability Officer | 2.5.3 | Unknown | | | | http://henderson.biz | | | +| Principal Accounts Officer | 2.1.8 | Overwrite | 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! | | | | +| District Configuration Administrator | 8.4.4 | Url | | The XML transmitter is down, calculate the auxiliary transmitter so we can calculate the XML transmitter! | | https://david.name | | | +| District Data Executive | 9.4.3 | Expression | | The FTP transmitter is down, compress the auxiliary transmitter so we can compress the FTP transmitter! | | | | | +| Forward Creative Developer | 9.6.7 | Unknown | | I'll transmit the online SSL feed, that should feed the SSL feed! | We need to synthesize the cross-platform SMS circuit! | http://pearline.com | | | +| Lead Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Lead Factors Designer | 0.9.2 | Url | You can't quantify the bandwidth without calculating the online RAM bandwidth! | | | | | | +| Regional Configuration Engineer | 7.3.8 | Expression | Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter! | You can't reboot the matrix without navigating the optical SDD matrix! | | http://roman.org | | | +| Regional Security Engineer | 5.8.4 | Unknown | | | I'll hack the cross-platform SSL array, that should array the SSL array! | | | | +| Legacy Research Associate | 9.9.5 | Url | | We need to navigate the bluetooth RAM bus! | | https://hildegard.name | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| District Branding Analyst | 1.9.5 | Unknown | | | | https://paula.net | | | +| Forward Optimization Architect | 8.7.9 | Overwrite | | | backing up the feed won't do anything, we need to compress the haptic SMTP feed! | https://kyle.net | | | +| Direct Web Orchestrator | 1.9.1 | Overwrite | You can't copy the alarm without synthesizing the 1080p IB alarm! | | parsing the card won't do anything, we need to synthesize the online SQL card! | https://kade.com | | | +| Dynamic Group Producer | 5.9.5 | Unknown | We need to hack the multi-byte EXE bus! | If we connect the program, we can get to the SQL program through the digital SQL program! | | https://sonny.com | | | +| Corporate Implementation Technician | 2.8.4 | Url | | If we compress the protocol, we can get to the COM protocol through the mobile COM protocol! | Use the multi-byte SMTP program, then you can synthesize the multi-byte program! | | | | +| Lead Intranet Director | 9.2.4 | Url | | You can't parse the bandwidth without transmitting the open-source USB bandwidth! | If we parse the driver, we can get to the GB driver through the neural GB driver! | https://dane.name | | | +| Forward Communications Engineer | 4.5.2 | Overwrite | Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor! | | | | | | +| Internal Data Designer | 9.5.2 | Unknown | | hacking the card won't do anything, we need to hack the neural COM card! | The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive! | https://liana.com | | | +| Dynamic Quality Analyst | 0.9.5 | Unknown | We need to index the optical HTTP application! | 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! | | | | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| Internal Program Administrator | 0.3.5 | Expression | We need to navigate the multi-byte PNG application! | The SMS hard drive is down, parse the mobile hard drive so we can parse the SMS hard drive! | The HTTP bandwidth is down, synthesize the 1080p bandwidth so we can synthesize the HTTP bandwidth! | http://viviane.com | | | +| Senior Communications Director | 3.1.0 | Expression | | | I'll quantify the neural SCSI port, that should port the SCSI port! | | | | +| Legacy Interactions Analyst | 3.0.8 | Url | hacking the hard drive won't do anything, we need to generate the open-source RSS hard drive! | connecting the system won't do anything, we need to synthesize the mobile ADP system! | | | | | +| Corporate Data Strategist | 9.0.0 | Url | | | Try to transmit the PNG capacitor, maybe it will transmit the solid state capacitor! | http://eli.net | | | +| District Implementation Orchestrator | 0.1.4 | Url | I'll synthesize the cross-platform CSS panel, that should panel the CSS panel! | You can't navigate the panel without connecting the optical PNG panel! | | | | | +| Human Program Analyst | 3.1.8 | Expression | If we back up the application, we can get to the USB application through the cross-platform USB application! | | | http://efrain.org | | | +| Future Configuration Officer | 7.6.0 | Expression | You can't compress the alarm without parsing the optical JBOD alarm! | 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! | | | | +| National Functionality Orchestrator | 3.5.0 | Overwrite | If we quantify the array, we can get to the RAM array through the virtual RAM array! | overriding the card won't do anything, we need to hack the auxiliary HTTP card! | If we quantify the feed, we can get to the RAM feed through the neural RAM feed! | https://gina.name | | | +| Future Interactions Facilitator | 7.6.9 | Expression | | If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit! | | | | | +| Dynamic Factors Facilitator | 6.5.2 | Unknown | | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | | http://magnolia.com | | | +| Human Configuration Assistant | 0.1.1 | Overwrite | I'll bypass the solid state SMS system, that should system the SMS system! | | parsing the driver won't do anything, we need to program the auxiliary IB driver! | http://frederick.com | | | +| District Implementation Executive | 3.9.4 | Overwrite | | | | http://fae.org | | | +| Principal Intranet Manager | 3.8.8 | Expression | | | | | | | +| District Intranet Engineer | 7.5.5 | Unknown | 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! | | | | | +| Legacy Infrastructure Producer | 1.1.2 | Unknown | | If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit! | | | | | +| International Data Coordinator | 1.7.7 | Unknown | | connecting the system won't do anything, we need to navigate the solid state HDD system! | | | | | +| Investor Accountability Officer | 2.4.3 | Unknown | | Use the digital XSS hard drive, then you can compress the digital hard drive! | You can't generate the card without synthesizing the bluetooth PNG card! | | | | +| Forward Division Strategist | 5.7.1 | Unknown | You can't reboot the program without transmitting the mobile SMTP program! | The SCSI circuit is down, index the open-source circuit so we can index the SCSI circuit! | Use the solid state HTTP microchip, then you can back up the solid state microchip! | https://esperanza.name | | | +| Forward Factors Director | 5.7.8 | Expression | | | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | | | +| Principal Branding Assistant | 8.2.6 | Expression | 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! | We need to hack the auxiliary COM hard drive! | | | | +| Forward Infrastructure Developer | 7.5.6 | Unknown | Try to override the SCSI microchip, maybe it will override the haptic microchip! | programming the monitor won't do anything, we need to parse the online XML monitor! | You can't index the circuit without copying the auxiliary RSS circuit! | | | | +| Dynamic Applications Producer | 0.4.7 | Url | Try to input the AI sensor, maybe it will input the digital sensor! | If we program the array, we can get to the JBOD array through the primary JBOD array! | | http://horace.com | | | +| National Directives Analyst | 8.2.7 | Overwrite | We need to compress the primary GB array! | | Use the mobile SCSI bus, then you can program the mobile bus! | | | | +| Forward Integration Assistant | 4.8.5 | Expression | | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| Corporate Identity Coordinator | 9.8.3 | Url | | If we navigate the bus, we can get to the HDD bus through the primary HDD bus! | | | | | +| Central Marketing Orchestrator | 3.3.1 | Overwrite | | Try to parse the IB driver, maybe it will parse the 1080p driver! | We need to connect the bluetooth RSS application! | https://brice.net | | | +| Dynamic Security Developer | 0.8.7 | Url | You can't back up the array without parsing the haptic CSS array! | | | https://adan.net | | | +| Central Marketing Assistant | 9.5.8 | Overwrite | I'll navigate the redundant RAM capacitor, that should capacitor the RAM capacitor! | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | http://julia.biz | | | +| Direct Data Designer | 8.4.8 | Unknown | | | We need to transmit the virtual JSON bus! | | | | +| Forward Web Assistant | 5.9.6 | 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! | The SSL application is down, reboot the bluetooth application so we can reboot the SSL application! | | | | +| Product Tactics Technician | 3.8.3 | Overwrite | If we index the protocol, we can get to the FTP protocol through the online FTP protocol! | Try to synthesize the SDD hard drive, maybe it will synthesize the bluetooth hard drive! | | https://jewel.name | | | +| Direct Factors Representative | 0.5.2 | Overwrite | You can't override the bandwidth without navigating the auxiliary ADP bandwidth! | backing up the system won't do anything, we need to synthesize the digital AI system! | | | | | +| Human Division Agent | 2.2.7 | Expression | | 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 Metrics Assistant | 8.7.4 | Unknown | | 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 Infrastructure Agent | 6.1.6 | Expression | | | You can't quantify the program without overriding the online SDD program! | | | | +| International Accounts Liaison | 5.6.7 | Expression | We need to program the virtual SCSI circuit! | We need to generate the auxiliary GB hard drive! | transmitting the port won't do anything, we need to override the haptic JSON port! | | | | +| Internal Factors Designer | 1.9.6 | Url | | | | | | | +| Dynamic Division Agent | 4.2.8 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | https://camilla.info | | | +| Human Accounts Representative | 4.5.5 | Url | | | The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall! | https://darien.net | | | +| Internal Division Agent | 2.4.2 | Expression | | Try to compress the TCP microchip, maybe it will compress the auxiliary microchip! | | | | | +| Direct Usability Analyst | 3.4.8 | Overwrite | hacking the protocol won't do anything, we need to bypass the back-end SDD protocol! | Try to quantify the EXE program, maybe it will quantify the auxiliary program! | The FTP program is down, override the digital program so we can override the FTP program! | https://maritza.com | | | +| 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! | | | | | +| Product Directives Engineer | 8.2.3 | Unknown | transmitting the bus won't do anything, we need to navigate the online IB bus! | | We need to bypass the wireless PNG bus! | | | | +| Direct Creative Planner | 9.7.2 | Unknown | Try to connect the TCP circuit, maybe it will connect the back-end circuit! | synthesizing the circuit won't do anything, we need to override the neural XML circuit! | bypassing the matrix won't do anything, we need to copy the wireless PCI matrix! | | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Functionality Strategist | 5.8.0 | Url | Use the digital HTTP card, then you can reboot the digital card! | The CSS port is down, quantify the virtual port so we can quantify the CSS port! | | http://filiberto.net | | | +| Human Response Executive | 6.4.4 | Unknown | If we transmit the matrix, we can get to the SDD matrix through the mobile SDD matrix! | | | https://maida.org | | | +| Principal Solutions Facilitator | 7.1.5 | Overwrite | | The RSS pixel is down, calculate the auxiliary pixel so we can calculate the RSS pixel! | | | | | +| Dynamic Creative Designer | 7.5.8 | Expression | The XML system is down, hack the bluetooth system so we can hack the XML system! | | The GB program is down, program the back-end program so we can program the GB program! | http://daniela.name | | | +| Legacy Configuration Coordinator | 2.7.5 | Unknown | connecting the panel won't do anything, we need to bypass the wireless AGP panel! | | | | | | +| Corporate Infrastructure Executive | 4.8.1 | Overwrite | | | Try to index the FTP transmitter, maybe it will index the bluetooth transmitter! | https://justice.info | | | +| Human Communications Supervisor | 6.0.1 | Overwrite | Use the cross-platform SAS feed, then you can bypass the cross-platform feed! | | I'll override the neural XML application, that should application the XML application! | http://ethan.name | | | +| Dynamic Quality Director | 4.9.9 | Unknown | | | | http://jesse.com | | | +| Future Marketing Technician | 7.6.7 | Unknown | | overriding the firewall won't do anything, we need to reboot the open-source COM firewall! | | http://abbey.biz | | | +| Dynamic Directives Officer | 5.8.8 | Overwrite | | parsing the program won't do anything, we need to synthesize the haptic IB program! | If we program the microchip, we can get to the SMS microchip through the auxiliary SMS microchip! | http://rafaela.net | | | +| Forward Data Administrator | 9.0.6 | Overwrite | If we navigate the pixel, we can get to the SCSI pixel through the bluetooth SCSI pixel! | I'll program the multi-byte AI transmitter, that should transmitter the AI transmitter! | | https://serenity.info | | | +| Global Markets Director | 3.4.9 | Unknown | The RAM card is down, override the open-source card so we can override the RAM card! | | | | | | +| International Data Associate | 6.4.8 | Unknown | If we navigate the array, we can get to the SQL array through the 1080p SQL array! | You can't generate the bandwidth without parsing the mobile EXE bandwidth! | | | | | +| Regional Communications Officer | 3.3.2 | Overwrite | | We need to calculate the redundant THX feed! | | https://cortez.net | | | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | ---------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5c563e18abb9b774.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5c563e18abb9b774.verified.txt new file mode 100644 index 00000000..1d0bb2b8 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5c563e18abb9b774.verified.txt @@ -0,0 +1,91 @@ +| ----------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | --------- | --------------------- | +| Global Paradigm Assistant | 8.0.5 | Expression | We need to calculate the solid state HTTP hard drive! | | | https://randy.org | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Regional Metrics Strategist | 1.2.1 | Unknown | | Try to override the GB driver, maybe it will override the digital driver! | | | | | +| Principal Intranet Architect | 4.9.3 | Unknown | | | | | | | +| Senior Configuration Developer | 4.0.9 | Url | Use the primary SCSI matrix, then you can program the primary matrix! | If we parse the interface, we can get to the JSON interface through the mobile JSON interface! | Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle | | | | +| District Interactions Supervisor | 4.5.2 | Url | The XSS capacitor is down, generate the bluetooth capacitor so we can generate the XSS capacitor! | The ADP firewall is down, input the primary firewall so we can input the ADP firewall! | | | | | +| Future Tactics Assistant | 1.5.5 | Expression | The IB sensor is down, reboot the virtual sensor so we can reboot the IB sensor! | If we calculate the matrix, we can get to the SMS matrix through the bluetooth SMS matrix! | | https://giovanny.net | | | +| Lead Program Technician | 5.8.9 | Expression | | We need to transmit the back-end AGP sensor! | Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer | http://curtis.org | | | +| Forward Usability Specialist | 5.6.9 | Overwrite | I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth! | | | | | | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | | | +| Direct Brand Director | 4.7.4 | Url | You can't navigate the capacitor without programming the solid state SQL capacitor! | | | | | | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | | | +| Customer Solutions Officer | 4.5.2 | Expression | You can't copy the matrix without compressing the wireless AGP matrix! | | | https://rylan.name | | | +| Global Optimization Engineer | 8.7.9 | Expression | | quantifying the transmitter won't do anything, we need to synthesize the auxiliary FTP transmitter! | | http://aniya.org | | | +| National Assurance Planner | 2.7.7 | Unknown | | I'll reboot the online AGP alarm, that should alarm the AGP alarm! | Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag | | | | +| Investor Accounts Facilitator | 7.7.8 | Expression | | | Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman | http://scottie.biz | | | +| Direct Division Officer | 6.5.6 | Url | transmitting the protocol won't do anything, we need to generate the multi-byte THX protocol! | | Glenda Schuppe,Glenda Schuppe | http://catherine.name | | | +| Regional Functionality Agent | 5.9.9 | Overwrite | We need to index the 1080p SAS hard drive! | I'll connect the digital JBOD application, that should application the JBOD application! | Gloria Williamson,Gloria Williamson,Gloria Williamson,Gloria Williamson | http://arthur.net | | | +| Product Solutions Manager | 9.5.2 | Overwrite | I'll hack the primary SDD card, that should card the SDD card! | hacking the transmitter won't do anything, we need to index the open-source CSS transmitter! | Sergio Bailey,Sergio Bailey,Sergio Bailey | | | | +| Investor Quality Associate | 0.5.1 | Expression | | Try to reboot the SSL alarm, maybe it will reboot the solid state alarm! | Carrie Hansen,Carrie Hansen,Carrie Hansen,Carrie Hansen | https://ezequiel.biz | | | +| Dynamic Branding Manager | 1.4.0 | Overwrite | You can't navigate the application without generating the cross-platform COM application! | Try to program the FTP alarm, maybe it will program the virtual alarm! | | http://dario.info | | | +| Chief Factors Developer | 5.9.5 | Url | | Try to connect the ADP system, maybe it will connect the solid state system! | Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady | | | | +| Principal Operations Assistant | 0.9.0 | Url | I'll copy the auxiliary HDD bus, that should bus the HDD bus! | I'll copy the digital USB circuit, that should circuit the USB circuit! | | | | | +| Dynamic Data Technician | 4.2.3 | Url | I'll copy the optical RAM feed, that should feed the RAM feed! | | June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds | http://nia.info | | | +| Corporate Intranet Specialist | 3.5.6 | Expression | | | Edmund Lehner,Edmund Lehner,Edmund Lehner,Edmund Lehner | | | | +| Customer Communications Engineer | 6.9.4 | Overwrite | | | Tanya Reinger,Tanya Reinger,Tanya Reinger | http://tito.name | | | +| Central Division Administrator | 1.0.4 | Overwrite | We need to program the optical COM microchip! | We need to hack the haptic SAS microchip! | | | | | +| Future Configuration Officer | 7.6.0 | Unknown | You can't compress the alarm without parsing the optical JBOD alarm! | I'll compress the back-end SSL system, that should system the SSL system! | Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie | | | | +| Regional Optimization Administrator | 3.6.4 | Expression | | I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive! | | http://serenity.info | | | +| Global Optimization Architect | 1.5.0 | Unknown | Try to navigate the SCSI sensor, maybe it will navigate the mobile sensor! | | | | | | +| Customer Program Developer | 2.9.8 | Expression | | You can't transmit the pixel without calculating the bluetooth FTP pixel! | | http://lenora.com | | | +| District Assurance Technician | 8.5.5 | Overwrite | | | | http://zander.com | | | +| Central Research Technician | 2.8.8 | Url | | You can't generate the program without connecting the bluetooth USB program! | | | | | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| Human Markets Planner | 5.0.1 | Expression | Try to back up the COM driver, maybe it will back up the bluetooth driver! | | | | | | +| Corporate Marketing Coordinator | 3.6.1 | Overwrite | | | | https://marcos.org | | | +| Legacy Security Facilitator | 1.9.0 | Expression | | Use the cross-platform ADP alarm, then you can back up the cross-platform alarm! | | https://edythe.info | | | +| Human Identity Representative | 4.1.5 | Overwrite | The SAS bus is down, program the neural bus so we can program the SAS bus! | | Joyce Auer,Joyce Auer,Joyce Auer | http://alyce.biz | | | +| Principal Brand Executive | 7.2.7 | Unknown | | | | https://dariana.com | | | +| Global Identity Supervisor | 0.9.1 | Overwrite | | | | | | | +| Dynamic Division Representative | 7.3.5 | Unknown | | I'll index the haptic FTP alarm, that should alarm the FTP alarm! | Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson | http://taurean.net | | | +| Dynamic Security Director | 0.0.2 | Url | transmitting the feed won't do anything, we need to navigate the redundant SDD feed! | Try to parse the HTTP port, maybe it will parse the bluetooth port! | Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block | | | | +| Lead Solutions Technician | 1.5.7 | Unknown | | | | | | | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | | | +| Customer Branding Orchestrator | 8.3.7 | Overwrite | | We need to bypass the neural USB capacitor! | Nora Dietrich | http://nona.com | | | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | | | +| Human Tactics Facilitator | 5.7.0 | Url | Try to bypass the HTTP application, maybe it will bypass the digital application! | | | | | | +| District Optimization Technician | 5.2.3 | Overwrite | | | Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti | https://douglas.info | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | | | +| International Tactics Administrator | 9.9.9 | Url | | | | | | | +| Regional Directives Liaison | 4.7.8 | Expression | If we connect the interface, we can get to the SCSI interface through the auxiliary SCSI interface! | | Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic | https://glennie.biz | | | +| Customer Web Assistant | 1.9.0 | Unknown | | | | | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | | | +| Human Program Analyst | 3.1.8 | Expression | If we back up the application, we can get to the USB application through the cross-platform USB application! | | | http://efrain.org | | | +| Customer Mobility Assistant | 4.2.9 | 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 | http://adonis.biz | | | +| 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 | | | +| 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 | | | | +| Forward Data Orchestrator | 3.3.5 | Expression | Use the haptic XML driver, then you can index the haptic driver! | compressing the system won't do anything, we need to compress the optical RSS system! | | | | | +| Investor Tactics Director | 0.4.3 | Expression | | | | https://aylin.com | | | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | | | +| Dynamic Solutions Agent | 0.0.5 | Overwrite | Use the haptic USB card, then you can navigate the haptic card! | | | | | | +| Dynamic Factors Associate | 1.8.3 | Unknown | | You can't navigate the panel without calculating the open-source THX panel! | | http://dovie.name | | | +| Dynamic Security Specialist | 7.8.5 | Overwrite | Try to input the GB pixel, maybe it will input the wireless pixel! | You can't transmit the bus without indexing the digital TCP bus! | Guy Waters,Guy Waters | http://nova.biz | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| International Branding Producer | 3.8.2 | Expression | We need to generate the solid state AGP microchip! | | | | | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | | | +| Lead Operations Supervisor | 4.5.2 | Expression | The AI panel is down, transmit the open-source panel so we can transmit the AI panel! | | | | | | +| Chief Program Associate | 2.6.7 | Unknown | We need to compress the optical PNG array! | | Wilbert Kunze,Wilbert Kunze,Wilbert Kunze,Wilbert Kunze | http://coy.info | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Brand Strategist | 3.9.3 | Url | | | Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy | https://rowena.info | | | +| Dynamic Implementation Engineer | 6.7.1 | Overwrite | We need to transmit the open-source EXE interface! | | | http://margie.info | | | +| Chief Infrastructure Specialist | 9.0.5 | Overwrite | hacking the port won't do anything, we need to back up the optical SMS port! | | Jackie Schumm | | | | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | | | +| International Solutions Planner | 9.0.0 | Url | Use the multi-byte SMTP program, then you can synthesize the multi-byte program! | | | | | | +| Product Directives Engineer | 8.2.3 | Unknown | transmitting the bus won't do anything, we need to navigate the online IB bus! | | Maggie Lindgren | | | | +| Human Paradigm Assistant | 8.8.8 | Expression | | | Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich | | | | +| Product Functionality Supervisor | 9.4.5 | Overwrite | Use the 1080p AI microchip, then you can reboot the 1080p microchip! | Use the open-source ADP matrix, then you can copy the open-source matrix! | | | | | +| Human Accounts Orchestrator | 4.1.6 | Url | | | | | | | +| ----------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5c816091f9ee52e6.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5c816091f9ee52e6.verified.txt new file mode 100644 index 00000000..139e24a0 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5c816091f9ee52e6.verified.txt @@ -0,0 +1,134 @@ +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| | | | | | Clemmie | http://shanny.net | +| | | | | | Hildegard | http://conner.name | +| | | | | | Isabella | https://kennith.com | +| | | | | | Johanna | https://ara.org | +| | | | | | Demarco | https://rae.biz | +| | | | | | Viviane | http://christine.info | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Legacy Creative Liaison | 0.4.6 | Overwrite | | | Mervin | http://celestine.info | +| | | | | | Amalia | https://shanelle.info | +| | | | | | Sheila | http://darrell.info | +| | | | | | Alec | https://candice.biz | +| | | | | | Linnea | http://everardo.info | +| | | | | | Daryl | https://jerrod.com | +| | | | | | Laila | http://caleigh.net | +| | | | | | Adolfo | http://daisha.biz | +| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| | | | | | Monserrat | http://katrine.name | +| | | | | | Abel | https://geovany.com | +| | | | | | Diana | http://eula.name | +| | | | | | Raphael | https://zackery.info | +| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| | | | | | Caleigh | https://albin.info | +| | | | | | Flavie | http://lavonne.biz | +| | | | | | Kaitlyn | http://osborne.org | +| | | | | | Joesph | https://michael.name | +| | | | | | Kali | http://shyanne.net | +| | | | | | Austin | https://marty.net | +| | | | | | Theresia | http://kristin.net | +| | | | | | Lester | https://paige.com | +| National Accounts Liaison | 7.2.6 | Overwrite | | | Cedrick | https://zachariah.net | +| | | | | | Marcelle | https://adah.org | +| | | | | | Barney | http://erica.org | +| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| | | | | | Jody | http://jakob.org | +| | | | | | Anjali | https://valentin.info | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| | | | | | Earnestine | http://nathanial.biz | +| | | | | | Connor | https://augustus.net | +| | | | | | Araceli | http://hailey.biz | +| | | | | | Janessa | https://craig.com | +| | | | | | Erica | http://kristin.org | +| | | | | | Alek | http://shany.biz | +| Dynamic Marketing Consultant | 2.4.9 | Overwrite | | | Angie | https://ardella.info | +| | | | | | Melissa | https://sandra.biz | +| | | | | | Pearline | https://noble.net | +| | | | | | Dusty | https://verlie.com | +| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| | | | | | Ursula | https://werner.net | +| | | | | | Linwood | http://rebekah.org | +| | | | | | Cleve | https://claudie.net | +| | | | | | Theodora | http://faye.info | +| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| | | | | | Braeden | https://sunny.name | +| | | | | | Leslie | http://bettie.info | +| | | | | | Edmund | http://sadie.info | +| | | | | | Horacio | https://loraine.name | +| Global Response Associate | 1.9.8 | Overwrite | The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth! | | Sandra | http://antonina.com | +| | | | | | Willow | https://jason.org | +| | | | | | Orland | http://rigoberto.com | +| | | | | | Laney | http://eryn.org | +| | | | | | Amari | http://viviane.net | +| | | | | | Kelley | http://doris.net | +| | | | | | Kennedy | https://milo.net | +| Senior Brand Developer | 4.4.1 | Ignored | If we override the system, we can get to the CSS system through the neural CSS system! | http://adelbert.net | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| | | | | | Libby | http://wade.biz | +| | | | | | Leola | https://pietro.info | +| | | | | | Arch | http://hazle.org | +| | | | | | Eldred | http://gabriel.net | +| Direct Accounts Associate | 3.2.6 | Overwrite | | https://vesta.com | Buck | http://taryn.com | +| | | | | | Hilton | http://isabel.com | +| | | | | | Rogers | https://bertrand.biz | +| | | | | | Annetta | https://remington.org | +| | | | | | Efrain | http://davion.org | +| | | | | | Merle | https://abigayle.org | +| | | | | | Jerod | https://vicenta.info | +| | | | | | Kayli | https://shaun.net | +| | | | | | Antwan | https://hazel.net | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| | | | | | Princess | http://haylie.biz | +| | | | | | Jordane | https://gregorio.com | +| | | | | | Opal | http://abbie.org | +| | | | | | Pablo | https://maxime.biz | +| | | | | | Shaun | https://concepcion.net | +| | | | | | Moises | http://rupert.info | +| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| | | | | | Tyson | https://bonita.org | +| | | | | | Jazlyn | http://madonna.net | +| | | | | | Deangelo | https://jess.info | +| | | | | | Alvah | https://hans.net | +| | | | | | Payton | http://shanna.name | +| | | | | | Providenci | https://tyra.org | +| | | | | | Flo | http://isidro.net | +| | | | | | Dawn | https://anika.org | +| | | | | | Silas | http://zane.name | +| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| | | | | | Clarissa | https://audreanne.name | +| | | | | | Vida | https://theresia.biz | +| | | | | | Ransom | http://isom.com | +| | | | | | Anastasia | http://kamryn.info | +| | | | | | Marlene | https://cyril.name | +| | | | | | Zetta | http://pete.org | +| | | | | | Candida | https://craig.biz | +| | | | | | Timmothy | https://joanny.biz | +| | | | | | Alfonzo | http://dorothea.org | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5cbe40d4d810581a.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5cbe40d4d810581a.verified.txt new file mode 100644 index 00000000..dc7285f8 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5cbe40d4d810581a.verified.txt @@ -0,0 +1,150 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Chief Brand Associate | 7.6.8 | Ignored | | | https://lauriane.com | Devin | https://ramona.info | +| | | | | | | Alice | http://laverne.info | +| | | | | | | Layne | https://brooks.name | +| | | | | | | Kaitlyn | http://serenity.biz | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| National Creative Engineer | 4.0.0 | Ignored | You can't parse the alarm without overriding the haptic SMTP alarm! | | | Candida | https://craig.biz | +| | | | | | | Timmothy | https://joanny.biz | +| | | | | | | Alfonzo | http://dorothea.org | +| | | | | | | 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 | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Legacy Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| Internal Solutions Planner | 1.3.8 | Ignored | | The COM application is down, quantify the auxiliary application so we can quantify the COM application! | | Nyah | http://oliver.com | +| | | | | | | Ettie | http://lonny.net | +| | | | | | | Onie | https://cassie.biz | +| | | | | | | Solon | https://buck.biz | +| | | | | | | Taryn | http://hilton.com | +| | | | | | | Isabel | http://rogers.net | +| | | | | | | Bertrand | http://annetta.org | +| | | | | | | Remington | https://efrain.info | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Investor Intranet Producer | 5.4.1 | Ignored | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | http://hyman.org | | | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Forward Directives Supervisor | 8.7.6 | Ignored | | The SSL microchip is down, hack the optical microchip so we can hack the SSL microchip! | http://shaun.org | Jadon | https://amelia.biz | +| | | | | | | Toni | http://angie.name | +| | | | | | | Ardella | http://melissa.net | +| | | | | | | Sandra | http://pearline.org | +| | | | | | | Noble | https://dusty.net | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 | +| Regional Mobility Manager | 2.7.0 | Ignored | | | http://gianni.info | Alvina | http://elouise.name | +| | | | | | | Ron | http://brown.org | +| | | | | | | Cordia | http://ericka.name | +| | | | | | | Eugene | http://rashad.info | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5d569ebaed4bb797.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5d569ebaed4bb797.verified.txt new file mode 100644 index 00000000..4162ffdb --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5d569ebaed4bb797.verified.txt @@ -0,0 +1,29 @@ +| ------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------------------- | ----------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------------------- | ----------- | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| ------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------------------- | ----------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5db740630aa6d0aa.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5db740630aa6d0aa.verified.txt new file mode 100644 index 00000000..949fa777 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5db740630aa6d0aa.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Paige | https://remington.info | +| | | | | Aletha | https://isobel.info | +| | | | | Pearline | https://johnathon.info | +| | | | | Eleanora | http://jaeden.info | +| | | | | Nikolas | https://daphney.net | +| | | | | Oceane | http://clifton.com | +| | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5dd0c823179d6d92.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5dd0c823179d6d92.verified.txt new file mode 100644 index 00000000..e2a20573 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5dd0c823179d6d92.verified.txt @@ -0,0 +1,45 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | -------- | ---------------------- | +| Customer Metrics Analyst | 6.7.1 | Unknown | | | | | | | | +| 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Future Accounts Designer | 5.1.9 | Expression | We need to navigate the wireless SAS pixel! | | | | | | | +| Internal Factors Facilitator | 2.6.3 | Url | | Try to copy the PNG sensor, maybe it will copy the 1080p sensor! | | Mable Kris,Mable Kris,Mable Kris,Mable Kris,Mable Kris | http://melba.name | | | +| Global Usability Manager | 9.1.0 | Overwrite | | Try to back up the THX interface, maybe it will back up the auxiliary interface! | | | http://vella.com | | | +| Global Configuration Consultant | 5.9.5 | Expression | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | bypassing the bus won't do anything, we need to calculate the virtual GB bus! | | Guadalupe Littel,Guadalupe Littel,Guadalupe Littel | | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| Regional Factors Designer | 7.4.1 | Url | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | Use the haptic RSS port, then you can transmit the haptic port! | Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus | | | | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| District Creative Designer | 1.4.6 | Url | We need to program the haptic IB panel! | | | | http://cameron.info | | | +| Global Markets Administrator | 8.6.8 | Expression | 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! | The SSL application is down, reboot the bluetooth application so we can reboot the SSL application! | Julius Bernhard,Julius Bernhard,Julius Bernhard,Julius Bernhard | https://lois.biz | | | +| Central Tactics Director | 4.6.7 | Url | backing up the system won't do anything, we need to parse the neural CSS system! | We need to transmit the back-end RSS transmitter! | | Doyle Osinski,Doyle Osinski,Doyle Osinski,Doyle Osinski | https://valentina.net | | | +| Dynamic Configuration Assistant | 3.2.1 | Expression | | 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 Security Orchestrator | 3.5.6 | Expression | Try to copy the HDD array, maybe it will copy the back-end array! | 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! | Roderick Koelpin,Roderick Koelpin,Roderick Koelpin | | | | +| Customer Interactions Representative | 0.8.8 | Url | We need to quantify the digital SSL array! | | | | http://heather.name | | | +| Investor Interactions Designer | 1.9.4 | Url | | | parsing the card won't do anything, we need to synthesize the online SQL card! | Stella Barton,Stella Barton | https://octavia.name | | | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| Lead Configuration Liaison | 1.8.9 | Expression | | connecting the transmitter won't do anything, we need to program the cross-platform XSS transmitter! | | | http://esther.biz | | | +| Dynamic Factors Producer | 5.7.1 | Url | | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | | | | | +| Human Accountability Developer | 6.9.0 | Unknown | If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit! | | | | | | | +| Chief Functionality Planner | 5.1.2 | Unknown | | I'll calculate the 1080p HDD system, that should system the HDD system! | | Matt Mills,Matt Mills | http://myrtice.com | | | +| Corporate Intranet Associate | 7.5.1 | Overwrite | | 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! | | | | | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5e1b982731dfcb78.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5e1b982731dfcb78.verified.txt new file mode 100644 index 00000000..f2a10767 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5e1b982731dfcb78.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ---------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ---------------------- | --------- | --------------------- | +| Legacy Interactions Analyst | 3.0.8 | Url | hacking the hard drive won't do anything, we need to generate the open-source RSS hard drive! | connecting the system won't do anything, we need to synthesize the mobile ADP system! | | | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Directives Analyst | 8.2.7 | Overwrite | We need to compress the primary GB array! | | Use the mobile SCSI bus, then you can program the mobile bus! | | | | +| Central Marketing Assistant | 9.5.8 | Overwrite | I'll navigate the redundant RAM capacitor, that should capacitor the RAM capacitor! | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | http://julia.biz | | | +| Forward Factors Director | 5.7.8 | Expression | | | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | | | +| District Branding Analyst | 1.9.5 | Unknown | | | | https://paula.net | | | +| Principal Branding Assistant | 8.2.6 | Expression | 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! | We need to hack the auxiliary COM hard drive! | | | | +| 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! | | | | | +| Forward Creative Developer | 9.6.7 | Unknown | | I'll transmit the online SSL feed, that should feed the SSL feed! | We need to synthesize the cross-platform SMS circuit! | http://pearline.com | | | +| Forward Integration Assistant | 4.8.5 | Expression | | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| Legacy Research Associate | 9.9.5 | Url | | We need to navigate the bluetooth RAM bus! | | https://hildegard.name | | | +| Central Infrastructure Agent | 6.1.6 | Expression | | | You can't quantify the program without overriding the online SDD program! | | | | +| ----------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ---------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5e35c5d5f85b94d6.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5e35c5d5f85b94d6.verified.txt new file mode 100644 index 00000000..1d9d4385 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5e35c5d5f85b94d6.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5ee27823e32b202f.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5ee27823e32b202f.verified.txt new file mode 100644 index 00000000..570be576 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5ee27823e32b202f.verified.txt @@ -0,0 +1,145 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Chief Brand Associate | 7.6.8 | Ignored | | | https://lauriane.com | Devin | https://ramona.info | +| | | | | | | Alice | http://laverne.info | +| | | | | | | Layne | https://brooks.name | +| | | | | | | Kaitlyn | http://serenity.biz | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| National Creative Engineer | 4.0.0 | Ignored | You can't parse the alarm without overriding the haptic SMTP alarm! | | | Candida | https://craig.biz | +| | | | | | | Timmothy | https://joanny.biz | +| | | | | | | Alfonzo | http://dorothea.org | +| | | | | | | 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 | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Legacy Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| Internal Solutions Planner | 1.3.8 | Ignored | | The COM application is down, quantify the auxiliary application so we can quantify the COM application! | | Nyah | http://oliver.com | +| | | | | | | Ettie | http://lonny.net | +| | | | | | | Onie | https://cassie.biz | +| | | | | | | Solon | https://buck.biz | +| | | | | | | Taryn | http://hilton.com | +| | | | | | | Isabel | http://rogers.net | +| | | | | | | Bertrand | http://annetta.org | +| | | | | | | Remington | https://efrain.info | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Forward Directives Supervisor | 8.7.6 | Ignored | | The SSL microchip is down, hack the optical microchip so we can hack the SSL microchip! | http://shaun.org | Jadon | https://amelia.biz | +| | | | | | | Toni | http://angie.name | +| | | | | | | Ardella | http://melissa.net | +| | | | | | | Sandra | http://pearline.org | +| | | | | | | Noble | https://dusty.net | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 | +| Regional Mobility Manager | 2.7.0 | Ignored | | | http://gianni.info | Alvina | http://elouise.name | +| | | | | | | Ron | http://brown.org | +| | | | | | | Cordia | http://ericka.name | +| | | | | | | Eugene | http://rashad.info | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5ee8c7aa489eda9a.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5ee8c7aa489eda9a.verified.txt new file mode 100644 index 00000000..3ef4b4f4 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5ee8c7aa489eda9a.verified.txt @@ -0,0 +1,127 @@ +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| International Research Architect | 3.7.4 | Ignored | | Try to quantify the USB application, maybe it will quantify the mobile application! | If we index the pixel, we can get to the AI pixel through the wireless AI pixel! | | | Madisen | http://raegan.biz | +| | | | | | | | | Cathy | http://giovanna.info | +| | | | | | | | | Ike | https://jerome.biz | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| Global Mobility Facilitator | 8.5.9 | Url | | We need to parse the primary PCI protocol! | | Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch | https://itzel.info | Mitchel | http://carleton.name | +| | | | | | | | | Madalyn | http://narciso.net | +| | | | | | | | | Mia | http://nicklaus.net | +| | | | | | | | | Abelardo | http://carolina.name | +| National Accountability Producer | 6.9.7 | Unknown | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | https://linwood.biz | Travon | https://dedrick.name | +| | | | | | | | | Elissa | http://kaci.org | +| | | | | | | | | Brandi | https://aniyah.com | +| | | | | | | | | Tyson | https://bonita.org | +| | | | | | | | | Jazlyn | http://madonna.net | +| | | | | | | | | Deangelo | https://jess.info | +| | | | | | | | | Alvah | https://hans.net | +| Chief Solutions Administrator | 0.4.1 | Unknown | | 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 | Shaun | https://antwan.org | +| | | | | | | | | Hazel | https://forrest.net | +| | | | | | | | | Brianne | https://dorothea.name | +| | | | | | | | | Don | http://torey.com | +| | | | | | | | | Cedrick | https://zachariah.net | +| | | | | | | | | Marcelle | https://adah.org | +| | | | | | | | | Barney | http://erica.org | +| | | | | | | | | Jordi | https://alysha.com | +| | | | | | | | | Kristina | https://pattie.info | +| | | | | | | | | Cory | http://kailey.com | +| International Intranet Planner | 1.3.4 | Expression | 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 | Ahmad | https://lupe.com | +| | | | | | | | | Randi | https://jaiden.biz | +| | | | | | | | | Patience | https://marlene.name | +| | | | | | | | | Lenna | https://franco.name | +| | | | | | | | | Kyleigh | https://tevin.name | +| | | | | | | | | Sallie | https://jordane.name | +| | | | | | | | | Willy | https://daija.info | +| | | | | | | | | Jannie | https://retta.net | +| | | | | | | | | Lottie | http://yasmine.com | +| | | | | | | | | Delia | http://khalil.com | +| Investor Division Assistant | 9.6.2 | Url | | I'll parse the primary PCI matrix, that should matrix the PCI matrix! | | | | Nya | http://sunny.biz | +| | | | | | | | | Arlo | https://cordia.info | +| | | | | | | | | Linnie | https://marcos.name | +| | | | | | | | | Luella | http://frederic.name | +| | | | | | | | | Lucinda | https://dion.name | +| | | | | | | | | Jayson | https://ryleigh.net | +| | | | | | | | | Mervin | https://lorenza.net | +| Investor Operations Director | 5.6.0 | Expression | Try to input the AI microchip, maybe it will input the 1080p microchip! | | If we synthesize the sensor, we can get to the AI sensor through the redundant AI sensor! | | https://alene.info | Elouise | https://ron.com | +| | | | | | | | | Brown | https://cordia.com | +| | | | | | | | | Ericka | https://eugene.com | +| | | | | | | | | Rashad | http://thomas.com | +| | | | | | | | | Antonia | https://marcelle.org | +| Dynamic Group Associate | 6.6.1 | Ignored | We need to input the open-source SMTP bus! | | | | http://kian.name | Burley | http://lemuel.com | +| | | | | | | | | Brenden | http://agnes.net | +| | | | | | | | | Urban | https://micheal.name | +| | | | | | | | | Ida | https://murray.org | +| | | | | | | | | Samanta | http://assunta.biz | +| | | | | | | | | Florencio | http://bradford.info | +| | | | | | | | | Marcella | http://ray.net | +| | | | | | | | | Gunnar | https://elissa.net | +| | | | | | | | | Maud | https://edgar.name | +| | | | | | | | | Angelina | https://adonis.biz | +| Principal Assurance Representative | 3.8.2 | Ignored | | | | Patsy Erdman,Patsy Erdman,Patsy Erdman,Patsy Erdman | | Jadon | https://amelia.biz | +| | | | | | | | | Toni | http://angie.name | +| | | | | | | | | Ardella | http://melissa.net | +| | | | | | | | | Sandra | http://pearline.org | +| | | | | | | | | Noble | https://dusty.net | +| Corporate Marketing Strategist | 3.8.5 | Ignored | | | Use the redundant JSON application, then you can program the redundant application! | Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch | | Naomi | http://mckenna.net | +| | | | | | | | | Jalyn | https://katharina.name | +| | | | | | | | | Kane | http://beulah.biz | +| | | | | | | | | Eleanora | http://birdie.net | +| | | | | | | | | Alvah | http://keanu.net | +| Product Interactions Planner | 7.4.0 | Expression | Try to navigate the PCI matrix, maybe it will navigate the haptic matrix! | | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | http://bertha.net | Rey | https://connie.info | +| | | | | | | | | Hollie | http://rico.name | +| | | | | | | | | Marshall | http://pierce.org | +| | | | | | | | | 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 | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Forward Tactics Agent | 6.8.8 | Url | | We need to back up the primary SMTP circuit! | The COM bandwidth is down, input the auxiliary bandwidth so we can input the COM bandwidth! | Jon Schulist,Jon Schulist | https://flo.info | Diana | http://eula.name | +| | | | | | | | | Raphael | https://zackery.info | +| | | | | | | | | Nettie | https://brayan.com | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | Julius Abbott | http://celestine.info | Ettie | http://lonny.net | +| | | | | | | | | Onie | https://cassie.biz | +| | | | | | | | | Solon | https://buck.biz | +| Dynamic Solutions Assistant | 5.6.4 | Ignored | navigating the alarm won't do anything, we need to copy the 1080p AGP alarm! | | | Craig Halvorson,Craig Halvorson,Craig Halvorson,Craig Halvorson | http://isabell.info | Tess | http://kailyn.info | +| | | | | | | | | Eileen | http://manley.name | +| | | | | | | | | Conor | https://glenna.name | +| | | | | | | | | Sylvester | http://gaylord.biz | +| | | | | | | | | Maxime | https://tom.com | +| Global Mobility Technician | 8.6.3 | Unknown | | We need to input the haptic XML port! | | Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante | | Lonie | http://wilburn.org | +| | | | | | | | | Concepcion | http://ed.org | +| | | | | | | | | Amanda | https://sophie.net | +| | | | | | | | | Claudine | http://ofelia.biz | +| | | | | | | | | Petra | http://clare.name | +| | | | | | | | | Ozella | https://verla.name | +| | | | | | | | | Denis | http://pete.com | +| Product Data Liaison | 7.8.8 | Unknown | Try to calculate the GB card, maybe it will calculate the wireless card! | | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | | | Lewis | https://alisa.com | +| | | | | | | | | Delores | https://layne.name | +| | | | | | | | | Delphine | https://katlynn.org | +| | | | | | | | | Meredith | https://johanna.info | +| | | | | | | | | Jacklyn | https://kadin.com | +| | | | | | | | | Hardy | https://donna.info | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5f099f14ab7ee3c0.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5f099f14ab7ee3c0.verified.txt new file mode 100644 index 00000000..8462547d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5f099f14ab7ee3c0.verified.txt @@ -0,0 +1,147 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | +| Customer Metrics Analyst | 6.7.1 | Unknown | | | | | | | | +| 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Dynamic Factors Producer | 5.7.1 | Url | | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | | | | | +| District Creative Designer | 1.4.6 | Url | We need to program the haptic IB panel! | | | | http://cameron.info | | | +| Chief Functionality Planner | 5.1.2 | Unknown | | I'll calculate the 1080p HDD system, that should system the HDD system! | | Matt Mills,Matt Mills | http://myrtice.com | | | +| Global Markets Administrator | 8.6.8 | Expression | 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! | The SSL application is down, reboot the bluetooth application so we can reboot the SSL application! | Julius Bernhard,Julius Bernhard,Julius Bernhard,Julius Bernhard | https://lois.biz | | | +| National Accountability Producer | 6.9.7 | Unknown | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | https://linwood.biz | Travon | https://dedrick.name | +| | | | | | | | | Elissa | http://kaci.org | +| | | | | | | | | Brandi | https://aniyah.com | +| | | | | | | | | Tyson | https://bonita.org | +| | | | | | | | | Jazlyn | http://madonna.net | +| | | | | | | | | Deangelo | https://jess.info | +| | | | | | | | | Alvah | https://hans.net | +| Global Mobility Technician | 8.6.3 | Unknown | | We need to input the haptic XML port! | | Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante | | Lonie | http://wilburn.org | +| | | | | | | | | Concepcion | http://ed.org | +| | | | | | | | | Amanda | https://sophie.net | +| | | | | | | | | Claudine | http://ofelia.biz | +| | | | | | | | | Petra | http://clare.name | +| | | | | | | | | Ozella | https://verla.name | +| | | | | | | | | Denis | http://pete.com | +| Dynamic Configuration Assistant | 3.2.1 | Expression | | 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 Consultant | 5.9.5 | Expression | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | bypassing the bus won't do anything, we need to calculate the virtual GB bus! | | Guadalupe Littel,Guadalupe Littel,Guadalupe Littel | | | | +| International Intranet Planner | 1.3.4 | Expression | 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 | Ahmad | https://lupe.com | +| | | | | | | | | Randi | https://jaiden.biz | +| | | | | | | | | Patience | https://marlene.name | +| | | | | | | | | Lenna | https://franco.name | +| | | | | | | | | Kyleigh | https://tevin.name | +| | | | | | | | | Sallie | https://jordane.name | +| | | | | | | | | Willy | https://daija.info | +| | | | | | | | | Jannie | https://retta.net | +| | | | | | | | | Lottie | http://yasmine.com | +| | | | | | | | | Delia | http://khalil.com | +| Investor Operations Director | 5.6.0 | Expression | Try to input the AI microchip, maybe it will input the 1080p microchip! | | If we synthesize the sensor, we can get to the AI sensor through the redundant AI sensor! | | https://alene.info | Elouise | https://ron.com | +| | | | | | | | | Brown | https://cordia.com | +| | | | | | | | | Ericka | https://eugene.com | +| | | | | | | | | Rashad | http://thomas.com | +| | | | | | | | | Antonia | https://marcelle.org | +| Corporate Optimization Agent | 2.7.0 | Ignored | | | | | http://bryce.com | | | +| Dynamic Group Associate | 6.6.1 | Ignored | We need to input the open-source SMTP bus! | | | | http://kian.name | Burley | http://lemuel.com | +| | | | | | | | | Brenden | http://agnes.net | +| | | | | | | | | Urban | https://micheal.name | +| | | | | | | | | Ida | https://murray.org | +| | | | | | | | | Samanta | http://assunta.biz | +| | | | | | | | | Florencio | http://bradford.info | +| | | | | | | | | Marcella | http://ray.net | +| | | | | | | | | Gunnar | https://elissa.net | +| | | | | | | | | Maud | https://edgar.name | +| | | | | | | | | Angelina | https://adonis.biz | +| Investor Division Assistant | 9.6.2 | Url | | I'll parse the primary PCI matrix, that should matrix the PCI matrix! | | | | Nya | http://sunny.biz | +| | | | | | | | | Arlo | https://cordia.info | +| | | | | | | | | Linnie | https://marcos.name | +| | | | | | | | | Luella | http://frederic.name | +| | | | | | | | | Lucinda | https://dion.name | +| | | | | | | | | Jayson | https://ryleigh.net | +| | | | | | | | | Mervin | https://lorenza.net | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Regional Factors Designer | 7.4.1 | Url | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | Use the haptic RSS port, then you can transmit the haptic port! | Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus | | | | +| Customer Interactions Representative | 0.8.8 | Url | We need to quantify the digital SSL array! | | | | http://heather.name | | | +| Product Data Liaison | 7.8.8 | Unknown | Try to calculate the GB card, maybe it will calculate the wireless card! | | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | | | Lewis | https://alisa.com | +| | | | | | | | | Delores | https://layne.name | +| | | | | | | | | Delphine | https://katlynn.org | +| | | | | | | | | Meredith | https://johanna.info | +| | | | | | | | | Jacklyn | https://kadin.com | +| | | | | | | | | Hardy | https://donna.info | +| Product Interactions Planner | 7.4.0 | Expression | Try to navigate the PCI matrix, maybe it will navigate the haptic matrix! | | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | http://bertha.net | Rey | https://connie.info | +| | | | | | | | | Hollie | http://rico.name | +| | | | | | | | | Marshall | http://pierce.org | +| | | | | | | | | 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 | +| Principal Assurance Representative | 3.8.2 | Ignored | | | | Patsy Erdman,Patsy Erdman,Patsy Erdman,Patsy Erdman | | Jadon | https://amelia.biz | +| | | | | | | | | Toni | http://angie.name | +| | | | | | | | | Ardella | http://melissa.net | +| | | | | | | | | Sandra | http://pearline.org | +| | | | | | | | | Noble | https://dusty.net | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Usability Manager | 9.1.0 | Overwrite | | Try to back up the THX interface, maybe it will back up the auxiliary interface! | | | http://vella.com | | | +| Forward Tactics Agent | 6.8.8 | Url | | We need to back up the primary SMTP circuit! | The COM bandwidth is down, input the auxiliary bandwidth so we can input the COM bandwidth! | Jon Schulist,Jon Schulist | https://flo.info | Diana | http://eula.name | +| | | | | | | | | Raphael | https://zackery.info | +| | | | | | | | | Nettie | https://brayan.com | +| Corporate Marketing Strategist | 3.8.5 | Ignored | | | Use the redundant JSON application, then you can program the redundant application! | Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch | | Naomi | http://mckenna.net | +| | | | | | | | | Jalyn | https://katharina.name | +| | | | | | | | | Kane | http://beulah.biz | +| | | | | | | | | Eleanora | http://birdie.net | +| | | | | | | | | Alvah | http://keanu.net | +| Global Mobility Facilitator | 8.5.9 | Url | | We need to parse the primary PCI protocol! | | Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch | https://itzel.info | Mitchel | http://carleton.name | +| | | | | | | | | Madalyn | http://narciso.net | +| | | | | | | | | Mia | http://nicklaus.net | +| | | | | | | | | Abelardo | http://carolina.name | +| International Research Architect | 3.7.4 | Ignored | | Try to quantify the USB application, maybe it will quantify the mobile application! | If we index the pixel, we can get to the AI pixel through the wireless AI pixel! | | | Madisen | http://raegan.biz | +| | | | | | | | | Cathy | http://giovanna.info | +| | | | | | | | | Ike | https://jerome.biz | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| National Security Orchestrator | 3.5.6 | Expression | Try to copy the HDD array, maybe it will copy the back-end array! | 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! | Roderick Koelpin,Roderick Koelpin,Roderick Koelpin | | | | +| Dynamic Solutions Assistant | 5.6.4 | Ignored | navigating the alarm won't do anything, we need to copy the 1080p AGP alarm! | | | Craig Halvorson,Craig Halvorson,Craig Halvorson,Craig Halvorson | http://isabell.info | Tess | http://kailyn.info | +| | | | | | | | | Eileen | http://manley.name | +| | | | | | | | | Conor | https://glenna.name | +| | | | | | | | | Sylvester | http://gaylord.biz | +| | | | | | | | | Maxime | https://tom.com | +| Human Accountability Developer | 6.9.0 | Unknown | If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit! | | | | | | | +| Future Accounts Designer | 5.1.9 | Expression | We need to navigate the wireless SAS pixel! | | | | | | | +| Lead Configuration Liaison | 1.8.9 | Expression | | connecting the transmitter won't do anything, we need to program the cross-platform XSS transmitter! | | | http://esther.biz | | | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| Internal Factors Facilitator | 2.6.3 | Url | | Try to copy the PNG sensor, maybe it will copy the 1080p sensor! | | Mable Kris,Mable Kris,Mable Kris,Mable Kris,Mable Kris | http://melba.name | | | +| Investor Interactions Designer | 1.9.4 | Url | | | parsing the card won't do anything, we need to synthesize the online SQL card! | Stella Barton,Stella Barton | https://octavia.name | | | +| Corporate Intranet Associate | 7.5.1 | Overwrite | | 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! | | | | | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | Julius Abbott | http://celestine.info | Ettie | http://lonny.net | +| | | | | | | | | Onie | https://cassie.biz | +| | | | | | | | | Solon | https://buck.biz | +| Chief Solutions Administrator | 0.4.1 | Unknown | | 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 | Shaun | https://antwan.org | +| | | | | | | | | Hazel | https://forrest.net | +| | | | | | | | | Brianne | https://dorothea.name | +| | | | | | | | | Don | http://torey.com | +| | | | | | | | | Cedrick | https://zachariah.net | +| | | | | | | | | Marcelle | https://adah.org | +| | | | | | | | | Barney | http://erica.org | +| | | | | | | | | Jordi | https://alysha.com | +| | | | | | | | | Kristina | https://pattie.info | +| | | | | | | | | Cory | http://kailey.com | +| Central Tactics Director | 4.6.7 | Url | backing up the system won't do anything, we need to parse the neural CSS system! | We need to transmit the back-end RSS transmitter! | | Doyle Osinski,Doyle Osinski,Doyle Osinski,Doyle Osinski | https://valentina.net | | | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5f31412b1a9d0005.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5f31412b1a9d0005.verified.txt new file mode 100644 index 00000000..87927a0a --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5f31412b1a9d0005.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | --------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | --------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | --------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5f67ca0ea5507104.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5f67ca0ea5507104.verified.txt new file mode 100644 index 00000000..f5a29520 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5f67ca0ea5507104.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5fd2bb09f18077dc.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5fd2bb09f18077dc.verified.txt new file mode 100644 index 00000000..139e24a0 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_5fd2bb09f18077dc.verified.txt @@ -0,0 +1,134 @@ +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| | | | | | Clemmie | http://shanny.net | +| | | | | | Hildegard | http://conner.name | +| | | | | | Isabella | https://kennith.com | +| | | | | | Johanna | https://ara.org | +| | | | | | Demarco | https://rae.biz | +| | | | | | Viviane | http://christine.info | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Legacy Creative Liaison | 0.4.6 | Overwrite | | | Mervin | http://celestine.info | +| | | | | | Amalia | https://shanelle.info | +| | | | | | Sheila | http://darrell.info | +| | | | | | Alec | https://candice.biz | +| | | | | | Linnea | http://everardo.info | +| | | | | | Daryl | https://jerrod.com | +| | | | | | Laila | http://caleigh.net | +| | | | | | Adolfo | http://daisha.biz | +| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| | | | | | Monserrat | http://katrine.name | +| | | | | | Abel | https://geovany.com | +| | | | | | Diana | http://eula.name | +| | | | | | Raphael | https://zackery.info | +| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| | | | | | Caleigh | https://albin.info | +| | | | | | Flavie | http://lavonne.biz | +| | | | | | Kaitlyn | http://osborne.org | +| | | | | | Joesph | https://michael.name | +| | | | | | Kali | http://shyanne.net | +| | | | | | Austin | https://marty.net | +| | | | | | Theresia | http://kristin.net | +| | | | | | Lester | https://paige.com | +| National Accounts Liaison | 7.2.6 | Overwrite | | | Cedrick | https://zachariah.net | +| | | | | | Marcelle | https://adah.org | +| | | | | | Barney | http://erica.org | +| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| | | | | | Jody | http://jakob.org | +| | | | | | Anjali | https://valentin.info | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| | | | | | Earnestine | http://nathanial.biz | +| | | | | | Connor | https://augustus.net | +| | | | | | Araceli | http://hailey.biz | +| | | | | | Janessa | https://craig.com | +| | | | | | Erica | http://kristin.org | +| | | | | | Alek | http://shany.biz | +| Dynamic Marketing Consultant | 2.4.9 | Overwrite | | | Angie | https://ardella.info | +| | | | | | Melissa | https://sandra.biz | +| | | | | | Pearline | https://noble.net | +| | | | | | Dusty | https://verlie.com | +| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| | | | | | Ursula | https://werner.net | +| | | | | | Linwood | http://rebekah.org | +| | | | | | Cleve | https://claudie.net | +| | | | | | Theodora | http://faye.info | +| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| | | | | | Braeden | https://sunny.name | +| | | | | | Leslie | http://bettie.info | +| | | | | | Edmund | http://sadie.info | +| | | | | | Horacio | https://loraine.name | +| Global Response Associate | 1.9.8 | Overwrite | The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth! | | Sandra | http://antonina.com | +| | | | | | Willow | https://jason.org | +| | | | | | Orland | http://rigoberto.com | +| | | | | | Laney | http://eryn.org | +| | | | | | Amari | http://viviane.net | +| | | | | | Kelley | http://doris.net | +| | | | | | Kennedy | https://milo.net | +| Senior Brand Developer | 4.4.1 | Ignored | If we override the system, we can get to the CSS system through the neural CSS system! | http://adelbert.net | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| | | | | | Libby | http://wade.biz | +| | | | | | Leola | https://pietro.info | +| | | | | | Arch | http://hazle.org | +| | | | | | Eldred | http://gabriel.net | +| Direct Accounts Associate | 3.2.6 | Overwrite | | https://vesta.com | Buck | http://taryn.com | +| | | | | | Hilton | http://isabel.com | +| | | | | | Rogers | https://bertrand.biz | +| | | | | | Annetta | https://remington.org | +| | | | | | Efrain | http://davion.org | +| | | | | | Merle | https://abigayle.org | +| | | | | | Jerod | https://vicenta.info | +| | | | | | Kayli | https://shaun.net | +| | | | | | Antwan | https://hazel.net | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| | | | | | Princess | http://haylie.biz | +| | | | | | Jordane | https://gregorio.com | +| | | | | | Opal | http://abbie.org | +| | | | | | Pablo | https://maxime.biz | +| | | | | | Shaun | https://concepcion.net | +| | | | | | Moises | http://rupert.info | +| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| | | | | | Tyson | https://bonita.org | +| | | | | | Jazlyn | http://madonna.net | +| | | | | | Deangelo | https://jess.info | +| | | | | | Alvah | https://hans.net | +| | | | | | Payton | http://shanna.name | +| | | | | | Providenci | https://tyra.org | +| | | | | | Flo | http://isidro.net | +| | | | | | Dawn | https://anika.org | +| | | | | | Silas | http://zane.name | +| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| | | | | | Clarissa | https://audreanne.name | +| | | | | | Vida | https://theresia.biz | +| | | | | | Ransom | http://isom.com | +| | | | | | Anastasia | http://kamryn.info | +| | | | | | Marlene | https://cyril.name | +| | | | | | Zetta | http://pete.org | +| | | | | | Candida | https://craig.biz | +| | | | | | Timmothy | https://joanny.biz | +| | | | | | Alfonzo | http://dorothea.org | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_605628582a6a71e9.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_605628582a6a71e9.verified.txt new file mode 100644 index 00000000..43846a6b --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_605628582a6a71e9.verified.txt @@ -0,0 +1,8 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------- | -------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Error | Error 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 | Alyson | https://carmelo.biz | +| | | | | | | Michele | https://miles.net | +| | | | | | | Freddie | http://kade.net | +| | | | | | | Jaunita | http://marcelina.biz | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------- | -------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_60b80076f3ba1782.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_60b80076f3ba1782.verified.txt new file mode 100644 index 00000000..80f20af9 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_60b80076f3ba1782.verified.txt @@ -0,0 +1,39 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_60c7fbab4e549f32.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_60c7fbab4e549f32.verified.txt new file mode 100644 index 00000000..1cfb737f --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_60c7fbab4e549f32.verified.txt @@ -0,0 +1,12 @@ +| ------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Global Usability Representative | 3.5.9 | Url | | | | | +| Forward Quality Producer | 6.3.7 | Overwrite | The CSS microchip is down, back up the bluetooth microchip so we can back up the CSS microchip! | https://jayne.name | | | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | +| Regional Security Architect | 2.2.5 | Url | | | | | +| ------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_618ec6efef6eaebb.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_618ec6efef6eaebb.verified.txt new file mode 100644 index 00000000..38a58b36 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_618ec6efef6eaebb.verified.txt @@ -0,0 +1,8 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_62bda71b9a118f43.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_62bda71b9a118f43.verified.txt new file mode 100644 index 00000000..67c89094 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_62bda71b9a118f43.verified.txt @@ -0,0 +1,32 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_63555e04ffd07806.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_63555e04ffd07806.verified.txt new file mode 100644 index 00000000..651431ae --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_63555e04ffd07806.verified.txt @@ -0,0 +1,128 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Creative Architect | 4.5.6 | Overwrite | | The PCI microchip is down, input the cross-platform microchip so we can input the PCI microchip! | If we quantify the transmitter, we can get to the XML transmitter through the optical XML transmitter! | | Selmer | https://jairo.info | +| | | | | | | | Juanita | http://holly.name | +| | | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | | Adalberto | https://sister.biz | +| | | | | | | | Gerald | https://vidal.com | +| | | | | | | | Lucio | http://clemmie.info | +| Dynamic Program Associate | 5.9.7 | Expression | | | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Suzanne | http://ima.name | +| | | | | | | | Earnestine | http://nathanial.biz | +| | | | | | | | Connor | https://augustus.net | +| | | | | | | | Araceli | http://hailey.biz | +| | | | | | | | Janessa | https://craig.com | +| | | | | | | | Erica | http://kristin.org | +| | | | | | | | Alek | http://shany.biz | +| Internal Branding Executive | 2.0.9 | Overwrite | | The SAS sensor is down, input the auxiliary sensor so we can input the SAS sensor! | You can't bypass the application without programming the solid state COM application! | https://efrain.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 | +| Global Optimization Architect | 4.8.0 | Expression | | 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://gaylord.name | Vida | https://theresia.biz | +| | | | | | | | Ransom | http://isom.com | +| | | | | | | | Anastasia | http://kamryn.info | +| | | | | | | | Marlene | https://cyril.name | +| | | | | | | | Zetta | http://pete.org | +| | | | | | | | Candida | https://craig.biz | +| | | | | | | | Timmothy | https://joanny.biz | +| Lead Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Dynamic Data Director | 8.6.8 | Overwrite | | | We need to back up the primary SMTP circuit! | https://timothy.info | Kirsten | http://madisyn.com | +| | | | | | | | Murray | https://destinee.com | +| | | | | | | | Emanuel | https://keely.info | +| | | | | | | | Obie | https://caleigh.net | +| | | | | | | | Albin | http://flavie.com | +| | | | | | | | Lavonne | http://kaitlyn.com | +| | | | | | | | Osborne | https://joesph.name | +| | | | | | | | Michael | https://kali.com | +| Investor Usability Producer | 9.7.6 | Url | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | Jett | https://randal.biz | +| | | | | | | | Leif | http://chaz.name | +| | | | | | | | Tristian | http://susie.com | +| | | | | | | | Carmelo | https://kariane.com | +| | | | | | | | Sofia | http://daphnee.name | +| | | | | | | | Nedra | http://orland.info | +| | | | | | | | Hilton | http://shany.info | +| Regional Paradigm Assistant | 9.8.0 | Url | | If we input the transmitter, we can get to the HDD transmitter through the bluetooth HDD transmitter! | | | Jordan | https://kathryne.name | +| | | | | | | | Mayra | http://lance.name | +| | | | | | | | Jimmie | https://lorine.org | +| | | | | | | | Rebeka | https://malika.org | +| | | | | | | | Trinity | http://fritz.info | +| | | | | | | | Neha | https://marianne.name | +| | | | | | | | Colin | https://billie.biz | +| | | | | | | | Brielle | https://brennon.name | +| | | | | | | | Myriam | https://rosemary.name | +| International Assurance Executive | 2.8.5 | Ignored | The RSS driver is down, transmit the solid state driver so we can transmit the RSS driver! | | We need to parse the optical FTP driver! | http://antonina.com | Alvah | http://otha.name | +| | | | | | | | Natasha | https://nyah.com | +| | | | | | | | Oliver | http://ettie.biz | +| | | | | | | | Lonny | https://onie.org | +| | | | | | | | Cassie | http://solon.net | +| | | | | | | | Buck | http://taryn.com | +| | | | | | | | Hilton | http://isabel.com | +| Chief Data Orchestrator | 4.3.2 | Ignored | | | We need to back up the multi-byte SCSI transmitter! | http://gaylord.com | Taya | http://micaela.biz | +| | | | | | | | Evert | http://tomas.net | +| | | | | | | | Brett | http://virginie.net | +| Human Accounts Executive | 7.6.7 | Unknown | Use the auxiliary PNG interface, then you can generate the auxiliary interface! | | You can't connect the interface without backing up the optical SMTP interface! | http://kristin.net | Seamus | http://maybell.info | +| | | | | | | | Monserrat | http://katrine.name | +| | | | | | | | Abel | https://geovany.com | +| | | | | | | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| Lead Integration Engineer | 8.7.4 | Unknown | | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | http://jackeline.biz | Reanna | http://buck.net | +| | | | | | | | Christine | http://demarco.name | +| | | | | | | | Marge | http://astrid.net | +| | | | | | | | Charlene | http://rod.net | +| Legacy Creative Liaison | 0.4.6 | Expression | | The SMS system is down, back up the open-source system so we can back up the SMS system! | I'll connect the optical FTP program, that should program the FTP program! | | Candice | http://linnea.com | +| | | | | | | | Everardo | http://daryl.net | +| | | | | | | | Jerrod | http://laila.com | +| | | | | | | | Caleigh | https://adolfo.com | +| | | | | | | | Daisha | http://justine.biz | +| | | | | | | | Americo | http://tessie.org | +| | | | | | | | Howard | https://luis.info | +| Corporate Tactics Analyst | 3.0.8 | Overwrite | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | Use the virtual RAM monitor, then you can override the virtual monitor! | | | Hildegard | http://conner.name | +| | | | | | | | 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 | +| | | | | | | | Irving | https://sydnie.org | +| Dynamic Quality Officer | 8.9.2 | Ignored | | | | https://danika.org | Jadon | https://amelia.biz | +| | | | | | | | Toni | http://angie.name | +| | | | | | | | Ardella | http://melissa.net | +| | | | | | | | Sandra | http://pearline.org | +| | | | | | | | Noble | https://dusty.net | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | Edmund | http://sadie.info | +| | | | | | | | Horacio | https://loraine.name | +| | | | | | | | Sandra | https://emil.info | +| | | | | | | | Dayana | https://leila.info | +| | | | | | | | Micah | http://darien.com | +| | | | | | | | Ethel | http://shakira.net | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_63f2cbc1416cb368.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_63f2cbc1416cb368.verified.txt new file mode 100644 index 00000000..abd06b6a --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_63f2cbc1416cb368.verified.txt @@ -0,0 +1,128 @@ +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------ | ------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------ | ------------------- | ---------- | ---------------------- | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | | | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | | | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | | | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | | | +| Legacy Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | | | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | | | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | | | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------ | ------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_64a7202213fafb27.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_64a7202213fafb27.verified.txt new file mode 100644 index 00000000..9844cd4f --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_64a7202213fafb27.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_64b8c9f5c4cefbd1.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_64b8c9f5c4cefbd1.verified.txt new file mode 100644 index 00000000..31d92854 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_64b8c9f5c4cefbd1.verified.txt @@ -0,0 +1,113 @@ +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| Legacy Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.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 | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Senior Solutions Strategist | 7.5.0 | 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 Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.biz | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Corporate Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6576574df07852b1.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6576574df07852b1.verified.txt new file mode 100644 index 00000000..2fe070a7 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6576574df07852b1.verified.txt @@ -0,0 +1,46 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_657f52ed0dfc9e03.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_657f52ed0dfc9e03.verified.txt new file mode 100644 index 00000000..42162f1e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_657f52ed0dfc9e03.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_65a97cfe80ff89d4.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_65a97cfe80ff89d4.verified.txt new file mode 100644 index 00000000..570be576 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_65a97cfe80ff89d4.verified.txt @@ -0,0 +1,145 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Chief Brand Associate | 7.6.8 | Ignored | | | https://lauriane.com | Devin | https://ramona.info | +| | | | | | | Alice | http://laverne.info | +| | | | | | | Layne | https://brooks.name | +| | | | | | | Kaitlyn | http://serenity.biz | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| National Creative Engineer | 4.0.0 | Ignored | You can't parse the alarm without overriding the haptic SMTP alarm! | | | Candida | https://craig.biz | +| | | | | | | Timmothy | https://joanny.biz | +| | | | | | | Alfonzo | http://dorothea.org | +| | | | | | | 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 | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Legacy Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| Internal Solutions Planner | 1.3.8 | Ignored | | The COM application is down, quantify the auxiliary application so we can quantify the COM application! | | Nyah | http://oliver.com | +| | | | | | | Ettie | http://lonny.net | +| | | | | | | Onie | https://cassie.biz | +| | | | | | | Solon | https://buck.biz | +| | | | | | | Taryn | http://hilton.com | +| | | | | | | Isabel | http://rogers.net | +| | | | | | | Bertrand | http://annetta.org | +| | | | | | | Remington | https://efrain.info | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Forward Directives Supervisor | 8.7.6 | Ignored | | The SSL microchip is down, hack the optical microchip so we can hack the SSL microchip! | http://shaun.org | Jadon | https://amelia.biz | +| | | | | | | Toni | http://angie.name | +| | | | | | | Ardella | http://melissa.net | +| | | | | | | Sandra | http://pearline.org | +| | | | | | | Noble | https://dusty.net | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 | +| Regional Mobility Manager | 2.7.0 | Ignored | | | http://gianni.info | Alvina | http://elouise.name | +| | | | | | | Ron | http://brown.org | +| | | | | | | Cordia | http://ericka.name | +| | | | | | | Eugene | http://rashad.info | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_65e526ede58b15fa.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_65e526ede58b15fa.verified.txt new file mode 100644 index 00000000..53d88a69 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_65e526ede58b15fa.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Paige | https://remington.info | +| | | | | | Aletha | https://isobel.info | +| | | | | | Pearline | https://johnathon.info | +| | | | | | Eleanora | http://jaeden.info | +| | | | | | Nikolas | https://daphney.net | +| | | | | | Oceane | http://clifton.com | +| | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | http://marina.com | Myles | http://nikko.name | +| | | | | | Rolando | http://nikko.name | +| | | | | | Pamela | https://aliza.net | +| | | | | | Marcella | http://helga.net | +| | | | | | Alisha | http://alyson.name | +| | | | | | Carmelo | http://michele.name | +| | | | | | Miles | https://freddie.com | +| | | | | | Kade | https://jaunita.biz | +| | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | Abner | http://tavares.info | +| | | | | | Johann | http://andres.net | +| | | | | | Jaquan | http://carey.org | +| | | | | | Arvel | http://mortimer.org | +| | | | | | Alicia | http://paula.com | +| | | | | | Heidi | http://letha.name | +| | | | | | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_65e8b95acf6b0cc5.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_65e8b95acf6b0cc5.verified.txt new file mode 100644 index 00000000..f81123c7 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_65e8b95acf6b0cc5.verified.txt @@ -0,0 +1,130 @@ +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.biz | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| Corporate Accountability Designer | 0.8.0 | Ignored | We need to hack the online FTP application! | | Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn | http://taya.info | Abelardo | http://carolina.name | +| | | | | | | | Lindsey | http://rigoberto.org | +| | | | | | | | Lou | http://darlene.biz | +| | | | | | | | Oliver | https://filomena.com | +| | | | | | | | Vincenzo | https://ulices.biz | +| | | | | | | | Florida | http://jovan.net | +| | | | | | | | Ari | https://chad.com | +| | | | | | | | Yvonne | http://jada.name | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Customer Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Dynamic Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| Legacy Usability Coordinator | 5.8.8 | Overwrite | Try to calculate the PNG port, maybe it will calculate the back-end port! | | | http://thora.info | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Senior Solutions Strategist | 7.5.0 | 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 | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Corporate Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | http://celestine.info | Clemens | https://abagail.info | +| | | | | | | | Franz | http://prudence.info | +| | | | | | | | Casper | https://alva.com | +| | | | | | | | Mario | http://alexandria.biz | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6644a4cf6034c5be.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6644a4cf6034c5be.verified.txt new file mode 100644 index 00000000..027e313c --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6644a4cf6034c5be.verified.txt @@ -0,0 +1,39 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_66800a6855a879e4.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_66800a6855a879e4.verified.txt new file mode 100644 index 00000000..60442058 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_66800a6855a879e4.verified.txt @@ -0,0 +1,46 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6692e55109a6246a.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6692e55109a6246a.verified.txt new file mode 100644 index 00000000..53d88a69 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6692e55109a6246a.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Paige | https://remington.info | +| | | | | | Aletha | https://isobel.info | +| | | | | | Pearline | https://johnathon.info | +| | | | | | Eleanora | http://jaeden.info | +| | | | | | Nikolas | https://daphney.net | +| | | | | | Oceane | http://clifton.com | +| | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | http://marina.com | Myles | http://nikko.name | +| | | | | | Rolando | http://nikko.name | +| | | | | | Pamela | https://aliza.net | +| | | | | | Marcella | http://helga.net | +| | | | | | Alisha | http://alyson.name | +| | | | | | Carmelo | http://michele.name | +| | | | | | Miles | https://freddie.com | +| | | | | | Kade | https://jaunita.biz | +| | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | Abner | http://tavares.info | +| | | | | | Johann | http://andres.net | +| | | | | | Jaquan | http://carey.org | +| | | | | | Arvel | http://mortimer.org | +| | | | | | Alicia | http://paula.com | +| | | | | | Heidi | http://letha.name | +| | | | | | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_669648871bdd0d7a.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_669648871bdd0d7a.verified.txt new file mode 100644 index 00000000..8561c063 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_669648871bdd0d7a.verified.txt @@ -0,0 +1,46 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_67af68dd5d2f82f6.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_67af68dd5d2f82f6.verified.txt new file mode 100644 index 00000000..7d3cc5b3 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_67af68dd5d2f82f6.verified.txt @@ -0,0 +1,21 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_67e8527245c3e86c.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_67e8527245c3e86c.verified.txt new file mode 100644 index 00000000..dbc6fbb3 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_67e8527245c3e86c.verified.txt @@ -0,0 +1,31 @@ +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| National Directives Analyst | 8.2.7 | Ignored | We need to compress the primary GB array! | | | | | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | | | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | | | +| Investor Intranet Producer | 5.4.1 | Ignored | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | http://hyman.org | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | | | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | | | +| Regional Directives Supervisor | 4.9.8 | Ignored | Try to reboot the THX hard drive, maybe it will reboot the open-source hard drive! | Use the primary GB driver, then you can generate the primary driver! | https://malcolm.net | | | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | | | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Dynamic Optimization Director | 3.4.6 | Ignored | The PNG protocol is down, index the digital protocol so we can index the PNG protocol! | I'll transmit the online SSL feed, that should feed the SSL feed! | https://maximilian.org | | | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | | | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | | | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | | | +| International Data Representative | 3.5.7 | Ignored | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | http://dakota.com | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_68157b79e1bc75fc.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_68157b79e1bc75fc.verified.txt new file mode 100644 index 00000000..d9b9991e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_68157b79e1bc75fc.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | Clare | https://bobby.info | +| | | | | | | Cecil | https://kira.net | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | Ila | http://rachel.com | +| | | | | | | Catalina | http://jolie.com | +| | | | | | | Dianna | https://leda.net | +| | | | | | | Nicola | http://aleen.name | +| | | | | | | Nelda | http://delpha.net | +| | | | | | | Delores | http://rae.biz | +| | | | | | | Cynthia | https://zella.com | +| | | | | | | Greta | http://adolph.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_68a0ba32c8e31949.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_68a0ba32c8e31949.verified.txt new file mode 100644 index 00000000..5dfb35e3 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_68a0ba32c8e31949.verified.txt @@ -0,0 +1,145 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Chief Brand Associate | 7.6.8 | Ignored | | | https://lauriane.com | Devin | https://ramona.info | +| | | | | | | Alice | http://laverne.info | +| | | | | | | Layne | https://brooks.name | +| | | | | | | Kaitlyn | http://serenity.biz | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| National Creative Engineer | 4.0.0 | Ignored | You can't parse the alarm without overriding the haptic SMTP alarm! | | | Candida | https://craig.biz | +| | | | | | | Timmothy | https://joanny.biz | +| | | | | | | Alfonzo | http://dorothea.org | +| | | | | | | 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 | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Legacy Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| Internal Solutions Planner | 1.3.8 | Ignored | | The COM application is down, quantify the auxiliary application so we can quantify the COM application! | | Nyah | http://oliver.com | +| | | | | | | Ettie | http://lonny.net | +| | | | | | | Onie | https://cassie.biz | +| | | | | | | Solon | https://buck.biz | +| | | | | | | Taryn | http://hilton.com | +| | | | | | | Isabel | http://rogers.net | +| | | | | | | Bertrand | http://annetta.org | +| | | | | | | Remington | https://efrain.info | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Forward Directives Supervisor | 8.7.6 | Ignored | | The SSL microchip is down, hack the optical microchip so we can hack the SSL microchip! | http://shaun.org | Jadon | https://amelia.biz | +| | | | | | | Toni | http://angie.name | +| | | | | | | Ardella | http://melissa.net | +| | | | | | | Sandra | http://pearline.org | +| | | | | | | Noble | https://dusty.net | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 | +| Regional Mobility Manager | 2.7.0 | Ignored | | | http://gianni.info | Alvina | http://elouise.name | +| | | | | | | Ron | http://brown.org | +| | | | | | | Cordia | http://ericka.name | +| | | | | | | Eugene | http://rashad.info | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_68bde6b18ad651fe.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_68bde6b18ad651fe.verified.txt new file mode 100644 index 00000000..0028ce64 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_68bde6b18ad651fe.verified.txt @@ -0,0 +1,16 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6900d41a1c07fd5e.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6900d41a1c07fd5e.verified.txt new file mode 100644 index 00000000..e65ed6e4 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6900d41a1c07fd5e.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_691b5cad42c1d06b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_691b5cad42c1d06b.verified.txt new file mode 100644 index 00000000..21f1d0a1 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_691b5cad42c1d06b.verified.txt @@ -0,0 +1,21 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | Braeden | http://ayana.org | +| | | | | | | | Avery | http://jarret.biz | +| | | | | | | | Clarissa | https://audreanne.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 | | Alyson | https://carmelo.biz | +| | | | | | | | Michele | https://miles.net | +| | | | | | | | Freddie | http://kade.net | +| | | | | | | | Jaunita | http://marcelina.biz | +| Future Data Manager | 2.5.9 | Expression | | | | | Abner | http://tavares.info | +| | | | | | | | Johann | http://andres.net | +| | | | | | | | Jaquan | http://carey.org | +| | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | Alicia | http://paula.com | +| | | | | | | | Heidi | http://letha.name | +| | | | | | | | Reid | https://amely.info | +| | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | Kiara | https://floyd.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_691c0ea51b3c0553.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_691c0ea51b3c0553.verified.txt new file mode 100644 index 00000000..9844cd4f --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_691c0ea51b3c0553.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_696c46e1aed52747.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_696c46e1aed52747.verified.txt new file mode 100644 index 00000000..c1b640d1 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_696c46e1aed52747.verified.txt @@ -0,0 +1,55 @@ +| ----------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | +| National Tactics Engineer | 3.7.5 | Url | generating the matrix won't do anything, we need to override the redundant GB matrix! | https://alexys.org | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Dynamic Functionality Agent | 5.9.5 | Unknown | | http://annabelle.net | | | +| Central Integration Analyst | 0.4.0 | Overwrite | If we synthesize the protocol, we can get to the JBOD protocol through the multi-byte JBOD protocol! | https://laverne.name | | | +| Dynamic Security Technician | 6.8.3 | Unknown | | | | | +| Global Security Liaison | 8.1.2 | Expression | | | | | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Central Interactions Manager | 7.0.9 | Expression | | | | | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Regional Solutions Supervisor | 1.8.2 | Ignored | You can't parse the system without compressing the haptic GB system! | https://lance.net | | | +| District Mobility Administrator | 3.2.3 | Ignored | | | | | +| Forward Functionality Analyst | 4.5.1 | Expression | | http://orie.name | | | +| Customer Operations Officer | 2.6.0 | Overwrite | Use the bluetooth USB alarm, then you can override the bluetooth alarm! | http://antonette.org | | | +| District Branding Analyst | 1.9.5 | Url | | https://paula.net | | | +| Dynamic Applications Director | 5.1.4 | Ignored | | | | | +| Customer Directives Director | 7.9.2 | Overwrite | Try to hack the COM panel, maybe it will hack the auxiliary panel! | | | | +| Product Applications Assistant | 2.8.4 | Overwrite | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | https://carleton.info | | | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Senior Brand Developer | 4.4.1 | Ignored | If we override the system, we can get to the CSS system through the neural CSS system! | http://adelbert.net | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| | | | | | Libby | http://wade.biz | +| | | | | | Leola | https://pietro.info | +| | | | | | Arch | http://hazle.org | +| | | | | | Eldred | http://gabriel.net | +| Forward Quality Producer | 6.3.7 | Overwrite | The CSS microchip is down, back up the bluetooth microchip so we can back up the CSS microchip! | https://jayne.name | | | +| Chief Assurance Associate | 3.3.1 | Url | overriding the panel won't do anything, we need to parse the open-source IB panel! | https://tyrese.info | | | +| National Communications Facilitator | 3.1.0 | Url | quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter! | | | | +| Regional Security Architect | 2.2.5 | Url | | | | | +| Global Usability Representative | 3.5.9 | Url | | | | | +| ----------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6a9516a0e92e6515.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6a9516a0e92e6515.verified.txt new file mode 100644 index 00000000..28523e49 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6a9516a0e92e6515.verified.txt @@ -0,0 +1,35 @@ +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Senior Brand Developer | 4.4.1 | Ignored | If we override the system, we can get to the CSS system through the neural CSS system! | http://adelbert.net | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| | | | | | Libby | http://wade.biz | +| | | | | | Leola | https://pietro.info | +| | | | | | Arch | http://hazle.org | +| | | | | | Eldred | http://gabriel.net | +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6aeb5593f7a0b7a3.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6aeb5593f7a0b7a3.verified.txt new file mode 100644 index 00000000..6c46dd00 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6aeb5593f7a0b7a3.verified.txt @@ -0,0 +1,46 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6b31968c91ea4889.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6b31968c91ea4889.verified.txt new file mode 100644 index 00000000..f0a3d464 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6b31968c91ea4889.verified.txt @@ -0,0 +1,14 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------- | --------- | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6b5690f21a666557.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6b5690f21a666557.verified.txt new file mode 100644 index 00000000..4099e8d9 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6b5690f21a666557.verified.txt @@ -0,0 +1,49 @@ +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | | | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | | | +| National Directives Analyst | 8.2.7 | Ignored | We need to compress the primary GB array! | | | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | | | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | | | +| Dynamic Optimization Director | 3.4.6 | Ignored | The PNG protocol is down, index the digital protocol so we can index the PNG protocol! | I'll transmit the online SSL feed, that should feed the SSL feed! | https://maximilian.org | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | | | +| International Data Representative | 3.5.7 | Ignored | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | http://dakota.com | | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | | | +| Investor Intranet Producer | 5.4.1 | Ignored | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | http://hyman.org | | | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| Regional Directives Supervisor | 4.9.8 | Ignored | Try to reboot the THX hard drive, maybe it will reboot the open-source hard drive! | Use the primary GB driver, then you can generate the primary driver! | https://malcolm.net | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | | | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | | | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6b6ba699a706497f.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6b6ba699a706497f.verified.txt new file mode 100644 index 00000000..be6dbc96 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6b6ba699a706497f.verified.txt @@ -0,0 +1,106 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Creative Architect | 4.5.6 | Overwrite | | The PCI microchip is down, input the cross-platform microchip so we can input the PCI microchip! | If we quantify the transmitter, we can get to the XML transmitter through the optical XML transmitter! | | Selmer | https://jairo.info | +| | | | | | | | Juanita | http://holly.name | +| | | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | | Adalberto | https://sister.biz | +| | | | | | | | Gerald | https://vidal.com | +| | | | | | | | Lucio | http://clemmie.info | +| Dynamic Program Associate | 5.9.7 | Expression | | | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Suzanne | http://ima.name | +| | | | | | | | Earnestine | http://nathanial.biz | +| | | | | | | | Connor | https://augustus.net | +| | | | | | | | Araceli | http://hailey.biz | +| | | | | | | | Janessa | https://craig.com | +| | | | | | | | Erica | http://kristin.org | +| | | | | | | | Alek | http://shany.biz | +| Internal Branding Executive | 2.0.9 | Overwrite | | The SAS sensor is down, input the auxiliary sensor so we can input the SAS sensor! | You can't bypass the application without programming the solid state COM application! | https://efrain.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 | +| Central Infrastructure Agent | 6.1.6 | Expression | | | You can't quantify the program without overriding the online SDD program! | | | | +| Global Optimization Architect | 4.8.0 | Expression | | 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://gaylord.name | Vida | https://theresia.biz | +| | | | | | | | Ransom | http://isom.com | +| | | | | | | | Anastasia | http://kamryn.info | +| | | | | | | | Marlene | https://cyril.name | +| | | | | | | | Zetta | http://pete.org | +| | | | | | | | Candida | https://craig.biz | +| | | | | | | | Timmothy | https://joanny.biz | +| Lead Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Dynamic Data Director | 8.6.8 | Overwrite | | | We need to back up the primary SMTP circuit! | https://timothy.info | Kirsten | http://madisyn.com | +| | | | | | | | Murray | https://destinee.com | +| | | | | | | | Emanuel | https://keely.info | +| | | | | | | | Obie | https://caleigh.net | +| | | | | | | | Albin | http://flavie.com | +| | | | | | | | Lavonne | http://kaitlyn.com | +| | | | | | | | Osborne | https://joesph.name | +| | | | | | | | Michael | https://kali.com | +| Investor Usability Producer | 9.7.6 | Url | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | Jett | https://randal.biz | +| | | | | | | | Leif | http://chaz.name | +| | | | | | | | Tristian | http://susie.com | +| | | | | | | | Carmelo | https://kariane.com | +| | | | | | | | Sofia | http://daphnee.name | +| | | | | | | | Nedra | http://orland.info | +| | | | | | | | Hilton | http://shany.info | +| Regional Paradigm Assistant | 9.8.0 | Url | | If we input the transmitter, we can get to the HDD transmitter through the bluetooth HDD transmitter! | | | Jordan | https://kathryne.name | +| | | | | | | | Mayra | http://lance.name | +| | | | | | | | Jimmie | https://lorine.org | +| | | | | | | | Rebeka | https://malika.org | +| | | | | | | | Trinity | http://fritz.info | +| | | | | | | | Neha | https://marianne.name | +| | | | | | | | Colin | https://billie.biz | +| | | | | | | | Brielle | https://brennon.name | +| | | | | | | | Myriam | https://rosemary.name | +| Human Accounts Executive | 7.6.7 | Unknown | Use the auxiliary PNG interface, then you can generate the auxiliary interface! | | You can't connect the interface without backing up the optical SMTP interface! | http://kristin.net | Seamus | http://maybell.info | +| | | | | | | | Monserrat | http://katrine.name | +| | | | | | | | Abel | https://geovany.com | +| | | | | | | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| Lead Integration Engineer | 8.7.4 | Unknown | | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | http://jackeline.biz | Reanna | http://buck.net | +| | | | | | | | Christine | http://demarco.name | +| | | | | | | | Marge | http://astrid.net | +| | | | | | | | Charlene | http://rod.net | +| Legacy Creative Liaison | 0.4.6 | Expression | | The SMS system is down, back up the open-source system so we can back up the SMS system! | I'll connect the optical FTP program, that should program the FTP program! | | Candice | http://linnea.com | +| | | | | | | | Everardo | http://daryl.net | +| | | | | | | | Jerrod | http://laila.com | +| | | | | | | | Caleigh | https://adolfo.com | +| | | | | | | | Daisha | http://justine.biz | +| | | | | | | | Americo | http://tessie.org | +| | | | | | | | Howard | https://luis.info | +| Corporate Tactics Analyst | 3.0.8 | Overwrite | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | Use the virtual RAM monitor, then you can override the virtual monitor! | | | Hildegard | http://conner.name | +| | | | | | | | 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 | +| | | | | | | | Irving | https://sydnie.org | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | Edmund | http://sadie.info | +| | | | | | | | Horacio | https://loraine.name | +| | | | | | | | Sandra | https://emil.info | +| | | | | | | | Dayana | https://leila.info | +| | | | | | | | Micah | http://darien.com | +| | | | | | | | Ethel | http://shakira.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6bbc1a6c684cb047.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6bbc1a6c684cb047.verified.txt new file mode 100644 index 00000000..daa1a900 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6bbc1a6c684cb047.verified.txt @@ -0,0 +1,155 @@ +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | ---------- | ---------------------- | +| Legacy Response Analyst | 9.2.7 | Unknown | | Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata | http://martine.info | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Human Implementation Producer | 0.9.1 | Url | | | | | | +| Dynamic Integration Assistant | 2.1.6 | Unknown | | | https://gerson.info | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| 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 Identity Analyst | 5.9.3 | Expression | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | | Rey | https://connie.info | +| | | | | | | Hollie | http://rico.name | +| | | | | | | Marshall | http://pierce.org | +| | | | | | | 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 | +| Regional Integration Consultant | 5.3.8 | Expression | | | http://michael.name | | | +| Forward Division Strategist | 5.7.1 | Expression | You can't reboot the program without transmitting the mobile SMTP program! | Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode | https://esperanza.name | | | +| Lead Creative Administrator | 9.0.0 | Overwrite | Use the virtual RAM monitor, then you can override the virtual monitor! | | https://roderick.net | Hildegard | http://conner.name | +| | | | | | | 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 | +| | | | | | | Irving | https://sydnie.org | +| Chief Data Director | 2.1.5 | Unknown | Use the haptic PCI bandwidth, then you can generate the haptic bandwidth! | | | Earnestine | http://nathanial.biz | +| | | | | | | Connor | https://augustus.net | +| | | | | | | Araceli | http://hailey.biz | +| | | | | | | Janessa | https://craig.com | +| | | | | | | Erica | http://kristin.org | +| | | | | | | Alek | http://shany.biz | +| | | | | | | Camren | http://joany.info | +| Future Optimization Associate | 4.0.5 | Unknown | | Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel | https://linnie.net | | | +| Future Mobility Strategist | 4.7.6 | Overwrite | Use the virtual ADP bandwidth, then you can calculate the virtual bandwidth! | | http://gerardo.net | Cathy | http://giovanna.info | +| | | | | | | Ike | https://jerome.biz | +| | | | | | | Emerald | https://camren.net | +| | | | | | | Sheila | https://garry.org | +| Corporate Accountability Designer | 0.8.0 | Overwrite | We need to hack the online FTP application! | | http://taya.info | Carlee | http://britney.name | +| | | | | | | Tess | http://julian.biz | +| | | | | | | Isadore | http://billy.net | +| | | | | | | Alice | http://vern.net | +| | | | | | | King | http://trace.net | +| | | | | | | Carmela | https://adolf.info | +| | | | | | | Sherman | http://alec.net | +| | | | | | | Lamar | http://deion.org | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Investor Interactions Designer | 1.9.4 | Overwrite | | | https://octavia.name | | | +| Global Integration Assistant | 5.0.1 | Unknown | | | http://demarco.com | | | +| Future Response Consultant | 9.3.1 | Unknown | | | https://ulices.biz | Ari | https://chad.com | +| | | | | | | Yvonne | http://jada.name | +| | | | | | | Noemie | https://kayley.name | +| | | | | | | Brandon | http://kristopher.name | +| | | | | | | Maggie | http://kimberly.info | +| | | | | | | Veronica | https://mya.net | +| | | | | | | Marty | https://obie.net | +| | | | | | | Braxton | http://flavio.net | +| | | | | | | Jeramie | http://jaycee.net | +| Product Marketing Developer | 3.3.6 | Unknown | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | Lewis | https://alisa.com | +| | | | | | | Delores | https://layne.name | +| | | | | | | Delphine | https://katlynn.org | +| | | | | | | Meredith | https://johanna.info | +| | | | | | | Jacklyn | https://kadin.com | +| | | | | | | Hardy | https://donna.info | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| Dynamic Applications Director | 5.1.4 | Unknown | | Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel | | | | +| Investor Identity Developer | 4.2.0 | Url | | Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| | | | | | | Keely | http://obie.org | +| | | | | | | Caleigh | https://albin.info | +| | | | | | | Flavie | http://lavonne.biz | +| | | | | | | Kaitlyn | http://osborne.org | +| Dynamic Group Associate | 6.6.1 | Unknown | We need to input the open-source SMTP bus! | | http://kian.name | Neil | https://burley.info | +| | | | | | | Lemuel | http://brenden.info | +| | | | | | | Agnes | https://urban.org | +| | | | | | | Micheal | https://ida.net | +| | | | | | | Murray | https://samanta.com | +| | | | | | | Assunta | http://florencio.com | +| Investor Creative Architect | 4.5.6 | Overwrite | | Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| | | | | | | Retta | https://lottie.biz | +| | | | | | | Yasmine | http://delia.com | +| | | | | | | Khalil | http://jewel.net | +| | | | | | | Roy | https://johanna.org | +| | | | | | | Price | https://itzel.info | +| | | | | | | Dalton | https://daren.info | +| | | | | | | Arnold | http://arlo.org | +| Future Group Assistant | 1.7.9 | Expression | Use the multi-byte AI port, then you can reboot the multi-byte port! | | | Darien | http://mitchel.biz | +| | | | | | | Carleton | https://madalyn.com | +| | | | | | | Narciso | https://mia.com | +| | | | | | | Nicklaus | https://abelardo.com | +| | | | | | | Carolina | https://lindsey.info | +| | | | | | | Rigoberto | https://lou.biz | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Dynamic Mobility Technician | 6.0.2 | Expression | | | https://keeley.net | | | +| Direct Tactics Technician | 2.8.6 | Unknown | Try to quantify the SAS port, maybe it will quantify the wireless port! | | | Demond | http://stefan.name | +| | | | | | | Norval | http://annie.net | +| | | | | | | Destin | http://penelope.name | +| Customer Operations Liaison | 9.0.9 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| Principal Factors Producer | 0.8.5 | Unknown | connecting the system won't do anything, we need to override the back-end SQL system! | Devin Nolan | http://toby.info | | | +| District Mobility Administrator | 3.2.3 | Unknown | | Christopher Dietrich,Christopher Dietrich,Christopher Dietrich,Christopher Dietrich | | | | +| Global Infrastructure Developer | 5.5.0 | Url | generating the application won't do anything, we need to calculate the auxiliary JSON application! | Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger | https://austin.net | 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 | +| Internal Solutions Planner | 1.3.8 | Expression | | Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| | | | | | | Mallory | http://angeline.name | +| Future Tactics Producer | 5.8.9 | Url | navigating the pixel won't do anything, we need to parse the back-end IB pixel! | | | | | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6bd566b40b05fd26.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6bd566b40b05fd26.verified.txt new file mode 100644 index 00000000..dc0eda89 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6bd566b40b05fd26.verified.txt @@ -0,0 +1,8 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------- | ------- | -------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Error | Error 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 | Alyson | https://carmelo.biz | +| | | | | | Michele | https://miles.net | +| | | | | | Freddie | http://kade.net | +| | | | | | Jaunita | http://marcelina.biz | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------- | ------- | -------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6be8b8a487153399.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6be8b8a487153399.verified.txt new file mode 100644 index 00000000..26082f20 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6be8b8a487153399.verified.txt @@ -0,0 +1,142 @@ +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Dynamic Group Associate | 6.6.1 | Unknown | We need to input the open-source SMTP bus! | | http://kian.name | Neil | https://burley.info | +| | | | | | | Lemuel | http://brenden.info | +| | | | | | | Agnes | https://urban.org | +| | | | | | | Micheal | https://ida.net | +| | | | | | | Murray | https://samanta.com | +| | | | | | | Assunta | http://florencio.com | +| Future Mobility Strategist | 4.7.6 | Overwrite | Use the virtual ADP bandwidth, then you can calculate the virtual bandwidth! | | http://gerardo.net | Cathy | http://giovanna.info | +| | | | | | | Ike | https://jerome.biz | +| | | | | | | Emerald | https://camren.net | +| | | | | | | Sheila | https://garry.org | +| Future Response Consultant | 9.3.1 | Unknown | | | https://ulices.biz | Ari | https://chad.com | +| | | | | | | Yvonne | http://jada.name | +| | | | | | | Noemie | https://kayley.name | +| | | | | | | Brandon | http://kristopher.name | +| | | | | | | Maggie | http://kimberly.info | +| | | | | | | Veronica | https://mya.net | +| | | | | | | Marty | https://obie.net | +| | | | | | | Braxton | http://flavio.net | +| | | | | | | Jeramie | http://jaycee.net | +| Customer Program Consultant | 5.0.4 | Ignored | Try to compress the GB system, maybe it will compress the neural system! | Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan | http://kieran.biz | Bettie | http://edmund.info | +| | | | | | | Sadie | http://horacio.org | +| | | | | | | Loraine | https://sandra.org | +| | | | | | | Emil | http://dayana.net | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Lead Creative Administrator | 9.0.0 | Overwrite | Use the virtual RAM monitor, then you can override the virtual monitor! | | https://roderick.net | Hildegard | http://conner.name | +| | | | | | | 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 | +| | | | | | | Irving | https://sydnie.org | +| Chief Data Director | 2.1.5 | Unknown | Use the haptic PCI bandwidth, then you can generate the haptic bandwidth! | | | Earnestine | http://nathanial.biz | +| | | | | | | Connor | https://augustus.net | +| | | | | | | Araceli | http://hailey.biz | +| | | | | | | Janessa | https://craig.com | +| | | | | | | Erica | http://kristin.org | +| | | | | | | Alek | http://shany.biz | +| | | | | | | Camren | http://joany.info | +| Direct Tactics Technician | 2.8.6 | Unknown | Try to quantify the SAS port, maybe it will quantify the wireless port! | | | Demond | http://stefan.name | +| | | | | | | Norval | http://annie.net | +| | | | | | | Destin | http://penelope.name | +| Future Group Assistant | 1.7.9 | Expression | Use the multi-byte AI port, then you can reboot the multi-byte port! | | | Darien | http://mitchel.biz | +| | | | | | | Carleton | https://madalyn.com | +| | | | | | | Narciso | https://mia.com | +| | | | | | | Nicklaus | https://abelardo.com | +| | | | | | | Carolina | https://lindsey.info | +| | | | | | | Rigoberto | https://lou.biz | +| Product Identity Analyst | 5.9.3 | Expression | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | | Rey | https://connie.info | +| | | | | | | Hollie | http://rico.name | +| | | | | | | Marshall | http://pierce.org | +| | | | | | | 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 | +| Investor Creative Architect | 4.5.6 | Overwrite | | Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| | | | | | | Retta | https://lottie.biz | +| | | | | | | Yasmine | http://delia.com | +| | | | | | | Khalil | http://jewel.net | +| | | | | | | Roy | https://johanna.org | +| | | | | | | Price | https://itzel.info | +| | | | | | | Dalton | https://daren.info | +| | | | | | | Arnold | http://arlo.org | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| Investor Identity Developer | 4.2.0 | Url | | Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| | | | | | | Keely | http://obie.org | +| | | | | | | Caleigh | https://albin.info | +| | | | | | | Flavie | http://lavonne.biz | +| | | | | | | Kaitlyn | http://osborne.org | +| Corporate Accountability Designer | 0.8.0 | Overwrite | We need to hack the online FTP application! | | http://taya.info | Carlee | http://britney.name | +| | | | | | | Tess | http://julian.biz | +| | | | | | | Isadore | http://billy.net | +| | | | | | | Alice | http://vern.net | +| | | | | | | King | http://trace.net | +| | | | | | | Carmela | https://adolf.info | +| | | | | | | Sherman | http://alec.net | +| | | | | | | Lamar | http://deion.org | +| Product Marketing Developer | 3.3.6 | Unknown | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | Lewis | https://alisa.com | +| | | | | | | Delores | https://layne.name | +| | | | | | | Delphine | https://katlynn.org | +| | | | | | | Meredith | https://johanna.info | +| | | | | | | Jacklyn | https://kadin.com | +| | | | | | | Hardy | https://donna.info | +| Global Infrastructure Developer | 5.5.0 | Url | generating the application won't do anything, we need to calculate the auxiliary JSON application! | Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger | https://austin.net | 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 | +| Internal Solutions Planner | 1.3.8 | Expression | | Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| | | | | | | Mallory | http://angeline.name | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6cc81da2f08c720f.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6cc81da2f08c720f.verified.txt new file mode 100644 index 00000000..7f86595e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6cc81da2f08c720f.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Future Integration Analyst | 9.0.4 | Expression | | | Abner | http://tavares.info | +| | | | | | Johann | http://andres.net | +| | | | | | Jaquan | http://carey.org | +| | | | | | Arvel | http://mortimer.org | +| | | | | | Alicia | http://paula.com | +| | | | | | Heidi | http://letha.name | +| | | | | | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Paige | https://remington.info | +| | | | | | Aletha | https://isobel.info | +| | | | | | Pearline | https://johnathon.info | +| | | | | | Eleanora | http://jaeden.info | +| | | | | | Nikolas | https://daphney.net | +| | | | | | Oceane | http://clifton.com | +| | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | http://marina.com | Myles | http://nikko.name | +| | | | | | Rolando | http://nikko.name | +| | | | | | Pamela | https://aliza.net | +| | | | | | Marcella | http://helga.net | +| | | | | | Alisha | http://alyson.name | +| | | | | | Carmelo | http://michele.name | +| | | | | | Miles | https://freddie.com | +| | | | | | Kade | https://jaunita.biz | +| | | | | | Marcelina | http://donna.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6cdb7e0d6f966ca2.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6cdb7e0d6f966ca2.verified.txt new file mode 100644 index 00000000..d3a346a0 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6cdb7e0d6f966ca2.verified.txt @@ -0,0 +1,110 @@ +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------- | ---------- | --------------------- | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.biz | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Customer Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Dynamic Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| Legacy Usability Coordinator | 5.8.8 | Overwrite | Try to calculate the PNG port, maybe it will calculate the back-end port! | | | http://thora.info | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Senior Solutions Strategist | 7.5.0 | 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 | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Corporate Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6d1aff4231b1426a.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6d1aff4231b1426a.verified.txt new file mode 100644 index 00000000..38a58b36 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6d1aff4231b1426a.verified.txt @@ -0,0 +1,8 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6d1ef048b30cf634.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6d1ef048b30cf634.verified.txt new file mode 100644 index 00000000..7fdc3d9c --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6d1ef048b30cf634.verified.txt @@ -0,0 +1,40 @@ +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6d55cb7373d4becc.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6d55cb7373d4becc.verified.txt new file mode 100644 index 00000000..fa31b9f7 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6d55cb7373d4becc.verified.txt @@ -0,0 +1,46 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6d7ce816be54f10a.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6d7ce816be54f10a.verified.txt new file mode 100644 index 00000000..f4e84ae1 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6d7ce816be54f10a.verified.txt @@ -0,0 +1,109 @@ +| ------------------------------------ | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | -------- | ---------------------- | +| National Creative Analyst | 6.3.1 | Expression | | The SSL feed is down, back up the cross-platform feed so we can back up the SSL feed! | | | | | | +| 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Direct Applications Assistant | 3.5.8 | Unknown | The PCI pixel is down, synthesize the multi-byte pixel so we can synthesize the PCI pixel! | If we back up the driver, we can get to the TCP driver through the redundant TCP driver! | We need to back up the 1080p COM interface! | | http://consuelo.info | | | +| Human Group Agent | 3.2.2 | Url | | | generating the interface won't do anything, we need to hack the optical PCI interface! | Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser | https://vilma.com | | | +| Senior Brand Agent | 3.1.9 | Url | generating the alarm won't do anything, we need to parse the virtual XSS alarm! | | I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth! | | https://lina.info | | | +| Lead Program Engineer | 4.5.7 | Overwrite | | The PCI protocol is down, calculate the bluetooth protocol so we can calculate the PCI protocol! | | | | | | +| National Implementation Agent | 5.6.8 | Expression | | | Use the multi-byte PNG circuit, then you can navigate the multi-byte circuit! | Ira Hermiston,Ira Hermiston,Ira Hermiston,Ira Hermiston | http://rex.biz | | | +| Regional Communications Strategist | 9.3.1 | Url | overriding the matrix won't do anything, we need to back up the solid state IB matrix! | Try to index the HDD panel, maybe it will index the haptic panel! | We need to index the bluetooth JSON pixel! | | http://eloisa.biz | | | +| Dynamic Factors Producer | 5.7.1 | Url | | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | | | | | +| District Creative Designer | 1.4.6 | Url | We need to program the haptic IB panel! | | | | http://cameron.info | | | +| Internal Program Engineer | 2.9.3 | Expression | I'll input the neural SQL application, that should application the SQL application! | You can't generate the hard drive without transmitting the haptic RAM hard drive! | I'll bypass the optical AGP feed, that should feed the AGP feed! | | http://cleta.org | | | +| Dynamic Configuration Assistant | 3.2.1 | Expression | | 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 | | | | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| Forward Branding Strategist | 4.6.2 | Overwrite | | | The THX hard drive is down, compress the back-end hard drive so we can compress the THX hard drive! | | | | | +| Customer Interactions Representative | 0.8.8 | Url | We need to quantify the digital SSL array! | | | | http://heather.name | | | +| Chief Response Strategist | 8.0.4 | Url | | The RSS alarm is down, compress the mobile alarm so we can compress the RSS alarm! | Use the 1080p PNG application, then you can calculate the 1080p application! | Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann | | | | +| Global Usability Manager | 9.1.0 | Overwrite | | Try to back up the THX interface, maybe it will back up the auxiliary interface! | | | http://vella.com | | | +| Regional Configuration Engineer | 7.3.8 | Expression | Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter! | You can't reboot the matrix without navigating the optical SDD matrix! | | | http://roman.org | | | +| Forward Usability Developer | 6.9.1 | Overwrite | | | You can't connect the protocol without overriding the redundant RSS protocol! | | | | | +| Senior Metrics Engineer | 8.3.4 | Overwrite | | Try to quantify the FTP bus, maybe it will quantify the optical bus! | | Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand | http://lou.net | | | +| Forward Tactics Planner | 5.4.6 | Url | I'll input the primary GB port, that should port the GB port! | | 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 | https://caterina.info | | | +| Principal Web Associate | 4.2.5 | Expression | | | If we index the hard drive, we can get to the XSS hard drive through the primary XSS hard drive! | Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles | | | | +| Central Factors Supervisor | 0.8.3 | Overwrite | If we transmit the monitor, we can get to the HTTP monitor through the digital HTTP monitor! | Use the optical IB transmitter, then you can navigate the optical transmitter! | If we back up the firewall, we can get to the TCP firewall through the multi-byte TCP firewall! | Kathleen Blick,Kathleen Blick,Kathleen Blick,Kathleen Blick,Kathleen Blick | http://clement.name | | | +| Internal Operations Producer | 5.8.9 | Overwrite | | Use the online SMTP pixel, then you can index the online pixel! | | | | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | | | +| Future Tactics Specialist | 0.2.2 | Overwrite | We need to override the primary SQL pixel! | We need to transmit the redundant EXE driver! | You can't calculate the hard drive without hacking the multi-byte FTP hard drive! | | | | | +| Direct Applications Designer | 1.5.1 | Unknown | | We need to connect the haptic TCP panel! | If we bypass the card, we can get to the HDD card through the auxiliary HDD card! | Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling | http://tito.name | | | +| National Security Orchestrator | 3.5.6 | Expression | Try to copy the HDD array, maybe it will copy the back-end array! | 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! | Roderick Koelpin,Roderick Koelpin,Roderick Koelpin | | | | +| Senior Brand Officer | 9.3.6 | Url | If we override the system, we can get to the HDD system through the haptic HDD system! | If we parse the bus, we can get to the XML bus through the solid state XML bus! | | | http://carol.name | | | +| Corporate Program Associate | 5.2.5 | Overwrite | | | overriding the interface won't do anything, we need to override the virtual THX interface! | | | | | +| Chief Paradigm Supervisor | 4.3.3 | Url | | | We need to bypass the wireless XML pixel! | Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins | https://zion.info | | | +| Corporate Intranet Agent | 9.1.8 | Url | We need to compress the 1080p GB circuit! | | The PCI driver is down, reboot the haptic driver so we can reboot the PCI driver! | Essie Hamill,Essie Hamill | http://precious.name | | | +| Legacy Intranet Planner | 8.3.2 | Expression | Use the bluetooth AI bandwidth, then you can transmit the bluetooth bandwidth! | | | | http://nathanael.name | | | +| Dynamic Paradigm Officer | 2.3.4 | Overwrite | | | | | https://charity.biz | | | +| Legacy Interactions Officer | 8.8.5 | Overwrite | | | Try to program the RAM bandwidth, maybe it will program the optical bandwidth! | | | | | +| Corporate Division Executive | 4.7.8 | Url | I'll index the neural SDD bus, that should bus the SDD bus! | If we reboot the program, we can get to the SSL program through the primary SSL program! | | Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros | http://wilmer.com | | | +| Investor Usability Officer | 2.5.2 | Unknown | Try to program the XML capacitor, maybe it will program the haptic capacitor! | Use the optical SSL alarm, then you can bypass the optical alarm! | | Johnny Bernier | http://orlo.name | | | +| Human Program Technician | 2.8.4 | Overwrite | | | | Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill | http://tomasa.info | | | +| Forward Paradigm Developer | 7.9.7 | Overwrite | The GB interface is down, input the auxiliary interface so we can input the GB interface! | The XSS transmitter is down, back up the online transmitter so we can back up the XSS transmitter! | | Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter | http://maureen.name | | | +| Legacy Marketing Designer | 4.5.9 | Expression | | You can't bypass the microchip without parsing the back-end JBOD microchip! | You can't bypass the alarm without generating the back-end HTTP alarm! | | http://lexi.net | | | +| International Branding Producer | 3.8.2 | Expression | We need to generate the solid state AGP microchip! | | | | | | | +| Dynamic Configuration Administrator | 4.3.8 | Url | | | Use the redundant AGP microchip, then you can override the redundant microchip! | Roberto Deckow,Roberto Deckow,Roberto Deckow | | | | +| Central Tactics Director | 4.6.7 | Url | backing up the system won't do anything, we need to parse the neural CSS system! | We need to transmit the back-end RSS transmitter! | | Doyle Osinski,Doyle Osinski,Doyle Osinski,Doyle Osinski | https://valentina.net | | | +| Forward Directives Representative | 0.5.1 | Url | | parsing the panel won't do anything, we need to calculate the digital SMTP panel! | | Theresa Heathcote,Theresa Heathcote,Theresa Heathcote,Theresa Heathcote,Theresa Heathcote,Theresa Heathcote | https://cleve.biz | | | +| Senior Quality Executive | 4.4.8 | Url | I'll quantify the solid state THX feed, that should feed the THX feed! | Use the online RAM array, then you can index the online array! | You can't reboot the transmitter without transmitting the online ADP transmitter! | | http://khalid.com | | | +| Human Accountability Developer | 6.9.0 | Unknown | If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit! | | | | | | | +| Internal Factors Facilitator | 2.6.3 | Url | | Try to copy the PNG sensor, maybe it will copy the 1080p sensor! | | Mable Kris,Mable Kris,Mable Kris,Mable Kris,Mable Kris | http://melba.name | | | +| Internal Solutions Director | 8.4.4 | Unknown | | | | | | | | +| Dynamic Tactics Facilitator | 0.7.3 | Unknown | | | The SSL port is down, bypass the haptic port so we can bypass the SSL port! | | | | | +| Lead Identity Developer | 7.1.0 | Url | | compressing the bandwidth won't do anything, we need to bypass the primary RAM bandwidth! | | | https://eve.com | | | +| Regional Factors Designer | 7.4.1 | Url | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | Use the haptic RSS port, then you can transmit the haptic port! | Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus | | | | +| Senior Operations Assistant | 2.4.2 | Expression | | If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth! | | Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva | https://hector.info | | | +| Regional Brand Associate | 4.0.9 | Expression | | | I'll program the wireless HDD pixel, that should pixel the HDD pixel! | | | | | +| District Integration Designer | 6.2.2 | Expression | | You can't connect the port without connecting the back-end COM port! | | Ignacio Hane,Ignacio Hane | https://cindy.org | | | +| Senior Research Liaison | 5.0.6 | Overwrite | If we compress the system, we can get to the AGP system through the multi-byte AGP system! | I'll hack the optical XSS monitor, that should monitor the XSS monitor! | | | http://clair.biz | | | +| Lead Optimization Analyst | 2.1.7 | Expression | Use the wireless XSS bandwidth, then you can program the wireless bandwidth! | The SDD hard drive is down, copy the virtual hard drive so we can copy the SDD hard drive! | | Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson | https://madge.info | | | +| National Factors Administrator | 8.1.4 | Unknown | | | | | http://janelle.name | | | +| Chief Functionality Planner | 5.1.2 | Unknown | | I'll calculate the 1080p HDD system, that should system the HDD system! | | Matt Mills,Matt Mills | http://myrtice.com | | | +| Lead Configuration Liaison | 1.8.9 | Expression | | connecting the transmitter won't do anything, we need to program the cross-platform XSS transmitter! | | | http://esther.biz | | | +| Legacy Communications Engineer | 7.8.1 | Expression | | I'll synthesize the haptic THX hard drive, that should hard drive the THX hard drive! | The ADP hard drive is down, input the back-end hard drive so we can input the ADP hard drive! | Hilda Kub,Hilda Kub,Hilda Kub,Hilda Kub,Hilda Kub | | | | +| Forward Communications Director | 6.0.8 | Overwrite | Try to override the AI alarm, maybe it will override the online alarm! | We need to quantify the virtual TCP card! | | Kristin Bernhard,Kristin Bernhard | | | | +| Dynamic Configuration Specialist | 3.6.8 | Overwrite | | Use the haptic AGP protocol, then you can program the haptic protocol! | | Meredith Sawayn,Meredith Sawayn,Meredith Sawayn,Meredith Sawayn,Meredith Sawayn,Meredith Sawayn | | | | +| Global Markets Administrator | 8.6.8 | Expression | 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! | The SSL application is down, reboot the bluetooth application so we can reboot the SSL application! | Julius Bernhard,Julius Bernhard,Julius Bernhard,Julius Bernhard | https://lois.biz | | | +| Customer Metrics Analyst | 6.7.1 | Unknown | | | | | | | | +| Global Solutions Administrator | 5.2.4 | Overwrite | We need to calculate the online SAS bandwidth! | If we index the bus, we can get to the CSS bus through the optical CSS bus! | | Nellie Oberbrunner | https://hailee.biz | | | +| Forward Program Officer | 4.2.4 | Url | quantifying the capacitor won't do anything, we need to override the open-source AI capacitor! | indexing the port won't do anything, we need to back up the virtual AGP port! | calculating the bus won't do anything, we need to generate the online CSS bus! | Leon Mayer,Leon Mayer | | | | +| Investor Interactions Designer | 1.9.4 | Url | | | parsing the card won't do anything, we need to synthesize the online SQL card! | Stella Barton,Stella Barton | https://octavia.name | | | +| Future Accounts Designer | 5.1.9 | Expression | We need to navigate the wireless SAS pixel! | | | | | | | +| Global Configuration Consultant | 5.9.5 | Expression | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | bypassing the bus won't do anything, we need to calculate the virtual GB bus! | | Guadalupe Littel,Guadalupe Littel,Guadalupe Littel | | | | +| National Creative Officer | 5.5.6 | Overwrite | indexing the capacitor won't do anything, we need to reboot the redundant FTP capacitor! | | The TCP array is down, bypass the mobile array so we can bypass the TCP array! | | http://orpha.name | | | +| International Marketing Officer | 2.2.1 | Overwrite | If we connect the driver, we can get to the XSS driver through the online XSS driver! | | | | https://weldon.info | | | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| Corporate Intranet Associate | 7.5.1 | Overwrite | | 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! | | | | | +| National Infrastructure Architect | 6.6.7 | Unknown | | If we bypass the hard drive, we can get to the EXE hard drive through the bluetooth EXE hard drive! | | Howard Rath,Howard Rath,Howard Rath,Howard Rath | http://darlene.net | | | +| Chief Program Director | 8.8.8 | Overwrite | If we parse the protocol, we can get to the IB protocol through the wireless IB protocol! | | Use the primary SCSI matrix, then you can program the primary matrix! | | | | | +| Forward Research Associate | 3.4.7 | Url | | You can't navigate the capacitor without programming the solid state SQL capacitor! | | | | | | +| Legacy Solutions Architect | 7.9.3 | Url | | Try to input the AI sensor, maybe it will input the digital sensor! | If we program the array, we can get to the JBOD array through the primary JBOD array! | | | | | +| Human Program Orchestrator | 5.2.4 | Url | Use the cross-platform EXE microchip, then you can quantify the cross-platform microchip! | | bypassing the bandwidth won't do anything, we need to copy the mobile JBOD bandwidth! | | | | | +| Product Tactics Engineer | 5.6.9 | Overwrite | Use the online TCP driver, then you can navigate the online driver! | I'll transmit the open-source HTTP pixel, that should pixel the HTTP pixel! | transmitting the program won't do anything, we need to generate the multi-byte SAS program! | Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich | | | | +| International Marketing Officer | 7.2.8 | Expression | | | | Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk | | | | +| Direct Group Liaison | 3.5.1 | Overwrite | We need to parse the haptic SMS monitor! | | We need to program the auxiliary JBOD circuit! | | | | | +| Corporate Infrastructure Executive | 4.8.1 | Unknown | | | Try to index the FTP transmitter, maybe it will index the bluetooth transmitter! | Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist | https://justice.info | | | +| Future Markets Architect | 7.2.2 | Overwrite | If we synthesize the port, we can get to the CSS port through the online CSS port! | synthesizing the panel won't do anything, we need to transmit the neural THX panel! | | Gerald Cruickshank,Gerald Cruickshank,Gerald Cruickshank | https://maxime.info | | | +| International Branding Associate | 4.9.4 | Url | | 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://trinity.name | | | +| Central Functionality Technician | 3.9.3 | Url | | | The AI microchip is down, override the multi-byte microchip so we can override the AI microchip! | | | | | +| National Solutions Representative | 5.6.2 | Overwrite | | | You can't synthesize the bandwidth without programming the solid state XSS bandwidth! | | | | | +| ------------------------------------ | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6e4b6bd4b4c20d94.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6e4b6bd4b4c20d94.verified.txt new file mode 100644 index 00000000..3ad9b0b2 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6e4b6bd4b4c20d94.verified.txt @@ -0,0 +1,22 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6e899c35baa8fef2.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6e899c35baa8fef2.verified.txt new file mode 100644 index 00000000..3af29b39 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6e899c35baa8fef2.verified.txt @@ -0,0 +1,26 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| District Creative Designer | 1.4.6 | Url | We need to program the haptic IB panel! | | | | http://cameron.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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Corporate Intranet Associate | 7.5.1 | Overwrite | | 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! | | | | | +| Chief Functionality Planner | 5.1.2 | Unknown | | I'll calculate the 1080p HDD system, that should system the HDD system! | | Matt Mills,Matt Mills | http://myrtice.com | | | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Configuration Liaison | 1.8.9 | Expression | | connecting the transmitter won't do anything, we need to program the cross-platform XSS transmitter! | | | http://esther.biz | | | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6ecaf0546a9b37a3.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6ecaf0546a9b37a3.verified.txt new file mode 100644 index 00000000..7d3cc5b3 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6ecaf0546a9b37a3.verified.txt @@ -0,0 +1,21 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6ed49d0dbe568f62.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6ed49d0dbe568f62.verified.txt new file mode 100644 index 00000000..ca4dd6a2 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_6ed49d0dbe568f62.verified.txt @@ -0,0 +1,134 @@ +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| | | | | | Monserrat | http://katrine.name | +| | | | | | Abel | https://geovany.com | +| | | | | | Diana | http://eula.name | +| | | | | | Raphael | https://zackery.info | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| | | | | | Tyson | https://bonita.org | +| | | | | | Jazlyn | http://madonna.net | +| | | | | | Deangelo | https://jess.info | +| | | | | | Alvah | https://hans.net | +| | | | | | Payton | http://shanna.name | +| | | | | | Providenci | https://tyra.org | +| | | | | | Flo | http://isidro.net | +| | | | | | Dawn | https://anika.org | +| | | | | | Silas | http://zane.name | +| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| | | | | | Jody | http://jakob.org | +| | | | | | Anjali | https://valentin.info | +| Dynamic Marketing Consultant | 2.4.9 | Overwrite | | | Angie | https://ardella.info | +| | | | | | Melissa | https://sandra.biz | +| | | | | | Pearline | https://noble.net | +| | | | | | Dusty | https://verlie.com | +| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| | | | | | Ursula | https://werner.net | +| | | | | | Linwood | http://rebekah.org | +| | | | | | Cleve | https://claudie.net | +| | | | | | Theodora | http://faye.info | +| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| | | | | | Caleigh | https://albin.info | +| | | | | | Flavie | http://lavonne.biz | +| | | | | | Kaitlyn | http://osborne.org | +| | | | | | Joesph | https://michael.name | +| | | | | | Kali | http://shyanne.net | +| | | | | | Austin | https://marty.net | +| | | | | | Theresia | http://kristin.net | +| | | | | | Lester | https://paige.com | +| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| | | | | | Braeden | https://sunny.name | +| | | | | | Leslie | http://bettie.info | +| | | | | | Edmund | http://sadie.info | +| | | | | | Horacio | https://loraine.name | +| Global Response Associate | 1.9.8 | Overwrite | The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth! | | Sandra | http://antonina.com | +| | | | | | Willow | https://jason.org | +| | | | | | Orland | http://rigoberto.com | +| | | | | | Laney | http://eryn.org | +| | | | | | Amari | http://viviane.net | +| | | | | | Kelley | http://doris.net | +| | | | | | Kennedy | https://milo.net | +| Senior Brand Developer | 4.4.1 | Ignored | If we override the system, we can get to the CSS system through the neural CSS system! | http://adelbert.net | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| | | | | | Libby | http://wade.biz | +| | | | | | Leola | https://pietro.info | +| | | | | | Arch | http://hazle.org | +| | | | | | Eldred | http://gabriel.net | +| National Accounts Liaison | 7.2.6 | Overwrite | | | Cedrick | https://zachariah.net | +| | | | | | Marcelle | https://adah.org | +| | | | | | Barney | http://erica.org | +| Direct Accounts Associate | 3.2.6 | Overwrite | | https://vesta.com | Buck | http://taryn.com | +| | | | | | Hilton | http://isabel.com | +| | | | | | Rogers | https://bertrand.biz | +| | | | | | Annetta | https://remington.org | +| | | | | | Efrain | http://davion.org | +| | | | | | Merle | https://abigayle.org | +| | | | | | Jerod | https://vicenta.info | +| | | | | | Kayli | https://shaun.net | +| | | | | | Antwan | https://hazel.net | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| | | | | | Clarissa | https://audreanne.name | +| | | | | | Vida | https://theresia.biz | +| | | | | | Ransom | http://isom.com | +| | | | | | Anastasia | http://kamryn.info | +| | | | | | Marlene | https://cyril.name | +| | | | | | Zetta | http://pete.org | +| | | | | | Candida | https://craig.biz | +| | | | | | Timmothy | https://joanny.biz | +| | | | | | Alfonzo | http://dorothea.org | +| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| | | | | | Princess | http://haylie.biz | +| | | | | | Jordane | https://gregorio.com | +| | | | | | Opal | http://abbie.org | +| | | | | | Pablo | https://maxime.biz | +| | | | | | Shaun | https://concepcion.net | +| | | | | | Moises | http://rupert.info | +| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| | | | | | Earnestine | http://nathanial.biz | +| | | | | | Connor | https://augustus.net | +| | | | | | Araceli | http://hailey.biz | +| | | | | | Janessa | https://craig.com | +| | | | | | Erica | http://kristin.org | +| | | | | | Alek | http://shany.biz | +| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| | | | | | Clemmie | http://shanny.net | +| | | | | | Hildegard | http://conner.name | +| | | | | | Isabella | https://kennith.com | +| | | | | | Johanna | https://ara.org | +| | | | | | Demarco | https://rae.biz | +| | | | | | Viviane | http://christine.info | +| Legacy Creative Liaison | 0.4.6 | Overwrite | | | Mervin | http://celestine.info | +| | | | | | Amalia | https://shanelle.info | +| | | | | | Sheila | http://darrell.info | +| | | | | | Alec | https://candice.biz | +| | | | | | Linnea | http://everardo.info | +| | | | | | Daryl | https://jerrod.com | +| | | | | | Laila | http://caleigh.net | +| | | | | | Adolfo | http://daisha.biz | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7009361f7f5e6452.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7009361f7f5e6452.verified.txt new file mode 100644 index 00000000..cebc3f45 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7009361f7f5e6452.verified.txt @@ -0,0 +1,25 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | Unknown | 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 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_70442333d42bb76b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_70442333d42bb76b.verified.txt new file mode 100644 index 00000000..3dfd965a --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_70442333d42bb76b.verified.txt @@ -0,0 +1,134 @@ +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| National Accounts Liaison | 7.2.6 | Overwrite | | | Cedrick | https://zachariah.net | +| | | | | | Marcelle | https://adah.org | +| | | | | | Barney | http://erica.org | +| Global Response Associate | 1.9.8 | Overwrite | The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth! | | Sandra | http://antonina.com | +| | | | | | Willow | https://jason.org | +| | | | | | Orland | http://rigoberto.com | +| | | | | | Laney | http://eryn.org | +| | | | | | Amari | http://viviane.net | +| | | | | | Kelley | http://doris.net | +| | | | | | Kennedy | https://milo.net | +| Legacy Creative Liaison | 0.4.6 | Overwrite | | | Mervin | http://celestine.info | +| | | | | | Amalia | https://shanelle.info | +| | | | | | Sheila | http://darrell.info | +| | | | | | Alec | https://candice.biz | +| | | | | | Linnea | http://everardo.info | +| | | | | | Daryl | https://jerrod.com | +| | | | | | Laila | http://caleigh.net | +| | | | | | Adolfo | http://daisha.biz | +| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| | | | | | Jody | http://jakob.org | +| | | | | | Anjali | https://valentin.info | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| | | | | | Ursula | https://werner.net | +| | | | | | Linwood | http://rebekah.org | +| | | | | | Cleve | https://claudie.net | +| | | | | | Theodora | http://faye.info | +| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| | | | | | Braeden | https://sunny.name | +| | | | | | Leslie | http://bettie.info | +| | | | | | Edmund | http://sadie.info | +| | | | | | Horacio | https://loraine.name | +| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| | | | | | Earnestine | http://nathanial.biz | +| | | | | | Connor | https://augustus.net | +| | | | | | Araceli | http://hailey.biz | +| | | | | | Janessa | https://craig.com | +| | | | | | Erica | http://kristin.org | +| | | | | | Alek | http://shany.biz | +| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| | | | | | Monserrat | http://katrine.name | +| | | | | | Abel | https://geovany.com | +| | | | | | Diana | http://eula.name | +| | | | | | Raphael | https://zackery.info | +| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| | | | | | Clemmie | http://shanny.net | +| | | | | | Hildegard | http://conner.name | +| | | | | | Isabella | https://kennith.com | +| | | | | | Johanna | https://ara.org | +| | | | | | Demarco | https://rae.biz | +| | | | | | Viviane | http://christine.info | +| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| | | | | | Tyson | https://bonita.org | +| | | | | | Jazlyn | http://madonna.net | +| | | | | | Deangelo | https://jess.info | +| | | | | | Alvah | https://hans.net | +| | | | | | Payton | http://shanna.name | +| | | | | | Providenci | https://tyra.org | +| | | | | | Flo | http://isidro.net | +| | | | | | Dawn | https://anika.org | +| | | | | | Silas | http://zane.name | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Senior Brand Developer | 4.4.1 | Ignored | If we override the system, we can get to the CSS system through the neural CSS system! | http://adelbert.net | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| | | | | | Libby | http://wade.biz | +| | | | | | Leola | https://pietro.info | +| | | | | | Arch | http://hazle.org | +| | | | | | Eldred | http://gabriel.net | +| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| | | | | | Clarissa | https://audreanne.name | +| | | | | | Vida | https://theresia.biz | +| | | | | | Ransom | http://isom.com | +| | | | | | Anastasia | http://kamryn.info | +| | | | | | Marlene | https://cyril.name | +| | | | | | Zetta | http://pete.org | +| | | | | | Candida | https://craig.biz | +| | | | | | Timmothy | https://joanny.biz | +| | | | | | Alfonzo | http://dorothea.org | +| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| | | | | | Caleigh | https://albin.info | +| | | | | | Flavie | http://lavonne.biz | +| | | | | | Kaitlyn | http://osborne.org | +| | | | | | Joesph | https://michael.name | +| | | | | | Kali | http://shyanne.net | +| | | | | | Austin | https://marty.net | +| | | | | | Theresia | http://kristin.net | +| | | | | | Lester | https://paige.com | +| Direct Accounts Associate | 3.2.6 | Overwrite | | https://vesta.com | Buck | http://taryn.com | +| | | | | | Hilton | http://isabel.com | +| | | | | | Rogers | https://bertrand.biz | +| | | | | | Annetta | https://remington.org | +| | | | | | Efrain | http://davion.org | +| | | | | | Merle | https://abigayle.org | +| | | | | | Jerod | https://vicenta.info | +| | | | | | Kayli | https://shaun.net | +| | | | | | Antwan | https://hazel.net | +| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| | | | | | Princess | http://haylie.biz | +| | | | | | Jordane | https://gregorio.com | +| | | | | | Opal | http://abbie.org | +| | | | | | Pablo | https://maxime.biz | +| | | | | | Shaun | https://concepcion.net | +| | | | | | Moises | http://rupert.info | +| Dynamic Marketing Consultant | 2.4.9 | Overwrite | | | Angie | https://ardella.info | +| | | | | | Melissa | https://sandra.biz | +| | | | | | Pearline | https://noble.net | +| | | | | | Dusty | https://verlie.com | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_707b4bd96b1113b3.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_707b4bd96b1113b3.verified.txt new file mode 100644 index 00000000..2b10c307 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_707b4bd96b1113b3.verified.txt @@ -0,0 +1,127 @@ +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error Context | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | +| Global Mobility Technician | 8.6.3 | Unknown | | We need to input the haptic XML port! | | Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante | | Lonie | http://wilburn.org | +| | | | | | | | | Concepcion | http://ed.org | +| | | | | | | | | Amanda | https://sophie.net | +| | | | | | | | | Claudine | http://ofelia.biz | +| | | | | | | | | Petra | http://clare.name | +| | | | | | | | | Ozella | https://verla.name | +| | | | | | | | | Denis | http://pete.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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Product Data Liaison | 7.8.8 | Unknown | Try to calculate the GB card, maybe it will calculate the wireless card! | | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | | | Lewis | https://alisa.com | +| | | | | | | | | Delores | https://layne.name | +| | | | | | | | | Delphine | https://katlynn.org | +| | | | | | | | | Meredith | https://johanna.info | +| | | | | | | | | Jacklyn | https://kadin.com | +| | | | | | | | | Hardy | https://donna.info | +| International Research Architect | 3.7.4 | Ignored | | Try to quantify the USB application, maybe it will quantify the mobile application! | If we index the pixel, we can get to the AI pixel through the wireless AI pixel! | | | Madisen | http://raegan.biz | +| | | | | | | | | Cathy | http://giovanna.info | +| | | | | | | | | Ike | https://jerome.biz | +| Investor Division Assistant | 9.6.2 | Url | | I'll parse the primary PCI matrix, that should matrix the PCI matrix! | | | | Nya | http://sunny.biz | +| | | | | | | | | Arlo | https://cordia.info | +| | | | | | | | | Linnie | https://marcos.name | +| | | | | | | | | Luella | http://frederic.name | +| | | | | | | | | Lucinda | https://dion.name | +| | | | | | | | | Jayson | https://ryleigh.net | +| | | | | | | | | Mervin | https://lorenza.net | +| Corporate Marketing Strategist | 3.8.5 | Ignored | | | Use the redundant JSON application, then you can program the redundant application! | Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch | | Naomi | http://mckenna.net | +| | | | | | | | | Jalyn | https://katharina.name | +| | | | | | | | | Kane | http://beulah.biz | +| | | | | | | | | Eleanora | http://birdie.net | +| | | | | | | | | Alvah | http://keanu.net | +| National Accountability Producer | 6.9.7 | Unknown | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | https://linwood.biz | Travon | https://dedrick.name | +| | | | | | | | | Elissa | http://kaci.org | +| | | | | | | | | Brandi | https://aniyah.com | +| | | | | | | | | Tyson | https://bonita.org | +| | | | | | | | | Jazlyn | http://madonna.net | +| | | | | | | | | Deangelo | https://jess.info | +| | | | | | | | | Alvah | https://hans.net | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| Dynamic Solutions Assistant | 5.6.4 | Ignored | navigating the alarm won't do anything, we need to copy the 1080p AGP alarm! | | | Craig Halvorson,Craig Halvorson,Craig Halvorson,Craig Halvorson | http://isabell.info | Tess | http://kailyn.info | +| | | | | | | | | Eileen | http://manley.name | +| | | | | | | | | Conor | https://glenna.name | +| | | | | | | | | Sylvester | http://gaylord.biz | +| | | | | | | | | Maxime | https://tom.com | +| Chief Solutions Administrator | 0.4.1 | Unknown | | 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 | Shaun | https://antwan.org | +| | | | | | | | | Hazel | https://forrest.net | +| | | | | | | | | Brianne | https://dorothea.name | +| | | | | | | | | Don | http://torey.com | +| | | | | | | | | Cedrick | https://zachariah.net | +| | | | | | | | | Marcelle | https://adah.org | +| | | | | | | | | Barney | http://erica.org | +| | | | | | | | | Jordi | https://alysha.com | +| | | | | | | | | Kristina | https://pattie.info | +| | | | | | | | | Cory | http://kailey.com | +| International Intranet Planner | 1.3.4 | Expression | 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 | Ahmad | https://lupe.com | +| | | | | | | | | Randi | https://jaiden.biz | +| | | | | | | | | Patience | https://marlene.name | +| | | | | | | | | Lenna | https://franco.name | +| | | | | | | | | Kyleigh | https://tevin.name | +| | | | | | | | | Sallie | https://jordane.name | +| | | | | | | | | Willy | https://daija.info | +| | | | | | | | | Jannie | https://retta.net | +| | | | | | | | | Lottie | http://yasmine.com | +| | | | | | | | | Delia | http://khalil.com | +| Investor Operations Director | 5.6.0 | Expression | Try to input the AI microchip, maybe it will input the 1080p microchip! | | If we synthesize the sensor, we can get to the AI sensor through the redundant AI sensor! | | https://alene.info | Elouise | https://ron.com | +| | | | | | | | | Brown | https://cordia.com | +| | | | | | | | | Ericka | https://eugene.com | +| | | | | | | | | Rashad | http://thomas.com | +| | | | | | | | | Antonia | https://marcelle.org | +| Dynamic Group Associate | 6.6.1 | Ignored | We need to input the open-source SMTP bus! | | | | http://kian.name | Burley | http://lemuel.com | +| | | | | | | | | Brenden | http://agnes.net | +| | | | | | | | | Urban | https://micheal.name | +| | | | | | | | | Ida | https://murray.org | +| | | | | | | | | Samanta | http://assunta.biz | +| | | | | | | | | Florencio | http://bradford.info | +| | | | | | | | | Marcella | http://ray.net | +| | | | | | | | | Gunnar | https://elissa.net | +| | | | | | | | | Maud | https://edgar.name | +| | | | | | | | | Angelina | https://adonis.biz | +| Principal Assurance Representative | 3.8.2 | Ignored | | | | Patsy Erdman,Patsy Erdman,Patsy Erdman,Patsy Erdman | | Jadon | https://amelia.biz | +| | | | | | | | | Toni | http://angie.name | +| | | | | | | | | Ardella | http://melissa.net | +| | | | | | | | | Sandra | http://pearline.org | +| | | | | | | | | Noble | https://dusty.net | +| Product Interactions Planner | 7.4.0 | Expression | Try to navigate the PCI matrix, maybe it will navigate the haptic matrix! | | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | http://bertha.net | Rey | https://connie.info | +| | | | | | | | | Hollie | http://rico.name | +| | | | | | | | | Marshall | http://pierce.org | +| | | | | | | | | 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 | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | Julius Abbott | http://celestine.info | Ettie | http://lonny.net | +| | | | | | | | | Onie | https://cassie.biz | +| | | | | | | | | Solon | https://buck.biz | +| Global Mobility Facilitator | 8.5.9 | Url | | We need to parse the primary PCI protocol! | | Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch | https://itzel.info | Mitchel | http://carleton.name | +| | | | | | | | | Madalyn | http://narciso.net | +| | | | | | | | | Mia | http://nicklaus.net | +| | | | | | | | | Abelardo | http://carolina.name | +| Forward Tactics Agent | 6.8.8 | Url | | We need to back up the primary SMTP circuit! | The COM bandwidth is down, input the auxiliary bandwidth so we can input the COM bandwidth! | Jon Schulist,Jon Schulist | https://flo.info | Diana | http://eula.name | +| | | | | | | | | Raphael | https://zackery.info | +| | | | | | | | | Nettie | https://brayan.com | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_70c2075e50828b9d.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_70c2075e50828b9d.verified.txt new file mode 100644 index 00000000..5a017204 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_70c2075e50828b9d.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Lead Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_70e69c81ae42b5d6.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_70e69c81ae42b5d6.verified.txt new file mode 100644 index 00000000..a08751e8 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_70e69c81ae42b5d6.verified.txt @@ -0,0 +1,128 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | +| Chief Data Orchestrator | 4.3.2 | Ignored | | | We need to back up the multi-byte SCSI transmitter! | http://gaylord.com | Taya | http://micaela.biz | +| | | | | | | | Evert | http://tomas.net | +| | | | | | | | Brett | http://virginie.net | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Internal Branding Executive | 2.0.9 | Overwrite | | The SAS sensor is down, input the auxiliary sensor so we can input the SAS sensor! | You can't bypass the application without programming the solid state COM application! | https://efrain.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 | +| International Assurance Executive | 2.8.5 | Ignored | The RSS driver is down, transmit the solid state driver so we can transmit the RSS driver! | | We need to parse the optical FTP driver! | http://antonina.com | Alvah | http://otha.name | +| | | | | | | | Natasha | https://nyah.com | +| | | | | | | | Oliver | http://ettie.biz | +| | | | | | | | Lonny | https://onie.org | +| | | | | | | | Cassie | http://solon.net | +| | | | | | | | Buck | http://taryn.com | +| | | | | | | | Hilton | http://isabel.com | +| Legacy Creative Liaison | 0.4.6 | Expression | | The SMS system is down, back up the open-source system so we can back up the SMS system! | I'll connect the optical FTP program, that should program the FTP program! | | Candice | http://linnea.com | +| | | | | | | | Everardo | http://daryl.net | +| | | | | | | | Jerrod | http://laila.com | +| | | | | | | | Caleigh | https://adolfo.com | +| | | | | | | | Daisha | http://justine.biz | +| | | | | | | | Americo | http://tessie.org | +| | | | | | | | Howard | https://luis.info | +| Investor Creative Architect | 4.5.6 | Overwrite | | The PCI microchip is down, input the cross-platform microchip so we can input the PCI microchip! | If we quantify the transmitter, we can get to the XML transmitter through the optical XML transmitter! | | Selmer | https://jairo.info | +| | | | | | | | Juanita | http://holly.name | +| | | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | | Adalberto | https://sister.biz | +| | | | | | | | Gerald | https://vidal.com | +| | | | | | | | Lucio | http://clemmie.info | +| Global Optimization Architect | 4.8.0 | Expression | | 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://gaylord.name | Vida | https://theresia.biz | +| | | | | | | | Ransom | http://isom.com | +| | | | | | | | Anastasia | http://kamryn.info | +| | | | | | | | Marlene | https://cyril.name | +| | | | | | | | Zetta | http://pete.org | +| | | | | | | | Candida | https://craig.biz | +| | | | | | | | Timmothy | https://joanny.biz | +| Lead Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Regional Paradigm Assistant | 9.8.0 | Url | | If we input the transmitter, we can get to the HDD transmitter through the bluetooth HDD transmitter! | | | Jordan | https://kathryne.name | +| | | | | | | | Mayra | http://lance.name | +| | | | | | | | Jimmie | https://lorine.org | +| | | | | | | | Rebeka | https://malika.org | +| | | | | | | | Trinity | http://fritz.info | +| | | | | | | | Neha | https://marianne.name | +| | | | | | | | Colin | https://billie.biz | +| | | | | | | | Brielle | https://brennon.name | +| | | | | | | | Myriam | https://rosemary.name | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | Edmund | http://sadie.info | +| | | | | | | | Horacio | https://loraine.name | +| | | | | | | | Sandra | https://emil.info | +| | | | | | | | Dayana | https://leila.info | +| | | | | | | | Micah | http://darien.com | +| | | | | | | | Ethel | http://shakira.net | +| Dynamic Data Director | 8.6.8 | Overwrite | | | We need to back up the primary SMTP circuit! | https://timothy.info | Kirsten | http://madisyn.com | +| | | | | | | | Murray | https://destinee.com | +| | | | | | | | Emanuel | https://keely.info | +| | | | | | | | Obie | https://caleigh.net | +| | | | | | | | Albin | http://flavie.com | +| | | | | | | | Lavonne | http://kaitlyn.com | +| | | | | | | | Osborne | https://joesph.name | +| | | | | | | | Michael | https://kali.com | +| Investor Usability Producer | 9.7.6 | Url | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | Jett | https://randal.biz | +| | | | | | | | Leif | http://chaz.name | +| | | | | | | | Tristian | http://susie.com | +| | | | | | | | Carmelo | https://kariane.com | +| | | | | | | | Sofia | http://daphnee.name | +| | | | | | | | Nedra | http://orland.info | +| | | | | | | | Hilton | http://shany.info | +| Dynamic Program Associate | 5.9.7 | Expression | | | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Suzanne | http://ima.name | +| | | | | | | | Earnestine | http://nathanial.biz | +| | | | | | | | Connor | https://augustus.net | +| | | | | | | | Araceli | http://hailey.biz | +| | | | | | | | Janessa | https://craig.com | +| | | | | | | | Erica | http://kristin.org | +| | | | | | | | Alek | http://shany.biz | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| Corporate Tactics Analyst | 3.0.8 | Overwrite | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | Use the virtual RAM monitor, then you can override the virtual monitor! | | | Hildegard | http://conner.name | +| | | | | | | | 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 | +| | | | | | | | Irving | https://sydnie.org | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Dynamic Quality Officer | 8.9.2 | Ignored | | | | https://danika.org | Jadon | https://amelia.biz | +| | | | | | | | Toni | http://angie.name | +| | | | | | | | Ardella | http://melissa.net | +| | | | | | | | Sandra | http://pearline.org | +| | | | | | | | Noble | https://dusty.net | +| Human Accounts Executive | 7.6.7 | Unknown | Use the auxiliary PNG interface, then you can generate the auxiliary interface! | | You can't connect the interface without backing up the optical SMTP interface! | http://kristin.net | Seamus | http://maybell.info | +| | | | | | | | Monserrat | http://katrine.name | +| | | | | | | | Abel | https://geovany.com | +| | | | | | | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| Lead Integration Engineer | 8.7.4 | Unknown | | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | http://jackeline.biz | Reanna | http://buck.net | +| | | | | | | | Christine | http://demarco.name | +| | | | | | | | Marge | http://astrid.net | +| | | | | | | | Charlene | http://rod.net | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_710125f1318765d5.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_710125f1318765d5.verified.txt new file mode 100644 index 00000000..e6f32afb --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_710125f1318765d5.verified.txt @@ -0,0 +1,22 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7125dfdacd87c976.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7125dfdacd87c976.verified.txt new file mode 100644 index 00000000..8a47a73a --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7125dfdacd87c976.verified.txt @@ -0,0 +1,128 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Global Optimization Architect | 4.8.0 | Expression | | 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://gaylord.name | Vida | https://theresia.biz | +| | | | | | | | Ransom | http://isom.com | +| | | | | | | | Anastasia | http://kamryn.info | +| | | | | | | | Marlene | https://cyril.name | +| | | | | | | | Zetta | http://pete.org | +| | | | | | | | Candida | https://craig.biz | +| | | | | | | | Timmothy | https://joanny.biz | +| Chief Data Orchestrator | 4.3.2 | Ignored | | | We need to back up the multi-byte SCSI transmitter! | http://gaylord.com | Taya | http://micaela.biz | +| | | | | | | | Evert | http://tomas.net | +| | | | | | | | Brett | http://virginie.net | +| Dynamic Data Director | 8.6.8 | Overwrite | | | We need to back up the primary SMTP circuit! | https://timothy.info | Kirsten | http://madisyn.com | +| | | | | | | | Murray | https://destinee.com | +| | | | | | | | Emanuel | https://keely.info | +| | | | | | | | Obie | https://caleigh.net | +| | | | | | | | Albin | http://flavie.com | +| | | | | | | | Lavonne | http://kaitlyn.com | +| | | | | | | | Osborne | https://joesph.name | +| | | | | | | | Michael | https://kali.com | +| Investor Usability Producer | 9.7.6 | Url | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | Jett | https://randal.biz | +| | | | | | | | Leif | http://chaz.name | +| | | | | | | | Tristian | http://susie.com | +| | | | | | | | Carmelo | https://kariane.com | +| | | | | | | | Sofia | http://daphnee.name | +| | | | | | | | Nedra | http://orland.info | +| | | | | | | | Hilton | http://shany.info | +| Dynamic Program Associate | 5.9.7 | Expression | | | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Suzanne | http://ima.name | +| | | | | | | | Earnestine | http://nathanial.biz | +| | | | | | | | Connor | https://augustus.net | +| | | | | | | | Araceli | http://hailey.biz | +| | | | | | | | Janessa | https://craig.com | +| | | | | | | | Erica | http://kristin.org | +| | | | | | | | Alek | http://shany.biz | +| Legacy Creative Liaison | 0.4.6 | Expression | | The SMS system is down, back up the open-source system so we can back up the SMS system! | I'll connect the optical FTP program, that should program the FTP program! | | Candice | http://linnea.com | +| | | | | | | | Everardo | http://daryl.net | +| | | | | | | | Jerrod | http://laila.com | +| | | | | | | | Caleigh | https://adolfo.com | +| | | | | | | | Daisha | http://justine.biz | +| | | | | | | | Americo | http://tessie.org | +| | | | | | | | Howard | https://luis.info | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Internal Branding Executive | 2.0.9 | Overwrite | | The SAS sensor is down, input the auxiliary sensor so we can input the SAS sensor! | You can't bypass the application without programming the solid state COM application! | https://efrain.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 | +| Corporate Tactics Analyst | 3.0.8 | Overwrite | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | Use the virtual RAM monitor, then you can override the virtual monitor! | | | Hildegard | http://conner.name | +| | | | | | | | 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 | +| | | | | | | | Irving | https://sydnie.org | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| Lead Integration Engineer | 8.7.4 | Unknown | | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | http://jackeline.biz | Reanna | http://buck.net | +| | | | | | | | Christine | http://demarco.name | +| | | | | | | | Marge | http://astrid.net | +| | | | | | | | Charlene | http://rod.net | +| Investor Creative Architect | 4.5.6 | Overwrite | | The PCI microchip is down, input the cross-platform microchip so we can input the PCI microchip! | If we quantify the transmitter, we can get to the XML transmitter through the optical XML transmitter! | | Selmer | https://jairo.info | +| | | | | | | | Juanita | http://holly.name | +| | | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | | Adalberto | https://sister.biz | +| | | | | | | | Gerald | https://vidal.com | +| | | | | | | | Lucio | http://clemmie.info | +| Human Accounts Executive | 7.6.7 | Unknown | Use the auxiliary PNG interface, then you can generate the auxiliary interface! | | You can't connect the interface without backing up the optical SMTP interface! | http://kristin.net | Seamus | http://maybell.info | +| | | | | | | | Monserrat | http://katrine.name | +| | | | | | | | Abel | https://geovany.com | +| | | | | | | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| International Assurance Executive | 2.8.5 | Ignored | The RSS driver is down, transmit the solid state driver so we can transmit the RSS driver! | | We need to parse the optical FTP driver! | http://antonina.com | Alvah | http://otha.name | +| | | | | | | | Natasha | https://nyah.com | +| | | | | | | | Oliver | http://ettie.biz | +| | | | | | | | Lonny | https://onie.org | +| | | | | | | | Cassie | http://solon.net | +| | | | | | | | Buck | http://taryn.com | +| | | | | | | | Hilton | http://isabel.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Regional Paradigm Assistant | 9.8.0 | Url | | If we input the transmitter, we can get to the HDD transmitter through the bluetooth HDD transmitter! | | | Jordan | https://kathryne.name | +| | | | | | | | Mayra | http://lance.name | +| | | | | | | | Jimmie | https://lorine.org | +| | | | | | | | Rebeka | https://malika.org | +| | | | | | | | Trinity | http://fritz.info | +| | | | | | | | Neha | https://marianne.name | +| | | | | | | | Colin | https://billie.biz | +| | | | | | | | Brielle | https://brennon.name | +| | | | | | | | Myriam | https://rosemary.name | +| Lead Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Dynamic Quality Officer | 8.9.2 | Ignored | | | | https://danika.org | Jadon | https://amelia.biz | +| | | | | | | | Toni | http://angie.name | +| | | | | | | | Ardella | http://melissa.net | +| | | | | | | | Sandra | http://pearline.org | +| | | | | | | | Noble | https://dusty.net | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | Edmund | http://sadie.info | +| | | | | | | | Horacio | https://loraine.name | +| | | | | | | | Sandra | https://emil.info | +| | | | | | | | Dayana | https://leila.info | +| | | | | | | | Micah | http://darien.com | +| | | | | | | | Ethel | http://shakira.net | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7271fa3cb73a48af.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7271fa3cb73a48af.verified.txt new file mode 100644 index 00000000..53d88a69 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7271fa3cb73a48af.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Paige | https://remington.info | +| | | | | | Aletha | https://isobel.info | +| | | | | | Pearline | https://johnathon.info | +| | | | | | Eleanora | http://jaeden.info | +| | | | | | Nikolas | https://daphney.net | +| | | | | | Oceane | http://clifton.com | +| | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | http://marina.com | Myles | http://nikko.name | +| | | | | | Rolando | http://nikko.name | +| | | | | | Pamela | https://aliza.net | +| | | | | | Marcella | http://helga.net | +| | | | | | Alisha | http://alyson.name | +| | | | | | Carmelo | http://michele.name | +| | | | | | Miles | https://freddie.com | +| | | | | | Kade | https://jaunita.biz | +| | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | Abner | http://tavares.info | +| | | | | | Johann | http://andres.net | +| | | | | | Jaquan | http://carey.org | +| | | | | | Arvel | http://mortimer.org | +| | | | | | Alicia | http://paula.com | +| | | | | | Heidi | http://letha.name | +| | | | | | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7318dba6e91b8a5e.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7318dba6e91b8a5e.verified.txt new file mode 100644 index 00000000..329ce28d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7318dba6e91b8a5e.verified.txt @@ -0,0 +1,32 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Lead Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_73aec498d9e79224.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_73aec498d9e79224.verified.txt new file mode 100644 index 00000000..dbd4cd73 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_73aec498d9e79224.verified.txt @@ -0,0 +1,31 @@ +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| Principal Assurance Representative | 3.8.2 | Ignored | | | | Patsy Erdman,Patsy Erdman,Patsy Erdman,Patsy Erdman | | Jadon | https://amelia.biz | +| | | | | | | | | Toni | http://angie.name | +| | | | | | | | | Ardella | http://melissa.net | +| | | | | | | | | Sandra | http://pearline.org | +| | | | | | | | | Noble | https://dusty.net | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7444e34738500951.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7444e34738500951.verified.txt new file mode 100644 index 00000000..f5a29520 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7444e34738500951.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_74789f86eb338869.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_74789f86eb338869.verified.txt new file mode 100644 index 00000000..aafd74df --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_74789f86eb338869.verified.txt @@ -0,0 +1,35 @@ +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Senior Brand Developer | 4.4.1 | Ignored | If we override the system, we can get to the CSS system through the neural CSS system! | http://adelbert.net | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| | | | | | Libby | http://wade.biz | +| | | | | | Leola | https://pietro.info | +| | | | | | Arch | http://hazle.org | +| | | | | | Eldred | http://gabriel.net | +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_74a0b043fad04382.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_74a0b043fad04382.verified.txt new file mode 100644 index 00000000..42162f1e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_74a0b043fad04382.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_74f297a6f7aa319d.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_74f297a6f7aa319d.verified.txt new file mode 100644 index 00000000..29ccef6c --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_74f297a6f7aa319d.verified.txt @@ -0,0 +1,145 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| National Creative Engineer | 4.0.0 | Ignored | You can't parse the alarm without overriding the haptic SMTP alarm! | | | Candida | https://craig.biz | +| | | | | | | Timmothy | https://joanny.biz | +| | | | | | | Alfonzo | http://dorothea.org | +| | | | | | | 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 | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| Regional Mobility Manager | 2.7.0 | Ignored | | | http://gianni.info | Alvina | http://elouise.name | +| | | | | | | Ron | http://brown.org | +| | | | | | | Cordia | http://ericka.name | +| | | | | | | Eugene | http://rashad.info | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Forward Directives Supervisor | 8.7.6 | Ignored | | The SSL microchip is down, hack the optical microchip so we can hack the SSL microchip! | http://shaun.org | Jadon | https://amelia.biz | +| | | | | | | Toni | http://angie.name | +| | | | | | | Ardella | http://melissa.net | +| | | | | | | Sandra | http://pearline.org | +| | | | | | | Noble | https://dusty.net | +| Chief Brand Associate | 7.6.8 | Ignored | | | https://lauriane.com | Devin | https://ramona.info | +| | | | | | | Alice | http://laverne.info | +| | | | | | | Layne | https://brooks.name | +| | | | | | | Kaitlyn | http://serenity.biz | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | Ignored | | The COM application is down, quantify the auxiliary application so we can quantify the COM application! | | Nyah | http://oliver.com | +| | | | | | | Ettie | http://lonny.net | +| | | | | | | Onie | https://cassie.biz | +| | | | | | | Solon | https://buck.biz | +| | | | | | | Taryn | http://hilton.com | +| | | | | | | Isabel | http://rogers.net | +| | | | | | | Bertrand | http://annetta.org | +| | | | | | | Remington | https://efrain.info | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Legacy Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7560cb45eca9948b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7560cb45eca9948b.verified.txt new file mode 100644 index 00000000..8487e8e6 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7560cb45eca9948b.verified.txt @@ -0,0 +1,31 @@ +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| Principal Assurance Representative | 3.8.2 | Ignored | | | | Patsy Erdman,Patsy Erdman,Patsy Erdman,Patsy Erdman | | Jadon | https://amelia.biz | +| | | | | | | | | Toni | http://angie.name | +| | | | | | | | | Ardella | http://melissa.net | +| | | | | | | | | Sandra | http://pearline.org | +| | | | | | | | | Noble | https://dusty.net | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_75c5093bb019dbf5.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_75c5093bb019dbf5.verified.txt new file mode 100644 index 00000000..884ab88f --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_75c5093bb019dbf5.verified.txt @@ -0,0 +1,40 @@ +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_75e7fd9c08fbf94b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_75e7fd9c08fbf94b.verified.txt new file mode 100644 index 00000000..c30a0a83 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_75e7fd9c08fbf94b.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | Clare | https://bobby.info | +| | | | | | | Cecil | https://kira.net | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | Ila | http://rachel.com | +| | | | | | | Catalina | http://jolie.com | +| | | | | | | Dianna | https://leda.net | +| | | | | | | Nicola | http://aleen.name | +| | | | | | | Nelda | http://delpha.net | +| | | | | | | Delores | http://rae.biz | +| | | | | | | Cynthia | https://zella.com | +| | | | | | | Greta | http://adolph.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_76055bfa933dd2ad.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_76055bfa933dd2ad.verified.txt new file mode 100644 index 00000000..750925f4 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_76055bfa933dd2ad.verified.txt @@ -0,0 +1,25 @@ +| ----------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------------- | --------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------------- | --------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Forward Functionality Analyst | 4.5.1 | Expression | | http://orie.name | | | +| Dynamic Functionality Agent | 5.9.5 | Unknown | | http://annabelle.net | | | +| National Communications Facilitator | 3.1.0 | Url | quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter! | | | | +| Central Interactions Manager | 7.0.9 | Expression | | | | | +| Global Usability Representative | 3.5.9 | Url | | | | | +| National Tactics Engineer | 3.7.5 | Url | generating the matrix won't do anything, we need to override the redundant GB matrix! | https://alexys.org | | | +| Dynamic Security Technician | 6.8.3 | Unknown | | | | | +| Customer Operations Officer | 2.6.0 | Overwrite | Use the bluetooth USB alarm, then you can override the bluetooth alarm! | http://antonette.org | | | +| Product Applications Assistant | 2.8.4 | Overwrite | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | https://carleton.info | | | +| Regional Security Architect | 2.2.5 | Url | | | | | +| Global Security Liaison | 8.1.2 | Expression | | | | | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | +| District Branding Analyst | 1.9.5 | Url | | https://paula.net | | | +| Chief Assurance Associate | 3.3.1 | Url | overriding the panel won't do anything, we need to parse the open-source IB panel! | https://tyrese.info | | | +| Central Integration Analyst | 0.4.0 | Overwrite | If we synthesize the protocol, we can get to the JBOD protocol through the multi-byte JBOD protocol! | https://laverne.name | | | +| Customer Directives Director | 7.9.2 | Overwrite | Try to hack the COM panel, maybe it will hack the auxiliary panel! | | | | +| Forward Quality Producer | 6.3.7 | Overwrite | The CSS microchip is down, back up the bluetooth microchip so we can back up the CSS microchip! | https://jayne.name | | | +| ----------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------------- | --------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_769c240021d6651a.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_769c240021d6651a.verified.txt new file mode 100644 index 00000000..e65ed6e4 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_769c240021d6651a.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_76b55202f4bd2b75.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_76b55202f4bd2b75.verified.txt new file mode 100644 index 00000000..949fa777 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_76b55202f4bd2b75.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Paige | https://remington.info | +| | | | | Aletha | https://isobel.info | +| | | | | Pearline | https://johnathon.info | +| | | | | Eleanora | http://jaeden.info | +| | | | | Nikolas | https://daphney.net | +| | | | | Oceane | http://clifton.com | +| | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_76b5986e21417a75.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_76b5986e21417a75.verified.txt new file mode 100644 index 00000000..1bc6c9be --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_76b5986e21417a75.verified.txt @@ -0,0 +1,56 @@ +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| Legacy Response Analyst | 9.2.7 | Unknown | | Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata | http://martine.info | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Customer Operations Liaison | 9.0.9 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | | | | +| Principal Factors Producer | 0.8.5 | Unknown | connecting the system won't do anything, we need to override the back-end SQL system! | Devin Nolan | http://toby.info | | | +| Dynamic Applications Director | 5.1.4 | Unknown | | Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel | | | | +| Forward Division Strategist | 5.7.1 | Expression | You can't reboot the program without transmitting the mobile SMTP program! | Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode | https://esperanza.name | | | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| Investor Interactions Designer | 1.9.4 | Overwrite | | | https://octavia.name | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Optimization Associate | 4.0.5 | Unknown | | Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel | https://linnie.net | | | +| Dynamic Integration Assistant | 2.1.6 | Unknown | | | https://gerson.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 | | | +| Future Tactics Producer | 5.8.9 | Url | navigating the pixel won't do anything, we need to parse the back-end IB pixel! | | | | | +| Regional Integration Consultant | 5.3.8 | Expression | | | http://michael.name | | | +| Dynamic Mobility Technician | 6.0.2 | Expression | | | https://keeley.net | | | +| Global Integration Assistant | 5.0.1 | Unknown | | | http://demarco.com | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Human Implementation Producer | 0.9.1 | Url | | | | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| District Mobility Administrator | 3.2.3 | Unknown | | Christopher Dietrich,Christopher Dietrich,Christopher Dietrich,Christopher Dietrich | | | | +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7712ac593083a354.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7712ac593083a354.verified.txt new file mode 100644 index 00000000..2b597f34 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7712ac593083a354.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_772e60b58cac50a2.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_772e60b58cac50a2.verified.txt new file mode 100644 index 00000000..7d3cc5b3 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_772e60b58cac50a2.verified.txt @@ -0,0 +1,21 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_77d14850efb839be.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_77d14850efb839be.verified.txt new file mode 100644 index 00000000..80f20af9 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_77d14850efb839be.verified.txt @@ -0,0 +1,39 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_781e4d27dd828886.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_781e4d27dd828886.verified.txt new file mode 100644 index 00000000..4fc42d06 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_781e4d27dd828886.verified.txt @@ -0,0 +1,135 @@ +| --------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | --------------------- | ----------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| --------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | --------------------- | ----------- | --------------------- | +| Human Implementation Designer | 8.3.7 | Unknown | Try to navigate the RSS card, maybe it will navigate the haptic card! | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Customer Configuration Manager | 1.6.8 | Unknown | I'll program the online RSS card, that should card the RSS card! | http://sylvan.net | | | +| Dynamic Communications Supervisor | 2.6.8 | Overwrite | | https://carol.biz | | | +| Product Quality Analyst | 3.6.5 | Overwrite | You can't parse the port without bypassing the multi-byte GB port! | https://delbert.com | | | +| Human Configuration Assistant | 0.1.1 | Unknown | I'll bypass the solid state SMS system, that should system the SMS system! | http://frederick.com | | | +| Direct Assurance Supervisor | 4.1.8 | Overwrite | | https://aniyah.org | | | +| Dynamic Mobility Representative | 8.4.2 | Ignored | | http://brooks.info | | | +| Future Interactions Specialist | 8.8.8 | Ignored | quantifying the application won't do anything, we need to hack the haptic RAM application! | | | | +| Corporate Creative Liaison | 2.9.9 | Overwrite | | http://albert.org | | | +| Chief Assurance Associate | 3.3.1 | Url | overriding the panel won't do anything, we need to parse the open-source IB panel! | https://tyrese.info | | | +| District Mobility Administrator | 3.2.3 | Ignored | | | | | +| District Factors Producer | 1.6.6 | Unknown | If we reboot the panel, we can get to the THX panel through the solid state THX panel! | | | | +| District Branding Analyst | 1.9.5 | Url | | https://paula.net | | | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Chief Implementation Assistant | 6.1.2 | Unknown | | http://cathryn.biz | | | +| Customer Security Representative | 3.7.3 | Expression | The GB circuit is down, hack the redundant circuit so we can hack the GB circuit! | https://jalon.net | | | +| Lead Integration Liaison | 1.8.8 | Url | | https://sean.com | | | +| Human Creative Engineer | 7.5.1 | Unknown | | | | | +| Customer Directives Director | 7.9.2 | Overwrite | Try to hack the COM panel, maybe it will hack the auxiliary panel! | | | | +| Future Markets Architect | 9.0.8 | Overwrite | | | | | +| Global Usability Producer | 4.9.5 | Expression | If we hack the application, we can get to the PCI application through the 1080p PCI application! | | | | +| Dynamic Security Technician | 6.8.3 | Unknown | | | | | +| Corporate Data Strategist | 9.0.0 | Url | | http://eli.net | | | +| International Identity Planner | 4.2.1 | Expression | You can't compress the capacitor without copying the virtual USB capacitor! | | | | +| Chief Division Director | 3.4.7 | Unknown | Try to override the CSS microchip, maybe it will override the primary microchip! | http://alejandrin.biz | | | +| Internal Division Agent | 2.4.2 | Unknown | | | | | +| National Tactics Architect | 6.7.8 | Url | We need to parse the auxiliary SAS capacitor! | https://margaret.net | | | +| Customer Integration Agent | 3.6.0 | Expression | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | | | | +| Regional Markets Supervisor | 7.7.6 | Expression | If we transmit the system, we can get to the SMTP system through the virtual SMTP system! | | | | +| Chief Marketing Assistant | 7.3.5 | Expression | | | | | +| National Creative Executive | 7.5.7 | Unknown | | http://mallory.biz | | | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | +| Senior Brand Developer | 4.4.1 | Ignored | If we override the system, we can get to the CSS system through the neural CSS system! | http://adelbert.net | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| | | | | | Libby | http://wade.biz | +| | | | | | Leola | https://pietro.info | +| | | | | | Arch | http://hazle.org | +| | | | | | Eldred | http://gabriel.net | +| Dynamic Configuration Specialist | 8.8.8 | Overwrite | Use the 1080p XML circuit, then you can generate the 1080p circuit! | http://brown.com | | | +| District Brand Designer | 3.4.8 | Ignored | Try to quantify the PNG program, maybe it will quantify the online program! | https://josiane.org | | | +| Dynamic Applications Director | 5.1.4 | Ignored | | | | | +| Central Markets Officer | 6.8.8 | Expression | | | | | +| Dynamic Configuration Executive | 4.7.6 | Unknown | If we parse the transmitter, we can get to the ADP transmitter through the online ADP transmitter! | | | | +| Customer Quality Technician | 9.7.0 | Unknown | If we index the card, we can get to the XSS card through the neural XSS card! | | | | +| Internal Infrastructure Strategist | 7.2.2 | Overwrite | I'll transmit the optical XML sensor, that should sensor the XML sensor! | http://ahmad.com | | | +| Human Accountability Analyst | 0.8.7 | Ignored | parsing the program won't do anything, we need to synthesize the haptic IB program! | | | | +| Principal Web Facilitator | 5.4.5 | Overwrite | compressing the firewall won't do anything, we need to copy the bluetooth COM firewall! | http://paris.name | | | +| Central Marketing Technician | 8.7.2 | Overwrite | Use the cross-platform GB capacitor, then you can parse the cross-platform capacitor! | http://albina.org | | | +| Chief Infrastructure Consultant | 4.1.2 | Url | Use the multi-byte IB feed, then you can navigate the multi-byte feed! | https://theron.info | | | +| National Communications Orchestrator | 4.5.1 | Unknown | The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit! | | | | +| Customer Implementation Director | 5.9.1 | Unknown | | | | | +| Legacy Data Facilitator | 0.9.0 | Overwrite | bypassing the program won't do anything, we need to bypass the optical AI program! | https://beatrice.net | | | +| Corporate Paradigm Representative | 7.0.2 | Overwrite | You can't quantify the capacitor without hacking the neural SMS capacitor! | | | | +| Chief Mobility Planner | 7.1.0 | Overwrite | | | | | +| Product Implementation Officer | 1.9.9 | Unknown | Try to back up the AGP system, maybe it will back up the 1080p system! | | | | +| Product Identity Architect | 5.6.4 | Url | The GB bus is down, back up the redundant bus so we can back up the GB bus! | http://darian.org | | | +| Dynamic Brand Technician | 2.5.6 | Expression | | http://lesly.info | | | +| Future Accounts Producer | 9.4.3 | Unknown | You can't override the port without indexing the neural THX port! | | | | +| Regional Solutions Supervisor | 1.8.2 | Ignored | You can't parse the system without compressing the haptic GB system! | https://lance.net | | | +| Customer Operations Officer | 2.6.0 | Overwrite | Use the bluetooth USB alarm, then you can override the bluetooth alarm! | http://antonette.org | | | +| Principal Markets Designer | 3.8.8 | Url | overriding the transmitter won't do anything, we need to generate the cross-platform SCSI transmitter! | | | | +| Principal Intranet Liaison | 5.1.0 | Overwrite | I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor! | http://neva.info | | | +| Forward Identity Orchestrator | 1.3.3 | Ignored | hacking the alarm won't do anything, we need to override the neural SSL alarm! | | | | +| National Communications Facilitator | 3.1.0 | Url | quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter! | | | | +| Central Integration Analyst | 0.4.0 | Overwrite | If we synthesize the protocol, we can get to the JBOD protocol through the multi-byte JBOD protocol! | https://laverne.name | | | +| District Intranet Designer | 4.5.0 | Ignored | | | | | +| District Web Developer | 6.1.9 | Unknown | | http://arthur.net | | | +| Internal Factors Developer | 3.7.7 | Ignored | | http://santa.name | | | +| Central Interactions Manager | 7.0.9 | Expression | | | | | +| Central Marketing Director | 3.2.5 | Overwrite | | https://anibal.net | | | +| Chief Accounts Associate | 8.5.5 | Unknown | You can't generate the panel without compressing the neural SAS panel! | | | | +| National Identity Technician | 7.4.9 | Overwrite | Try to parse the SMTP feed, maybe it will parse the multi-byte feed! | https://benedict.org | | | +| District Infrastructure Strategist | 9.1.5 | Ignored | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | | | | +| Human Quality Facilitator | 1.2.0 | Ignored | We need to copy the online THX firewall! | | | | +| Investor Accountability Officer | 2.4.3 | Overwrite | | | | | +| Regional Security Architect | 2.2.5 | Url | | | | | +| Forward Quality Producer | 6.3.7 | Overwrite | The CSS microchip is down, back up the bluetooth microchip so we can back up the CSS microchip! | https://jayne.name | | | +| National Accounts Associate | 2.7.6 | Overwrite | | | | | +| Investor Usability Officer | 2.5.2 | Ignored | Try to program the XML capacitor, maybe it will program the haptic capacitor! | http://orlo.name | | | +| Internal Factors Facilitator | 2.6.3 | Overwrite | | http://melba.name | | | +| Principal Implementation Director | 7.1.6 | Unknown | We need to transmit the auxiliary FTP transmitter! | http://pearlie.org | | | +| Chief Solutions Orchestrator | 8.7.8 | Ignored | If we navigate the pixel, we can get to the SCSI pixel through the bluetooth SCSI pixel! | | | | +| Forward Functionality Analyst | 4.5.1 | Expression | | http://orie.name | | | +| National Tactics Engineer | 3.7.5 | Url | generating the matrix won't do anything, we need to override the redundant GB matrix! | https://alexys.org | | | +| Senior Identity Specialist | 2.8.9 | Ignored | We need to program the primary THX protocol! | https://kennedy.biz | | | +| Global Markets Executive | 2.5.8 | Expression | | | | | +| Product Applications Assistant | 2.8.4 | Overwrite | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | https://carleton.info | | | +| Dynamic Functionality Agent | 5.9.5 | Unknown | | http://annabelle.net | | | +| Global Security Liaison | 8.1.2 | Expression | | | | | +| Global Response Coordinator | 9.7.3 | Overwrite | Use the solid state SQL firewall, then you can connect the solid state firewall! | https://zelda.net | | | +| Internal Branding Supervisor | 6.7.4 | Url | I'll copy the auxiliary PCI panel, that should panel the PCI panel! | | | | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Global Usability Representative | 3.5.9 | Url | | | | | +| National Solutions Associate | 9.1.2 | Expression | | | | | +| Senior Division Liaison | 7.1.3 | Ignored | | | | | +| Regional Interactions Assistant | 8.4.1 | Ignored | I'll hack the optical COM alarm, that should alarm the COM alarm! | | | | +| Dynamic Functionality Consultant | 4.9.1 | Unknown | | https://lonnie.info | | | +| Principal Optimization Representative | 0.4.8 | Overwrite | If we index the system, we can get to the XSS system through the cross-platform XSS system! | | | | +| Corporate Accountability Representative | 2.3.2 | Unknown | | | | | +| Legacy Functionality Consultant | 8.0.9 | Ignored | Try to generate the SAS matrix, maybe it will generate the cross-platform matrix! | http://emie.info | | | +| Lead Tactics Executive | 6.2.9 | Unknown | | https://lowell.org | | | +| International Research Director | 4.1.0 | Url | Try to synthesize the SDD hard drive, maybe it will synthesize the bluetooth hard drive! | | | | +| Internal Accounts Consultant | 6.3.4 | Expression | Try to connect the SMS feed, maybe it will connect the mobile feed! | https://elda.info | | | +| Human Usability Associate | 5.2.5 | Expression | You can't override the capacitor without overriding the mobile XML capacitor! | http://hunter.info | | | +| Human Directives Engineer | 5.3.9 | Url | | | | | +| Human Solutions Assistant | 1.9.8 | Expression | Try to parse the PNG panel, maybe it will parse the haptic panel! | http://carter.info | | | +| Direct Directives Strategist | 7.3.1 | Ignored | | | | | +| Dynamic Interactions Facilitator | 6.8.2 | Expression | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | +| --------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | --------------------- | ----------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_78304cab733904ab.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_78304cab733904ab.verified.txt new file mode 100644 index 00000000..e5839e56 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_78304cab733904ab.verified.txt @@ -0,0 +1,16 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | --------------------- | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | Clare | https://bobby.info | +| | | | | | | Cecil | https://kira.net | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_786bc1e2253fca5b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_786bc1e2253fca5b.verified.txt new file mode 100644 index 00000000..e6f32afb --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_786bc1e2253fca5b.verified.txt @@ -0,0 +1,22 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_78ac73052ae6cea0.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_78ac73052ae6cea0.verified.txt new file mode 100644 index 00000000..202ae452 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_78ac73052ae6cea0.verified.txt @@ -0,0 +1,128 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Internal Branding Executive | 2.0.9 | Overwrite | | The SAS sensor is down, input the auxiliary sensor so we can input the SAS sensor! | You can't bypass the application without programming the solid state COM application! | https://efrain.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 | +| International Assurance Executive | 2.8.5 | Ignored | The RSS driver is down, transmit the solid state driver so we can transmit the RSS driver! | | We need to parse the optical FTP driver! | http://antonina.com | Alvah | http://otha.name | +| | | | | | | | Natasha | https://nyah.com | +| | | | | | | | Oliver | http://ettie.biz | +| | | | | | | | Lonny | https://onie.org | +| | | | | | | | Cassie | http://solon.net | +| | | | | | | | Buck | http://taryn.com | +| | | | | | | | Hilton | http://isabel.com | +| Legacy Creative Liaison | 0.4.6 | Expression | | The SMS system is down, back up the open-source system so we can back up the SMS system! | I'll connect the optical FTP program, that should program the FTP program! | | Candice | http://linnea.com | +| | | | | | | | Everardo | http://daryl.net | +| | | | | | | | Jerrod | http://laila.com | +| | | | | | | | Caleigh | https://adolfo.com | +| | | | | | | | Daisha | http://justine.biz | +| | | | | | | | Americo | http://tessie.org | +| | | | | | | | Howard | https://luis.info | +| Regional Paradigm Assistant | 9.8.0 | Url | | If we input the transmitter, we can get to the HDD transmitter through the bluetooth HDD transmitter! | | | Jordan | https://kathryne.name | +| | | | | | | | Mayra | http://lance.name | +| | | | | | | | Jimmie | https://lorine.org | +| | | | | | | | Rebeka | https://malika.org | +| | | | | | | | Trinity | http://fritz.info | +| | | | | | | | Neha | https://marianne.name | +| | | | | | | | Colin | https://billie.biz | +| | | | | | | | Brielle | https://brennon.name | +| | | | | | | | Myriam | https://rosemary.name | +| Global Optimization Architect | 4.8.0 | Expression | | 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://gaylord.name | Vida | https://theresia.biz | +| | | | | | | | Ransom | http://isom.com | +| | | | | | | | Anastasia | http://kamryn.info | +| | | | | | | | Marlene | https://cyril.name | +| | | | | | | | Zetta | http://pete.org | +| | | | | | | | Candida | https://craig.biz | +| | | | | | | | Timmothy | https://joanny.biz | +| Lead Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Lead Integration Engineer | 8.7.4 | Unknown | | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | http://jackeline.biz | Reanna | http://buck.net | +| | | | | | | | Christine | http://demarco.name | +| | | | | | | | Marge | http://astrid.net | +| | | | | | | | Charlene | http://rod.net | +| Chief Data Orchestrator | 4.3.2 | Ignored | | | We need to back up the multi-byte SCSI transmitter! | http://gaylord.com | Taya | http://micaela.biz | +| | | | | | | | Evert | http://tomas.net | +| | | | | | | | Brett | http://virginie.net | +| Dynamic Data Director | 8.6.8 | Overwrite | | | We need to back up the primary SMTP circuit! | https://timothy.info | Kirsten | http://madisyn.com | +| | | | | | | | Murray | https://destinee.com | +| | | | | | | | Emanuel | https://keely.info | +| | | | | | | | Obie | https://caleigh.net | +| | | | | | | | Albin | http://flavie.com | +| | | | | | | | Lavonne | http://kaitlyn.com | +| | | | | | | | Osborne | https://joesph.name | +| | | | | | | | Michael | https://kali.com | +| Investor Usability Producer | 9.7.6 | Url | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | Jett | https://randal.biz | +| | | | | | | | Leif | http://chaz.name | +| | | | | | | | Tristian | http://susie.com | +| | | | | | | | Carmelo | https://kariane.com | +| | | | | | | | Sofia | http://daphnee.name | +| | | | | | | | Nedra | http://orland.info | +| | | | | | | | Hilton | http://shany.info | +| Corporate Tactics Analyst | 3.0.8 | Overwrite | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | Use the virtual RAM monitor, then you can override the virtual monitor! | | | Hildegard | http://conner.name | +| | | | | | | | 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 | +| | | | | | | | Irving | https://sydnie.org | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| Investor Creative Architect | 4.5.6 | Overwrite | | The PCI microchip is down, input the cross-platform microchip so we can input the PCI microchip! | If we quantify the transmitter, we can get to the XML transmitter through the optical XML transmitter! | | Selmer | https://jairo.info | +| | | | | | | | Juanita | http://holly.name | +| | | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | | Adalberto | https://sister.biz | +| | | | | | | | Gerald | https://vidal.com | +| | | | | | | | Lucio | http://clemmie.info | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Dynamic Program Associate | 5.9.7 | Expression | | | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Suzanne | http://ima.name | +| | | | | | | | Earnestine | http://nathanial.biz | +| | | | | | | | Connor | https://augustus.net | +| | | | | | | | Araceli | http://hailey.biz | +| | | | | | | | Janessa | https://craig.com | +| | | | | | | | Erica | http://kristin.org | +| | | | | | | | Alek | http://shany.biz | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | Edmund | http://sadie.info | +| | | | | | | | Horacio | https://loraine.name | +| | | | | | | | Sandra | https://emil.info | +| | | | | | | | Dayana | https://leila.info | +| | | | | | | | Micah | http://darien.com | +| | | | | | | | Ethel | http://shakira.net | +| Human Accounts Executive | 7.6.7 | Unknown | Use the auxiliary PNG interface, then you can generate the auxiliary interface! | | You can't connect the interface without backing up the optical SMTP interface! | http://kristin.net | Seamus | http://maybell.info | +| | | | | | | | Monserrat | http://katrine.name | +| | | | | | | | Abel | https://geovany.com | +| | | | | | | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| Dynamic Quality Officer | 8.9.2 | Ignored | | | | https://danika.org | Jadon | https://amelia.biz | +| | | | | | | | Toni | http://angie.name | +| | | | | | | | Ardella | http://melissa.net | +| | | | | | | | Sandra | http://pearline.org | +| | | | | | | | Noble | https://dusty.net | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_79216c6848a98314.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_79216c6848a98314.verified.txt new file mode 100644 index 00000000..43a15bbb --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_79216c6848a98314.verified.txt @@ -0,0 +1,40 @@ +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7aae8e0c47821d05.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7aae8e0c47821d05.verified.txt new file mode 100644 index 00000000..2d571232 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7aae8e0c47821d05.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7c3f9f87741d4db9.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7c3f9f87741d4db9.verified.txt new file mode 100644 index 00000000..f0a3d464 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7c3f9f87741d4db9.verified.txt @@ -0,0 +1,14 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------- | --------- | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7c4b358c3f1518b1.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7c4b358c3f1518b1.verified.txt new file mode 100644 index 00000000..175ab01a --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7c4b358c3f1518b1.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7d90d7100e977181.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7d90d7100e977181.verified.txt new file mode 100644 index 00000000..5d945f77 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7d90d7100e977181.verified.txt @@ -0,0 +1,46 @@ +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| Legacy Response Analyst | 9.2.7 | Unknown | | Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata | http://martine.info | | | +| Dynamic Mobility Technician | 6.0.2 | Expression | | | https://keeley.net | | | +| 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 Factors Producer | 0.8.5 | Unknown | connecting the system won't do anything, we need to override the back-end SQL system! | Devin Nolan | http://toby.info | | | +| Forward Division Strategist | 5.7.1 | Expression | You can't reboot the program without transmitting the mobile SMTP program! | Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode | https://esperanza.name | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Investor Interactions Designer | 1.9.4 | Overwrite | | | https://octavia.name | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Human Implementation Producer | 0.9.1 | Url | | | | | | +| Global Integration Assistant | 5.0.1 | Unknown | | | http://demarco.com | | | +| Regional Integration Consultant | 5.3.8 | Expression | | | http://michael.name | | | +| Dynamic Integration Assistant | 2.1.6 | Unknown | | | https://gerson.info | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Customer Operations Liaison | 9.0.9 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | | | | +| District Mobility Administrator | 3.2.3 | Unknown | | Christopher Dietrich,Christopher Dietrich,Christopher Dietrich,Christopher Dietrich | | | | +| Dynamic Applications Director | 5.1.4 | Unknown | | Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel | | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Future Optimization Associate | 4.0.5 | Unknown | | Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel | https://linnie.net | | | +| Future Tactics Producer | 5.8.9 | Url | navigating the pixel won't do anything, we need to parse the back-end IB pixel! | | | | | +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7da33ace93dc8eca.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7da33ace93dc8eca.verified.txt new file mode 100644 index 00000000..646b0575 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7da33ace93dc8eca.verified.txt @@ -0,0 +1,111 @@ +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------- | ---------- | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | Unknown | 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 Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Dynamic Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.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 | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Senior Solutions Strategist | 7.5.0 | 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 Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Customer Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7dd18a97f94de586.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7dd18a97f94de586.verified.txt new file mode 100644 index 00000000..8338c366 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7dd18a97f94de586.verified.txt @@ -0,0 +1,8 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Judson | https://wilson.net | +| | | | | Guadalupe | http://otho.info | +| | | | | General | https://skylar.name | +| | | | | Haylie | http://audreanne.info | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7e37e8c3eab130e8.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7e37e8c3eab130e8.verified.txt new file mode 100644 index 00000000..c55b6d01 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7e37e8c3eab130e8.verified.txt @@ -0,0 +1,142 @@ +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| District Mobility Administrator | 3.2.3 | Unknown | | Christopher Dietrich,Christopher Dietrich,Christopher Dietrich,Christopher Dietrich | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Dynamic Group Associate | 6.6.1 | Unknown | We need to input the open-source SMTP bus! | | http://kian.name | Neil | https://burley.info | +| | | | | | | Lemuel | http://brenden.info | +| | | | | | | Agnes | https://urban.org | +| | | | | | | Micheal | https://ida.net | +| | | | | | | Murray | https://samanta.com | +| | | | | | | Assunta | http://florencio.com | +| Future Mobility Strategist | 4.7.6 | Overwrite | Use the virtual ADP bandwidth, then you can calculate the virtual bandwidth! | | http://gerardo.net | Cathy | http://giovanna.info | +| | | | | | | Ike | https://jerome.biz | +| | | | | | | Emerald | https://camren.net | +| | | | | | | Sheila | https://garry.org | +| Future Response Consultant | 9.3.1 | Unknown | | | https://ulices.biz | Ari | https://chad.com | +| | | | | | | Yvonne | http://jada.name | +| | | | | | | Noemie | https://kayley.name | +| | | | | | | Brandon | http://kristopher.name | +| | | | | | | Maggie | http://kimberly.info | +| | | | | | | Veronica | https://mya.net | +| | | | | | | Marty | https://obie.net | +| | | | | | | Braxton | http://flavio.net | +| | | | | | | Jeramie | http://jaycee.net | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Lead Creative Administrator | 9.0.0 | Overwrite | Use the virtual RAM monitor, then you can override the virtual monitor! | | https://roderick.net | Hildegard | http://conner.name | +| | | | | | | 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 | +| | | | | | | Irving | https://sydnie.org | +| Chief Data Director | 2.1.5 | Unknown | Use the haptic PCI bandwidth, then you can generate the haptic bandwidth! | | | Earnestine | http://nathanial.biz | +| | | | | | | Connor | https://augustus.net | +| | | | | | | Araceli | http://hailey.biz | +| | | | | | | Janessa | https://craig.com | +| | | | | | | Erica | http://kristin.org | +| | | | | | | Alek | http://shany.biz | +| | | | | | | Camren | http://joany.info | +| Direct Tactics Technician | 2.8.6 | Unknown | Try to quantify the SAS port, maybe it will quantify the wireless port! | | | Demond | http://stefan.name | +| | | | | | | Norval | http://annie.net | +| | | | | | | Destin | http://penelope.name | +| Future Group Assistant | 1.7.9 | Expression | Use the multi-byte AI port, then you can reboot the multi-byte port! | | | Darien | http://mitchel.biz | +| | | | | | | Carleton | https://madalyn.com | +| | | | | | | Narciso | https://mia.com | +| | | | | | | Nicklaus | https://abelardo.com | +| | | | | | | Carolina | https://lindsey.info | +| | | | | | | Rigoberto | https://lou.biz | +| Product Identity Analyst | 5.9.3 | Expression | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | | Rey | https://connie.info | +| | | | | | | Hollie | http://rico.name | +| | | | | | | Marshall | http://pierce.org | +| | | | | | | 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 | +| Dynamic Integration Assistant | 2.1.6 | Unknown | | | https://gerson.info | | | +| Investor Creative Architect | 4.5.6 | Overwrite | | Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| | | | | | | Retta | https://lottie.biz | +| | | | | | | Yasmine | http://delia.com | +| | | | | | | Khalil | http://jewel.net | +| | | | | | | Roy | https://johanna.org | +| | | | | | | Price | https://itzel.info | +| | | | | | | Dalton | https://daren.info | +| | | | | | | Arnold | http://arlo.org | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| Investor Identity Developer | 4.2.0 | Url | | Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| | | | | | | Keely | http://obie.org | +| | | | | | | Caleigh | https://albin.info | +| | | | | | | Flavie | http://lavonne.biz | +| | | | | | | Kaitlyn | http://osborne.org | +| Corporate Accountability Designer | 0.8.0 | Overwrite | We need to hack the online FTP application! | | http://taya.info | Carlee | http://britney.name | +| | | | | | | Tess | http://julian.biz | +| | | | | | | Isadore | http://billy.net | +| | | | | | | Alice | http://vern.net | +| | | | | | | King | http://trace.net | +| | | | | | | Carmela | https://adolf.info | +| | | | | | | Sherman | http://alec.net | +| | | | | | | Lamar | http://deion.org | +| Product Marketing Developer | 3.3.6 | Unknown | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | Lewis | https://alisa.com | +| | | | | | | Delores | https://layne.name | +| | | | | | | Delphine | https://katlynn.org | +| | | | | | | Meredith | https://johanna.info | +| | | | | | | Jacklyn | https://kadin.com | +| | | | | | | Hardy | https://donna.info | +| Global Infrastructure Developer | 5.5.0 | Url | generating the application won't do anything, we need to calculate the auxiliary JSON application! | Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger | https://austin.net | 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 | +| Internal Solutions Planner | 1.3.8 | Expression | | Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| | | | | | | Mallory | http://angeline.name | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7e3e8fbbdb99d147.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7e3e8fbbdb99d147.verified.txt new file mode 100644 index 00000000..7fc0b3e9 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7e3e8fbbdb99d147.verified.txt @@ -0,0 +1,40 @@ +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7ed0078f5e7efea0.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7ed0078f5e7efea0.verified.txt new file mode 100644 index 00000000..c9867650 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7ed0078f5e7efea0.verified.txt @@ -0,0 +1,127 @@ +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| National Accountability Producer | 6.9.7 | Unknown | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | https://linwood.biz | Travon | https://dedrick.name | +| | | | | | | | | Elissa | http://kaci.org | +| | | | | | | | | Brandi | https://aniyah.com | +| | | | | | | | | Tyson | https://bonita.org | +| | | | | | | | | Jazlyn | http://madonna.net | +| | | | | | | | | Deangelo | https://jess.info | +| | | | | | | | | Alvah | https://hans.net | +| Global Mobility Technician | 8.6.3 | Unknown | | We need to input the haptic XML port! | | Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante | | Lonie | http://wilburn.org | +| | | | | | | | | Concepcion | http://ed.org | +| | | | | | | | | Amanda | https://sophie.net | +| | | | | | | | | Claudine | http://ofelia.biz | +| | | | | | | | | Petra | http://clare.name | +| | | | | | | | | Ozella | https://verla.name | +| | | | | | | | | Denis | http://pete.com | +| International Intranet Planner | 1.3.4 | Expression | 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 | Ahmad | https://lupe.com | +| | | | | | | | | Randi | https://jaiden.biz | +| | | | | | | | | Patience | https://marlene.name | +| | | | | | | | | Lenna | https://franco.name | +| | | | | | | | | Kyleigh | https://tevin.name | +| | | | | | | | | Sallie | https://jordane.name | +| | | | | | | | | Willy | https://daija.info | +| | | | | | | | | Jannie | https://retta.net | +| | | | | | | | | Lottie | http://yasmine.com | +| | | | | | | | | Delia | http://khalil.com | +| Investor Operations Director | 5.6.0 | Expression | Try to input the AI microchip, maybe it will input the 1080p microchip! | | If we synthesize the sensor, we can get to the AI sensor through the redundant AI sensor! | | https://alene.info | Elouise | https://ron.com | +| | | | | | | | | Brown | https://cordia.com | +| | | | | | | | | Ericka | https://eugene.com | +| | | | | | | | | Rashad | http://thomas.com | +| | | | | | | | | Antonia | https://marcelle.org | +| Dynamic Group Associate | 6.6.1 | Ignored | We need to input the open-source SMTP bus! | | | | http://kian.name | Burley | http://lemuel.com | +| | | | | | | | | Brenden | http://agnes.net | +| | | | | | | | | Urban | https://micheal.name | +| | | | | | | | | Ida | https://murray.org | +| | | | | | | | | Samanta | http://assunta.biz | +| | | | | | | | | Florencio | http://bradford.info | +| | | | | | | | | Marcella | http://ray.net | +| | | | | | | | | Gunnar | https://elissa.net | +| | | | | | | | | Maud | https://edgar.name | +| | | | | | | | | Angelina | https://adonis.biz | +| Investor Division Assistant | 9.6.2 | Url | | I'll parse the primary PCI matrix, that should matrix the PCI matrix! | | | | Nya | http://sunny.biz | +| | | | | | | | | Arlo | https://cordia.info | +| | | | | | | | | Linnie | https://marcos.name | +| | | | | | | | | Luella | http://frederic.name | +| | | | | | | | | Lucinda | https://dion.name | +| | | | | | | | | Jayson | https://ryleigh.net | +| | | | | | | | | Mervin | https://lorenza.net | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Product Data Liaison | 7.8.8 | Unknown | Try to calculate the GB card, maybe it will calculate the wireless card! | | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | | | Lewis | https://alisa.com | +| | | | | | | | | Delores | https://layne.name | +| | | | | | | | | Delphine | https://katlynn.org | +| | | | | | | | | Meredith | https://johanna.info | +| | | | | | | | | Jacklyn | https://kadin.com | +| | | | | | | | | Hardy | https://donna.info | +| Product Interactions Planner | 7.4.0 | Expression | Try to navigate the PCI matrix, maybe it will navigate the haptic matrix! | | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | http://bertha.net | Rey | https://connie.info | +| | | | | | | | | Hollie | http://rico.name | +| | | | | | | | | Marshall | http://pierce.org | +| | | | | | | | | 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 | +| Principal Assurance Representative | 3.8.2 | Ignored | | | | Patsy Erdman,Patsy Erdman,Patsy Erdman,Patsy Erdman | | Jadon | https://amelia.biz | +| | | | | | | | | Toni | http://angie.name | +| | | | | | | | | Ardella | http://melissa.net | +| | | | | | | | | Sandra | http://pearline.org | +| | | | | | | | | Noble | https://dusty.net | +| Forward Tactics Agent | 6.8.8 | Url | | We need to back up the primary SMTP circuit! | The COM bandwidth is down, input the auxiliary bandwidth so we can input the COM bandwidth! | Jon Schulist,Jon Schulist | https://flo.info | Diana | http://eula.name | +| | | | | | | | | Raphael | https://zackery.info | +| | | | | | | | | Nettie | https://brayan.com | +| Corporate Marketing Strategist | 3.8.5 | Ignored | | | Use the redundant JSON application, then you can program the redundant application! | Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch | | Naomi | http://mckenna.net | +| | | | | | | | | Jalyn | https://katharina.name | +| | | | | | | | | Kane | http://beulah.biz | +| | | | | | | | | Eleanora | http://birdie.net | +| | | | | | | | | Alvah | http://keanu.net | +| Global Mobility Facilitator | 8.5.9 | Url | | We need to parse the primary PCI protocol! | | Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch | https://itzel.info | Mitchel | http://carleton.name | +| | | | | | | | | Madalyn | http://narciso.net | +| | | | | | | | | Mia | http://nicklaus.net | +| | | | | | | | | Abelardo | http://carolina.name | +| International Research Architect | 3.7.4 | Ignored | | Try to quantify the USB application, maybe it will quantify the mobile application! | If we index the pixel, we can get to the AI pixel through the wireless AI pixel! | | | Madisen | http://raegan.biz | +| | | | | | | | | Cathy | http://giovanna.info | +| | | | | | | | | Ike | https://jerome.biz | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| Dynamic Solutions Assistant | 5.6.4 | Ignored | navigating the alarm won't do anything, we need to copy the 1080p AGP alarm! | | | Craig Halvorson,Craig Halvorson,Craig Halvorson,Craig Halvorson | http://isabell.info | Tess | http://kailyn.info | +| | | | | | | | | Eileen | http://manley.name | +| | | | | | | | | Conor | https://glenna.name | +| | | | | | | | | Sylvester | http://gaylord.biz | +| | | | | | | | | Maxime | https://tom.com | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | Julius Abbott | http://celestine.info | Ettie | http://lonny.net | +| | | | | | | | | Onie | https://cassie.biz | +| | | | | | | | | Solon | https://buck.biz | +| Chief Solutions Administrator | 0.4.1 | Unknown | | 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 | Shaun | https://antwan.org | +| | | | | | | | | Hazel | https://forrest.net | +| | | | | | | | | Brianne | https://dorothea.name | +| | | | | | | | | Don | http://torey.com | +| | | | | | | | | Cedrick | https://zachariah.net | +| | | | | | | | | Marcelle | https://adah.org | +| | | | | | | | | Barney | http://erica.org | +| | | | | | | | | Jordi | https://alysha.com | +| | | | | | | | | Kristina | https://pattie.info | +| | | | | | | | | Cory | http://kailey.com | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7f039cd703fb7734.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7f039cd703fb7734.verified.txt new file mode 100644 index 00000000..6a4179ab --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7f039cd703fb7734.verified.txt @@ -0,0 +1,134 @@ +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Legacy Creative Liaison | 0.4.6 | Overwrite | | | Mervin | http://celestine.info | +| | | | | | Amalia | https://shanelle.info | +| | | | | | Sheila | http://darrell.info | +| | | | | | Alec | https://candice.biz | +| | | | | | Linnea | http://everardo.info | +| | | | | | Daryl | https://jerrod.com | +| | | | | | Laila | http://caleigh.net | +| | | | | | Adolfo | http://daisha.biz | +| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| | | | | | Monserrat | http://katrine.name | +| | | | | | Abel | https://geovany.com | +| | | | | | Diana | http://eula.name | +| | | | | | Raphael | https://zackery.info | +| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| | | | | | Caleigh | https://albin.info | +| | | | | | Flavie | http://lavonne.biz | +| | | | | | Kaitlyn | http://osborne.org | +| | | | | | Joesph | https://michael.name | +| | | | | | Kali | http://shyanne.net | +| | | | | | Austin | https://marty.net | +| | | | | | Theresia | http://kristin.net | +| | | | | | Lester | https://paige.com | +| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| | | | | | Earnestine | http://nathanial.biz | +| | | | | | Connor | https://augustus.net | +| | | | | | Araceli | http://hailey.biz | +| | | | | | Janessa | https://craig.com | +| | | | | | Erica | http://kristin.org | +| | | | | | Alek | http://shany.biz | +| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| | | | | | Jody | http://jakob.org | +| | | | | | Anjali | https://valentin.info | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| | | | | | Clarissa | https://audreanne.name | +| | | | | | Vida | https://theresia.biz | +| | | | | | Ransom | http://isom.com | +| | | | | | Anastasia | http://kamryn.info | +| | | | | | Marlene | https://cyril.name | +| | | | | | Zetta | http://pete.org | +| | | | | | Candida | https://craig.biz | +| | | | | | Timmothy | https://joanny.biz | +| | | | | | Alfonzo | http://dorothea.org | +| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| | | | | | Clemmie | http://shanny.net | +| | | | | | Hildegard | http://conner.name | +| | | | | | Isabella | https://kennith.com | +| | | | | | Johanna | https://ara.org | +| | | | | | Demarco | https://rae.biz | +| | | | | | Viviane | http://christine.info | +| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| | | | | | Ursula | https://werner.net | +| | | | | | Linwood | http://rebekah.org | +| | | | | | Cleve | https://claudie.net | +| | | | | | Theodora | http://faye.info | +| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| | | | | | Braeden | https://sunny.name | +| | | | | | Leslie | http://bettie.info | +| | | | | | Edmund | http://sadie.info | +| | | | | | Horacio | https://loraine.name | +| Direct Accounts Associate | 3.2.6 | Overwrite | | https://vesta.com | Buck | http://taryn.com | +| | | | | | Hilton | http://isabel.com | +| | | | | | Rogers | https://bertrand.biz | +| | | | | | Annetta | https://remington.org | +| | | | | | Efrain | http://davion.org | +| | | | | | Merle | https://abigayle.org | +| | | | | | Jerod | https://vicenta.info | +| | | | | | Kayli | https://shaun.net | +| | | | | | Antwan | https://hazel.net | +| Senior Brand Developer | 4.4.1 | Ignored | If we override the system, we can get to the CSS system through the neural CSS system! | http://adelbert.net | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| | | | | | Libby | http://wade.biz | +| | | | | | Leola | https://pietro.info | +| | | | | | Arch | http://hazle.org | +| | | | | | Eldred | http://gabriel.net | +| National Accounts Liaison | 7.2.6 | Overwrite | | | Cedrick | https://zachariah.net | +| | | | | | Marcelle | https://adah.org | +| | | | | | Barney | http://erica.org | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Global Response Associate | 1.9.8 | Overwrite | The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth! | | Sandra | http://antonina.com | +| | | | | | Willow | https://jason.org | +| | | | | | Orland | http://rigoberto.com | +| | | | | | Laney | http://eryn.org | +| | | | | | Amari | http://viviane.net | +| | | | | | Kelley | http://doris.net | +| | | | | | Kennedy | https://milo.net | +| Dynamic Marketing Consultant | 2.4.9 | Overwrite | | | Angie | https://ardella.info | +| | | | | | Melissa | https://sandra.biz | +| | | | | | Pearline | https://noble.net | +| | | | | | Dusty | https://verlie.com | +| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| | | | | | Tyson | https://bonita.org | +| | | | | | Jazlyn | http://madonna.net | +| | | | | | Deangelo | https://jess.info | +| | | | | | Alvah | https://hans.net | +| | | | | | Payton | http://shanna.name | +| | | | | | Providenci | https://tyra.org | +| | | | | | Flo | http://isidro.net | +| | | | | | Dawn | https://anika.org | +| | | | | | Silas | http://zane.name | +| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| | | | | | Princess | http://haylie.biz | +| | | | | | Jordane | https://gregorio.com | +| | | | | | Opal | http://abbie.org | +| | | | | | Pablo | https://maxime.biz | +| | | | | | Shaun | https://concepcion.net | +| | | | | | Moises | http://rupert.info | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7f96fa5b21903366.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7f96fa5b21903366.verified.txt new file mode 100644 index 00000000..e65ed6e4 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7f96fa5b21903366.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7ff4309fada7c9d8.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7ff4309fada7c9d8.verified.txt new file mode 100644 index 00000000..3ad9b0b2 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_7ff4309fada7c9d8.verified.txt @@ -0,0 +1,22 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8068dccfe7fc338e.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8068dccfe7fc338e.verified.txt new file mode 100644 index 00000000..ee205920 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8068dccfe7fc338e.verified.txt @@ -0,0 +1,97 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Product Data Liaison | 7.8.8 | Unknown | Try to calculate the GB card, maybe it will calculate the wireless card! | | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | | | Lewis | https://alisa.com | +| | | | | | | | | Delores | https://layne.name | +| | | | | | | | | Delphine | https://katlynn.org | +| | | | | | | | | Meredith | https://johanna.info | +| | | | | | | | | Jacklyn | https://kadin.com | +| | | | | | | | | Hardy | https://donna.info | +| Investor Division Assistant | 9.6.2 | Url | | I'll parse the primary PCI matrix, that should matrix the PCI matrix! | | | | Nya | http://sunny.biz | +| | | | | | | | | Arlo | https://cordia.info | +| | | | | | | | | Linnie | https://marcos.name | +| | | | | | | | | Luella | http://frederic.name | +| | | | | | | | | Lucinda | https://dion.name | +| | | | | | | | | Jayson | https://ryleigh.net | +| | | | | | | | | Mervin | https://lorenza.net | +| National Accountability Producer | 6.9.7 | Unknown | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | https://linwood.biz | Travon | https://dedrick.name | +| | | | | | | | | Elissa | http://kaci.org | +| | | | | | | | | Brandi | https://aniyah.com | +| | | | | | | | | Tyson | https://bonita.org | +| | | | | | | | | Jazlyn | http://madonna.net | +| | | | | | | | | Deangelo | https://jess.info | +| | | | | | | | | Alvah | https://hans.net | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| Forward Tactics Agent | 6.8.8 | Url | | We need to back up the primary SMTP circuit! | The COM bandwidth is down, input the auxiliary bandwidth so we can input the COM bandwidth! | Jon Schulist,Jon Schulist | https://flo.info | Diana | http://eula.name | +| | | | | | | | | Raphael | https://zackery.info | +| | | | | | | | | Nettie | https://brayan.com | +| Global Mobility Technician | 8.6.3 | Unknown | | We need to input the haptic XML port! | | Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante | | Lonie | http://wilburn.org | +| | | | | | | | | Concepcion | http://ed.org | +| | | | | | | | | Amanda | https://sophie.net | +| | | | | | | | | Claudine | http://ofelia.biz | +| | | | | | | | | Petra | http://clare.name | +| | | | | | | | | Ozella | https://verla.name | +| | | | | | | | | Denis | http://pete.com | +| International Intranet Planner | 1.3.4 | Expression | 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 | Ahmad | https://lupe.com | +| | | | | | | | | Randi | https://jaiden.biz | +| | | | | | | | | Patience | https://marlene.name | +| | | | | | | | | Lenna | https://franco.name | +| | | | | | | | | Kyleigh | https://tevin.name | +| | | | | | | | | Sallie | https://jordane.name | +| | | | | | | | | Willy | https://daija.info | +| | | | | | | | | Jannie | https://retta.net | +| | | | | | | | | Lottie | http://yasmine.com | +| | | | | | | | | Delia | http://khalil.com | +| Investor Operations Director | 5.6.0 | Expression | Try to input the AI microchip, maybe it will input the 1080p microchip! | | If we synthesize the sensor, we can get to the AI sensor through the redundant AI sensor! | | https://alene.info | Elouise | https://ron.com | +| | | | | | | | | Brown | https://cordia.com | +| | | | | | | | | Ericka | https://eugene.com | +| | | | | | | | | Rashad | http://thomas.com | +| | | | | | | | | Antonia | https://marcelle.org | +| Product Interactions Planner | 7.4.0 | Expression | Try to navigate the PCI matrix, maybe it will navigate the haptic matrix! | | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | http://bertha.net | Rey | https://connie.info | +| | | | | | | | | Hollie | http://rico.name | +| | | | | | | | | Marshall | http://pierce.org | +| | | | | | | | | 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 | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Chief Solutions Administrator | 0.4.1 | Unknown | | 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 | Shaun | https://antwan.org | +| | | | | | | | | Hazel | https://forrest.net | +| | | | | | | | | Brianne | https://dorothea.name | +| | | | | | | | | Don | http://torey.com | +| | | | | | | | | Cedrick | https://zachariah.net | +| | | | | | | | | Marcelle | https://adah.org | +| | | | | | | | | Barney | http://erica.org | +| | | | | | | | | Jordi | https://alysha.com | +| | | | | | | | | Kristina | https://pattie.info | +| | | | | | | | | Cory | http://kailey.com | +| Global Mobility Facilitator | 8.5.9 | Url | | We need to parse the primary PCI protocol! | | Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch | https://itzel.info | Mitchel | http://carleton.name | +| | | | | | | | | Madalyn | http://narciso.net | +| | | | | | | | | Mia | http://nicklaus.net | +| | | | | | | | | Abelardo | http://carolina.name | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_80845638fe9bc954.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_80845638fe9bc954.verified.txt new file mode 100644 index 00000000..1542057a --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_80845638fe9bc954.verified.txt @@ -0,0 +1,142 @@ +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Customer Program Consultant | 5.0.4 | Ignored | Try to compress the GB system, maybe it will compress the neural system! | Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan | http://kieran.biz | Bettie | http://edmund.info | +| | | | | | | Sadie | http://horacio.org | +| | | | | | | Loraine | https://sandra.org | +| | | | | | | Emil | http://dayana.net | +| Product Identity Analyst | 5.9.3 | Expression | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | | Rey | https://connie.info | +| | | | | | | Hollie | http://rico.name | +| | | | | | | Marshall | http://pierce.org | +| | | | | | | 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 | +| Lead Creative Administrator | 9.0.0 | Overwrite | Use the virtual RAM monitor, then you can override the virtual monitor! | | https://roderick.net | Hildegard | http://conner.name | +| | | | | | | 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 | +| | | | | | | Irving | https://sydnie.org | +| Chief Data Director | 2.1.5 | Unknown | Use the haptic PCI bandwidth, then you can generate the haptic bandwidth! | | | Earnestine | http://nathanial.biz | +| | | | | | | Connor | https://augustus.net | +| | | | | | | Araceli | http://hailey.biz | +| | | | | | | Janessa | https://craig.com | +| | | | | | | Erica | http://kristin.org | +| | | | | | | Alek | http://shany.biz | +| | | | | | | Camren | http://joany.info | +| Future Mobility Strategist | 4.7.6 | Overwrite | Use the virtual ADP bandwidth, then you can calculate the virtual bandwidth! | | http://gerardo.net | Cathy | http://giovanna.info | +| | | | | | | Ike | https://jerome.biz | +| | | | | | | Emerald | https://camren.net | +| | | | | | | Sheila | https://garry.org | +| Corporate Accountability Designer | 0.8.0 | Overwrite | We need to hack the online FTP application! | | http://taya.info | Carlee | http://britney.name | +| | | | | | | Tess | http://julian.biz | +| | | | | | | Isadore | http://billy.net | +| | | | | | | Alice | http://vern.net | +| | | | | | | King | http://trace.net | +| | | | | | | Carmela | https://adolf.info | +| | | | | | | Sherman | http://alec.net | +| | | | | | | Lamar | http://deion.org | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Response Consultant | 9.3.1 | Unknown | | | https://ulices.biz | Ari | https://chad.com | +| | | | | | | Yvonne | http://jada.name | +| | | | | | | Noemie | https://kayley.name | +| | | | | | | Brandon | http://kristopher.name | +| | | | | | | Maggie | http://kimberly.info | +| | | | | | | Veronica | https://mya.net | +| | | | | | | Marty | https://obie.net | +| | | | | | | Braxton | http://flavio.net | +| | | | | | | Jeramie | http://jaycee.net | +| Product Marketing Developer | 3.3.6 | Unknown | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | Lewis | https://alisa.com | +| | | | | | | Delores | https://layne.name | +| | | | | | | Delphine | https://katlynn.org | +| | | | | | | Meredith | https://johanna.info | +| | | | | | | Jacklyn | https://kadin.com | +| | | | | | | Hardy | https://donna.info | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| Investor Identity Developer | 4.2.0 | Url | | Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| | | | | | | Keely | http://obie.org | +| | | | | | | Caleigh | https://albin.info | +| | | | | | | Flavie | http://lavonne.biz | +| | | | | | | Kaitlyn | http://osborne.org | +| Dynamic Group Associate | 6.6.1 | Unknown | We need to input the open-source SMTP bus! | | http://kian.name | Neil | https://burley.info | +| | | | | | | Lemuel | http://brenden.info | +| | | | | | | Agnes | https://urban.org | +| | | | | | | Micheal | https://ida.net | +| | | | | | | Murray | https://samanta.com | +| | | | | | | Assunta | http://florencio.com | +| Investor Creative Architect | 4.5.6 | Overwrite | | Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| | | | | | | Retta | https://lottie.biz | +| | | | | | | Yasmine | http://delia.com | +| | | | | | | Khalil | http://jewel.net | +| | | | | | | Roy | https://johanna.org | +| | | | | | | Price | https://itzel.info | +| | | | | | | Dalton | https://daren.info | +| | | | | | | Arnold | http://arlo.org | +| Future Group Assistant | 1.7.9 | Expression | Use the multi-byte AI port, then you can reboot the multi-byte port! | | | Darien | http://mitchel.biz | +| | | | | | | Carleton | https://madalyn.com | +| | | | | | | Narciso | https://mia.com | +| | | | | | | Nicklaus | https://abelardo.com | +| | | | | | | Carolina | https://lindsey.info | +| | | | | | | Rigoberto | https://lou.biz | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Direct Tactics Technician | 2.8.6 | Unknown | Try to quantify the SAS port, maybe it will quantify the wireless port! | | | Demond | http://stefan.name | +| | | | | | | Norval | http://annie.net | +| | | | | | | Destin | http://penelope.name | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| Global Infrastructure Developer | 5.5.0 | Url | generating the application won't do anything, we need to calculate the auxiliary JSON application! | Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger | https://austin.net | 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 | +| Internal Solutions Planner | 1.3.8 | Expression | | Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| | | | | | | Mallory | http://angeline.name | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_80aa9b8783ad0d6d.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_80aa9b8783ad0d6d.verified.txt new file mode 100644 index 00000000..cd2e5a5d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_80aa9b8783ad0d6d.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8116a6403258e1ea.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8116a6403258e1ea.verified.txt new file mode 100644 index 00000000..2d6f0ba6 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8116a6403258e1ea.verified.txt @@ -0,0 +1,132 @@ +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error Context | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | +| Corporate Intranet Associate | 7.5.1 | Overwrite | | 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! | | | | | +| 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Corporate Marketing Strategist | 3.8.5 | Ignored | | | Use the redundant JSON application, then you can program the redundant application! | Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch | | Naomi | http://mckenna.net | +| | | | | | | | | Jalyn | https://katharina.name | +| | | | | | | | | Kane | http://beulah.biz | +| | | | | | | | | Eleanora | http://birdie.net | +| | | | | | | | | Alvah | http://keanu.net | +| Dynamic Group Associate | 6.6.1 | Ignored | We need to input the open-source SMTP bus! | | | | http://kian.name | Burley | http://lemuel.com | +| | | | | | | | | Brenden | http://agnes.net | +| | | | | | | | | Urban | https://micheal.name | +| | | | | | | | | Ida | https://murray.org | +| | | | | | | | | Samanta | http://assunta.biz | +| | | | | | | | | Florencio | http://bradford.info | +| | | | | | | | | Marcella | http://ray.net | +| | | | | | | | | Gunnar | https://elissa.net | +| | | | | | | | | Maud | https://edgar.name | +| | | | | | | | | Angelina | https://adonis.biz | +| Product Data Liaison | 7.8.8 | Unknown | Try to calculate the GB card, maybe it will calculate the wireless card! | | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | | | Lewis | https://alisa.com | +| | | | | | | | | Delores | https://layne.name | +| | | | | | | | | Delphine | https://katlynn.org | +| | | | | | | | | Meredith | https://johanna.info | +| | | | | | | | | Jacklyn | https://kadin.com | +| | | | | | | | | Hardy | https://donna.info | +| Lead Configuration Liaison | 1.8.9 | Expression | | connecting the transmitter won't do anything, we need to program the cross-platform XSS transmitter! | | | http://esther.biz | | | +| National Accountability Producer | 6.9.7 | Unknown | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | https://linwood.biz | Travon | https://dedrick.name | +| | | | | | | | | Elissa | http://kaci.org | +| | | | | | | | | Brandi | https://aniyah.com | +| | | | | | | | | Tyson | https://bonita.org | +| | | | | | | | | Jazlyn | http://madonna.net | +| | | | | | | | | Deangelo | https://jess.info | +| | | | | | | | | Alvah | https://hans.net | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| Chief Functionality Planner | 5.1.2 | Unknown | | I'll calculate the 1080p HDD system, that should system the HDD system! | | Matt Mills,Matt Mills | http://myrtice.com | | | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| International Intranet Planner | 1.3.4 | Expression | 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 | Ahmad | https://lupe.com | +| | | | | | | | | Randi | https://jaiden.biz | +| | | | | | | | | Patience | https://marlene.name | +| | | | | | | | | Lenna | https://franco.name | +| | | | | | | | | Kyleigh | https://tevin.name | +| | | | | | | | | Sallie | https://jordane.name | +| | | | | | | | | Willy | https://daija.info | +| | | | | | | | | Jannie | https://retta.net | +| | | | | | | | | Lottie | http://yasmine.com | +| | | | | | | | | Delia | http://khalil.com | +| Investor Operations Director | 5.6.0 | Expression | Try to input the AI microchip, maybe it will input the 1080p microchip! | | If we synthesize the sensor, we can get to the AI sensor through the redundant AI sensor! | | https://alene.info | Elouise | https://ron.com | +| | | | | | | | | Brown | https://cordia.com | +| | | | | | | | | Ericka | https://eugene.com | +| | | | | | | | | Rashad | http://thomas.com | +| | | | | | | | | Antonia | https://marcelle.org | +| Dynamic Solutions Assistant | 5.6.4 | Ignored | navigating the alarm won't do anything, we need to copy the 1080p AGP alarm! | | | Craig Halvorson,Craig Halvorson,Craig Halvorson,Craig Halvorson | http://isabell.info | Tess | http://kailyn.info | +| | | | | | | | | Eileen | http://manley.name | +| | | | | | | | | Conor | https://glenna.name | +| | | | | | | | | Sylvester | http://gaylord.biz | +| | | | | | | | | Maxime | https://tom.com | +| International Research Architect | 3.7.4 | Ignored | | Try to quantify the USB application, maybe it will quantify the mobile application! | If we index the pixel, we can get to the AI pixel through the wireless AI pixel! | | | Madisen | http://raegan.biz | +| | | | | | | | | Cathy | http://giovanna.info | +| | | | | | | | | Ike | https://jerome.biz | +| Global Mobility Technician | 8.6.3 | Unknown | | We need to input the haptic XML port! | | Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante | | Lonie | http://wilburn.org | +| | | | | | | | | Concepcion | http://ed.org | +| | | | | | | | | Amanda | https://sophie.net | +| | | | | | | | | Claudine | http://ofelia.biz | +| | | | | | | | | Petra | http://clare.name | +| | | | | | | | | Ozella | https://verla.name | +| | | | | | | | | Denis | http://pete.com | +| District Creative Designer | 1.4.6 | Url | We need to program the haptic IB panel! | | | | http://cameron.info | | | +| Global Mobility Facilitator | 8.5.9 | Url | | We need to parse the primary PCI protocol! | | Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch | https://itzel.info | Mitchel | http://carleton.name | +| | | | | | | | | Madalyn | http://narciso.net | +| | | | | | | | | Mia | http://nicklaus.net | +| | | | | | | | | Abelardo | http://carolina.name | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | | | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| Principal Assurance Representative | 3.8.2 | Ignored | | | | Patsy Erdman,Patsy Erdman,Patsy Erdman,Patsy Erdman | | Jadon | https://amelia.biz | +| | | | | | | | | Toni | http://angie.name | +| | | | | | | | | Ardella | http://melissa.net | +| | | | | | | | | Sandra | http://pearline.org | +| | | | | | | | | Noble | https://dusty.net | +| Forward Tactics Agent | 6.8.8 | Url | | We need to back up the primary SMTP circuit! | The COM bandwidth is down, input the auxiliary bandwidth so we can input the COM bandwidth! | Jon Schulist,Jon Schulist | https://flo.info | Diana | http://eula.name | +| | | | | | | | | Raphael | https://zackery.info | +| | | | | | | | | Nettie | https://brayan.com | +| Investor Division Assistant | 9.6.2 | Url | | I'll parse the primary PCI matrix, that should matrix the PCI matrix! | | | | Nya | http://sunny.biz | +| | | | | | | | | Arlo | https://cordia.info | +| | | | | | | | | Linnie | https://marcos.name | +| | | | | | | | | Luella | http://frederic.name | +| | | | | | | | | Lucinda | https://dion.name | +| | | | | | | | | Jayson | https://ryleigh.net | +| | | | | | | | | Mervin | https://lorenza.net | +| Product Interactions Planner | 7.4.0 | Expression | Try to navigate the PCI matrix, maybe it will navigate the haptic matrix! | | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | http://bertha.net | Rey | https://connie.info | +| | | | | | | | | Hollie | http://rico.name | +| | | | | | | | | Marshall | http://pierce.org | +| | | | | | | | | 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 | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | Julius Abbott | http://celestine.info | Ettie | http://lonny.net | +| | | | | | | | | Onie | https://cassie.biz | +| | | | | | | | | Solon | https://buck.biz | +| Chief Solutions Administrator | 0.4.1 | Unknown | | 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 | Shaun | https://antwan.org | +| | | | | | | | | Hazel | https://forrest.net | +| | | | | | | | | Brianne | https://dorothea.name | +| | | | | | | | | Don | http://torey.com | +| | | | | | | | | Cedrick | https://zachariah.net | +| | | | | | | | | Marcelle | https://adah.org | +| | | | | | | | | Barney | http://erica.org | +| | | | | | | | | Jordi | https://alysha.com | +| | | | | | | | | Kristina | https://pattie.info | +| | | | | | | | | Cory | http://kailey.com | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_818161f7ac0dfdab.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_818161f7ac0dfdab.verified.txt new file mode 100644 index 00000000..2683aa65 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_818161f7ac0dfdab.verified.txt @@ -0,0 +1,135 @@ +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Legacy Creative Liaison | 0.4.6 | Overwrite | | | Mervin | http://celestine.info | +| | | | | | Amalia | https://shanelle.info | +| | | | | | Sheila | http://darrell.info | +| | | | | | Alec | https://candice.biz | +| | | | | | Linnea | http://everardo.info | +| | | | | | Daryl | https://jerrod.com | +| | | | | | Laila | http://caleigh.net | +| | | | | | Adolfo | http://daisha.biz | +| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| | | | | | Monserrat | http://katrine.name | +| | | | | | Abel | https://geovany.com | +| | | | | | Diana | http://eula.name | +| | | | | | Raphael | https://zackery.info | +| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| | | | | | Caleigh | https://albin.info | +| | | | | | Flavie | http://lavonne.biz | +| | | | | | Kaitlyn | http://osborne.org | +| | | | | | Joesph | https://michael.name | +| | | | | | Kali | http://shyanne.net | +| | | | | | Austin | https://marty.net | +| | | | | | Theresia | http://kristin.net | +| | | | | | Lester | https://paige.com | +| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| | | | | | Earnestine | http://nathanial.biz | +| | | | | | Connor | https://augustus.net | +| | | | | | Araceli | http://hailey.biz | +| | | | | | Janessa | https://craig.com | +| | | | | | Erica | http://kristin.org | +| | | | | | Alek | http://shany.biz | +| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| | | | | | Jody | http://jakob.org | +| | | | | | Anjali | https://valentin.info | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| | | | | | Clarissa | https://audreanne.name | +| | | | | | Vida | https://theresia.biz | +| | | | | | Ransom | http://isom.com | +| | | | | | Anastasia | http://kamryn.info | +| | | | | | Marlene | https://cyril.name | +| | | | | | Zetta | http://pete.org | +| | | | | | Candida | https://craig.biz | +| | | | | | Timmothy | https://joanny.biz | +| | | | | | Alfonzo | http://dorothea.org | +| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| | | | | | Clemmie | http://shanny.net | +| | | | | | Hildegard | http://conner.name | +| | | | | | Isabella | https://kennith.com | +| | | | | | Johanna | https://ara.org | +| | | | | | Demarco | https://rae.biz | +| | | | | | Viviane | http://christine.info | +| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| | | | | | Ursula | https://werner.net | +| | | | | | Linwood | http://rebekah.org | +| | | | | | Cleve | https://claudie.net | +| | | | | | Theodora | http://faye.info | +| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| | | | | | Braeden | https://sunny.name | +| | | | | | Leslie | http://bettie.info | +| | | | | | Edmund | http://sadie.info | +| | | | | | Horacio | https://loraine.name | +| Direct Accounts Associate | 3.2.6 | Overwrite | | https://vesta.com | Buck | http://taryn.com | +| | | | | | Hilton | http://isabel.com | +| | | | | | Rogers | https://bertrand.biz | +| | | | | | Annetta | https://remington.org | +| | | | | | Efrain | http://davion.org | +| | | | | | Merle | https://abigayle.org | +| | | | | | Jerod | https://vicenta.info | +| | | | | | Kayli | https://shaun.net | +| | | | | | Antwan | https://hazel.net | +| Senior Brand Developer | 4.4.1 | Ignored | If we override the system, we can get to the CSS system through the neural CSS system! | http://adelbert.net | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| | | | | | Libby | http://wade.biz | +| | | | | | Leola | https://pietro.info | +| | | | | | Arch | http://hazle.org | +| | | | | | Eldred | http://gabriel.net | +| National Accounts Liaison | 7.2.6 | Overwrite | | | Cedrick | https://zachariah.net | +| | | | | | Marcelle | https://adah.org | +| | | | | | Barney | http://erica.org | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Global Response Associate | 1.9.8 | Overwrite | The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth! | | Sandra | http://antonina.com | +| | | | | | Willow | https://jason.org | +| | | | | | Orland | http://rigoberto.com | +| | | | | | Laney | http://eryn.org | +| | | | | | Amari | http://viviane.net | +| | | | | | Kelley | http://doris.net | +| | | | | | Kennedy | https://milo.net | +| Dynamic Marketing Consultant | 2.4.9 | Overwrite | | | Angie | https://ardella.info | +| | | | | | Melissa | https://sandra.biz | +| | | | | | Pearline | https://noble.net | +| | | | | | Dusty | https://verlie.com | +| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| | | | | | Tyson | https://bonita.org | +| | | | | | Jazlyn | http://madonna.net | +| | | | | | Deangelo | https://jess.info | +| | | | | | Alvah | https://hans.net | +| | | | | | Payton | http://shanna.name | +| | | | | | Providenci | https://tyra.org | +| | | | | | Flo | http://isidro.net | +| | | | | | Dawn | https://anika.org | +| | | | | | Silas | http://zane.name | +| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| | | | | | Princess | http://haylie.biz | +| | | | | | Jordane | https://gregorio.com | +| | | | | | Opal | http://abbie.org | +| | | | | | Pablo | https://maxime.biz | +| | | | | | Shaun | https://concepcion.net | +| | | | | | Moises | http://rupert.info | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_82469ce7bc85a70b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_82469ce7bc85a70b.verified.txt new file mode 100644 index 00000000..0751f508 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_82469ce7bc85a70b.verified.txt @@ -0,0 +1,127 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | -------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | -------------------- | --------- | ---------------------- | +| Direct Accountability Assistant | 2.2.8 | Url | bypassing the protocol won't do anything, we need to compress the primary HTTP protocol! | | http://natasha.info | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Forward Marketing Orchestrator | 1.6.4 | Overwrite | I'll connect the primary SQL sensor, that should sensor the SQL sensor! | The SMTP driver is down, bypass the mobile driver so we can bypass the SMTP driver! | https://lukas.com | | | +| Regional Factors Designer | 7.4.1 | Overwrite | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | | | | +| National Intranet Technician | 8.0.0 | Overwrite | | | | | | +| Dynamic Factors Facilitator | 6.5.2 | Expression | | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | http://magnolia.com | | | +| Chief Applications Facilitator | 7.7.6 | Overwrite | | parsing the card won't do anything, we need to synthesize the online SQL card! | | | | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | http://hanna.net | | | +| Dynamic Division Consultant | 4.8.7 | Overwrite | Use the multi-byte IB microchip, then you can connect the multi-byte microchip! | backing up the feed won't do anything, we need to compress the haptic SMTP feed! | http://raquel.net | | | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | | | +| Global Division Designer | 8.2.7 | Expression | Try to program the EXE hard drive, maybe it will program the virtual hard drive! | | https://pamela.name | | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | | | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| National Applications Designer | 6.4.9 | Expression | | Use the back-end SMS feed, then you can program the back-end feed! | | | | +| Human Group Designer | 9.9.1 | Expression | Use the haptic XSS application, then you can synthesize the haptic application! | If we transmit the hard drive, we can get to the AGP hard drive through the bluetooth AGP hard drive! | http://jodie.org | | | +| Direct Assurance Strategist | 1.3.7 | Expression | The RSS firewall is down, hack the neural firewall so we can hack the RSS firewall! | | | | | +| Global Mobility Facilitator | 9.5.8 | Expression | | | | | | +| Principal Markets Designer | 3.8.8 | Overwrite | overriding the transmitter won't do anything, we need to generate the cross-platform SCSI transmitter! | | | | | +| Human Optimization Producer | 5.0.9 | Overwrite | | | | | | +| Product Assurance Technician | 0.8.2 | Overwrite | | | https://steve.info | | | +| Direct Data Orchestrator | 2.4.5 | Expression | | Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor! | | | | +| Human Optimization Facilitator | 7.4.8 | Overwrite | 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! | https://cooper.name | | | +| Global Program Representative | 5.1.0 | Url | | If we back up the monitor, we can get to the PCI monitor through the virtual PCI monitor! | | | | +| Forward Functionality Developer | 5.1.1 | Url | | | | | | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Central Identity Analyst | 8.9.6 | Expression | | | http://leta.org | | | +| Corporate Marketing Assistant | 8.7.9 | Url | | You can't program the firewall without connecting the wireless AI firewall! | http://arlene.biz | | | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | | | +| National Research Facilitator | 6.0.6 | Expression | Use the primary EXE array, then you can navigate the primary array! | | | | | +| Direct Mobility Designer | 7.7.3 | Expression | | | http://geovanny.info | | | +| Investor Creative Architect | 8.2.4 | Unknown | | | | | | +| Legacy Directives Supervisor | 9.6.2 | Url | The PNG circuit is down, back up the online circuit so we can back up the PNG circuit! | | | | | +| Human Directives Specialist | 4.3.4 | Unknown | Use the digital XSS hard drive, then you can compress the digital hard drive! | You can't generate the card without synthesizing the bluetooth PNG card! | | | | +| Chief Intranet Facilitator | 6.6.1 | Expression | | | https://rosalind.net | | | +| Central Web Assistant | 4.2.1 | Unknown | | Use the wireless ADP array, then you can input the wireless array! | https://verda.net | | | +| Dynamic Accountability Strategist | 7.0.9 | Unknown | You can't bypass the sensor without transmitting the neural JSON sensor! | | | | | +| Senior Optimization Assistant | 3.6.0 | Overwrite | | overriding the pixel won't do anything, we need to copy the optical JSON pixel! | http://akeem.info | | | +| Senior Security Consultant | 2.7.5 | Unknown | | | http://adelbert.biz | | | +| Legacy Directives Officer | 2.4.4 | Url | | The PCI program is down, hack the multi-byte program so we can hack the PCI program! | http://sedrick.biz | | | +| Investor Interactions Liaison | 4.4.9 | Overwrite | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | | | | +| Senior Brand Analyst | 2.5.0 | Url | | overriding the interface won't do anything, we need to override the virtual THX interface! | | | | +| Corporate Directives Planner | 8.8.5 | Unknown | The CSS bus is down, generate the 1080p bus so we can generate the CSS bus! | We need to back up the 1080p SMTP feed! | | | | +| Lead Usability Assistant | 1.3.4 | Overwrite | quantifying the matrix won't do anything, we need to synthesize the wireless PCI matrix! | Use the solid state SQL firewall, then you can connect the solid state firewall! | https://duane.info | | | +| Investor Implementation Technician | 2.7.9 | Unknown | | | http://crystal.name | | | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | | | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | | | +| Corporate Tactics Director | 2.5.7 | Url | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | http://marcos.info | | | +| Regional Operations Coordinator | 0.2.5 | Unknown | | I'll hack the cross-platform SSL array, that should array the SSL array! | http://ena.com | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | | | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | | | +| Forward Intranet Engineer | 2.5.9 | Expression | The RSS sensor is down, input the 1080p sensor so we can input the RSS sensor! | Try to index the ADP port, maybe it will index the auxiliary port! | | | | +| Future Accounts Architect | 9.1.8 | Url | You can't bypass the firewall without indexing the multi-byte COM firewall! | | https://fermin.biz | | | +| Senior Factors Administrator | 1.6.1 | Expression | I'll calculate the solid state ADP panel, that should panel the ADP panel! | If we generate the circuit, we can get to the XSS circuit through the primary XSS circuit! | | | | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | | | +| Chief Division Producer | 2.3.9 | Overwrite | | | | | | +| District Operations Director | 0.6.3 | Url | | We need to program the cross-platform FTP hard drive! | https://dejah.net | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| National Creative Coordinator | 5.9.5 | Expression | | | https://bobbie.info | | | +| International Intranet Planner | 6.4.6 | Url | The IB interface is down, program the redundant interface so we can program the IB interface! | | https://lenna.com | | | +| 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 | | | +| Dynamic Quality Analyst | 0.9.5 | Overwrite | We need to index the optical HTTP application! | I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor! | | | | +| National Communications Orchestrator | 4.5.1 | Unknown | The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit! | | | | | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | | | +| Human Quality Facilitator | 1.2.0 | Expression | We need to copy the online THX firewall! | You can't calculate the application without calculating the auxiliary AI application! | | | | +| Forward Configuration Supervisor | 9.0.8 | Overwrite | You can't program the protocol without overriding the primary IB protocol! | | http://quinn.name | | | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | | | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| National Solutions Associate | 9.1.2 | Overwrite | | | | | | +| Human Program Technician | 2.8.4 | Unknown | | | http://tomasa.info | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| Dynamic Integration Architect | 1.6.3 | Overwrite | | The RAM feed is down, copy the neural feed so we can copy the RAM feed! | | | | +| Human Directives Engineer | 5.3.9 | Url | | | | | | +| Central Tactics Engineer | 6.3.5 | Unknown | connecting the bandwidth won't do anything, we need to bypass the multi-byte AI bandwidth! | | | | | +| Human Operations Assistant | 0.7.2 | Overwrite | Use the haptic USB driver, then you can override the haptic driver! | | http://camila.net | | | +| Customer Functionality Consultant | 5.5.1 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | http://terence.com | | | +| Product Creative Facilitator | 8.4.6 | Unknown | 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://juliana.net | | | +| Chief Factors Supervisor | 5.2.2 | Expression | | | http://helga.com | | | +| Principal Accounts Coordinator | 1.0.4 | Overwrite | | I'll connect the digital JSON bus, that should bus the JSON bus! | http://rene.com | | | +| Dynamic Accountability Analyst | 4.9.7 | Overwrite | | | https://jaron.info | | | +| International Functionality Agent | 8.7.6 | Unknown | | If we hack the card, we can get to the JBOD card through the optical JBOD card! | http://jalyn.org | | | +| International Quality Director | 0.3.8 | Expression | | | | | | +| Internal Directives Designer | 0.4.8 | Url | The EXE protocol is down, reboot the redundant protocol so we can reboot the EXE protocol! | | | | | +| Lead Branding Developer | 4.1.5 | Url | | | http://abe.com | | | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | -------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_82616d1cccd83960.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_82616d1cccd83960.verified.txt new file mode 100644 index 00000000..7ff7b793 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_82616d1cccd83960.verified.txt @@ -0,0 +1,150 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Chief Brand Associate | 7.6.8 | Ignored | | | https://lauriane.com | Devin | https://ramona.info | +| | | | | | | Alice | http://laverne.info | +| | | | | | | Layne | https://brooks.name | +| | | | | | | Kaitlyn | http://serenity.biz | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| National Creative Engineer | 4.0.0 | Ignored | You can't parse the alarm without overriding the haptic SMTP alarm! | | | Candida | https://craig.biz | +| | | | | | | Timmothy | https://joanny.biz | +| | | | | | | Alfonzo | http://dorothea.org | +| | | | | | | 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 | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Legacy Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| Internal Solutions Planner | 1.3.8 | Ignored | | The COM application is down, quantify the auxiliary application so we can quantify the COM application! | | Nyah | http://oliver.com | +| | | | | | | Ettie | http://lonny.net | +| | | | | | | Onie | https://cassie.biz | +| | | | | | | Solon | https://buck.biz | +| | | | | | | Taryn | http://hilton.com | +| | | | | | | Isabel | http://rogers.net | +| | | | | | | Bertrand | http://annetta.org | +| | | | | | | Remington | https://efrain.info | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Investor Intranet Producer | 5.4.1 | Ignored | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | http://hyman.org | | | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Forward Directives Supervisor | 8.7.6 | Ignored | | The SSL microchip is down, hack the optical microchip so we can hack the SSL microchip! | http://shaun.org | Jadon | https://amelia.biz | +| | | | | | | Toni | http://angie.name | +| | | | | | | Ardella | http://melissa.net | +| | | | | | | Sandra | http://pearline.org | +| | | | | | | Noble | https://dusty.net | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 | +| Regional Mobility Manager | 2.7.0 | Ignored | | | http://gianni.info | Alvina | http://elouise.name | +| | | | | | | Ron | http://brown.org | +| | | | | | | Cordia | http://ericka.name | +| | | | | | | Eugene | http://rashad.info | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_827ae74d07e331a4.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_827ae74d07e331a4.verified.txt new file mode 100644 index 00000000..703055ce --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_827ae74d07e331a4.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_839073d6b9664024.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_839073d6b9664024.verified.txt new file mode 100644 index 00000000..40ff0048 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_839073d6b9664024.verified.txt @@ -0,0 +1,245 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | ---------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | ---------------------- | ---------- | ---------------------- | +| Legacy Directives Supervisor | 9.6.2 | Url | The PNG circuit is down, back up the online circuit so we can back up the PNG circuit! | | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Human Program Technician | 2.8.4 | Unknown | | | http://tomasa.info | | | +| Global Division Designer | 8.2.7 | Expression | Try to program the EXE hard drive, maybe it will program the virtual hard drive! | | https://pamela.name | | | +| National Communications Orchestrator | 4.5.1 | Unknown | The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit! | | | | | +| Human Directives Specialist | 4.3.4 | Unknown | Use the digital XSS hard drive, then you can compress the digital hard drive! | You can't generate the card without synthesizing the bluetooth PNG card! | | | | +| Human Optimization Facilitator | 7.4.8 | Overwrite | 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! | https://cooper.name | | | +| Direct Assurance Strategist | 1.3.7 | Expression | The RSS firewall is down, hack the neural firewall so we can hack the RSS firewall! | | | | | +| National Intranet Technician | 8.0.0 | Overwrite | | | | | | +| Senior Brand Analyst | 2.5.0 | Url | | overriding the interface won't do anything, we need to override the virtual THX interface! | | | | +| Internal Solutions Planner | 1.3.8 | Ignored | | The COM application is down, quantify the auxiliary application so we can quantify the COM application! | | Nyah | http://oliver.com | +| | | | | | | Ettie | http://lonny.net | +| | | | | | | Onie | https://cassie.biz | +| | | | | | | Solon | https://buck.biz | +| | | | | | | Taryn | http://hilton.com | +| | | | | | | Isabel | http://rogers.net | +| | | | | | | Bertrand | http://annetta.org | +| | | | | | | Remington | https://efrain.info | +| Internal Directives Designer | 0.4.8 | Url | The EXE protocol is down, reboot the redundant protocol so we can reboot the EXE protocol! | | | | | +| Corporate Tactics Director | 2.5.7 | Url | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | http://marcos.info | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Direct Accountability Assistant | 2.2.8 | Url | bypassing the protocol won't do anything, we need to compress the primary HTTP protocol! | | http://natasha.info | | | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | +| Chief Applications Facilitator | 7.7.6 | Overwrite | | parsing the card won't do anything, we need to synthesize the online SQL card! | | | | +| Forward Functionality Developer | 5.1.1 | Url | | | | | | +| Central Identity Analyst | 8.9.6 | Expression | | | http://leta.org | | | +| Investor Interactions Liaison | 4.4.9 | Overwrite | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | | | | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | | | +| Dynamic Quality Analyst | 0.9.5 | Overwrite | We need to index the optical HTTP application! | I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor! | | | | +| Corporate Directives Planner | 8.8.5 | Unknown | The CSS bus is down, generate the 1080p bus so we can generate the CSS bus! | We need to back up the 1080p SMTP feed! | | | | +| Senior Optimization Assistant | 3.6.0 | Overwrite | | overriding the pixel won't do anything, we need to copy the optical JSON pixel! | http://akeem.info | | | +| Investor Creative Architect | 8.2.4 | Unknown | | | | | | +| Human Operations Assistant | 0.7.2 | Overwrite | Use the haptic USB driver, then you can override the haptic driver! | | http://camila.net | | | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | | | +| Direct Data Orchestrator | 2.4.5 | Expression | | Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor! | | | | +| Customer Security Representative | 3.7.3 | Ignored | The GB circuit is down, hack the redundant circuit so we can hack the GB circuit! | | https://jalon.net | | | +| Legacy Directives Officer | 2.4.4 | Url | | The PCI program is down, hack the multi-byte program so we can hack the PCI program! | http://sedrick.biz | | | +| Investor Intranet Producer | 5.4.1 | Ignored | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | http://hyman.org | | | +| National Creative Engineer | 4.0.0 | Ignored | You can't parse the alarm without overriding the haptic SMTP alarm! | | | Candida | https://craig.biz | +| | | | | | | Timmothy | https://joanny.biz | +| | | | | | | Alfonzo | http://dorothea.org | +| | | | | | | 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 | +| Regional Factors Designer | 7.4.1 | Overwrite | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | | | | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| Chief Division Producer | 2.3.9 | Overwrite | | | | | | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Principal Markets Designer | 3.8.8 | Overwrite | overriding the transmitter won't do anything, we need to generate the cross-platform SCSI transmitter! | | | | | +| Dynamic Optimization Director | 3.4.6 | Ignored | The PNG protocol is down, index the digital protocol so we can index the PNG protocol! | I'll transmit the online SSL feed, that should feed the SSL feed! | https://maximilian.org | | | +| Product Creative Facilitator | 8.4.6 | Unknown | 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://juliana.net | | | +| Human Optimization Producer | 5.0.9 | Overwrite | | | | | | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | | | +| National Creative Coordinator | 5.9.5 | Expression | | | https://bobbie.info | | | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | | | +| Future Accounts Agent | 0.9.7 | Ignored | | | | | | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 Communications Supervisor | 6.0.1 | Ignored | Use the cross-platform SAS feed, then you can bypass the cross-platform feed! | | http://ethan.name | | | +| Investor Research Manager | 6.3.1 | Ignored | | | | | | +| Principal Accounts Coordinator | 1.0.4 | Overwrite | | I'll connect the digital JSON bus, that should bus the JSON bus! | http://rene.com | | | +| Regional Directives Supervisor | 4.9.8 | Ignored | Try to reboot the THX hard drive, maybe it will reboot the open-source hard drive! | Use the primary GB driver, then you can generate the primary driver! | https://malcolm.net | | | +| Senior Security Consultant | 2.7.5 | Unknown | | | http://adelbert.biz | | | +| Regional Operations Coordinator | 0.2.5 | Unknown | | I'll hack the cross-platform SSL array, that should array the SSL array! | http://ena.com | | | +| Human Directives Engineer | 5.3.9 | Url | | | | | | +| Central Web Assistant | 4.2.1 | Unknown | | Use the wireless ADP array, then you can input the wireless array! | https://verda.net | | | +| Global Program Representative | 5.1.0 | Url | | If we back up the monitor, we can get to the PCI monitor through the virtual PCI monitor! | | | | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | http://hanna.net | | | +| Customer Functionality Consultant | 5.5.1 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | http://terence.com | | | +| Senior Factors Administrator | 1.6.1 | Expression | I'll calculate the solid state ADP panel, that should panel the ADP panel! | If we generate the circuit, we can get to the XSS circuit through the primary XSS circuit! | | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Dynamic Division Consultant | 4.8.7 | Overwrite | Use the multi-byte IB microchip, then you can connect the multi-byte microchip! | backing up the feed won't do anything, we need to compress the haptic SMTP feed! | http://raquel.net | | | +| Dynamic Accountability Strategist | 7.0.9 | Unknown | You can't bypass the sensor without transmitting the neural JSON sensor! | | | | | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 Branding Facilitator | 8.3.2 | Ignored | | | | | | +| Chief Brand Associate | 7.6.8 | Ignored | | | https://lauriane.com | Devin | https://ramona.info | +| | | | | | | Alice | http://laverne.info | +| | | | | | | Layne | https://brooks.name | +| | | | | | | Kaitlyn | http://serenity.biz | +| Dynamic Accountability Analyst | 4.9.7 | Overwrite | | | https://jaron.info | | | +| National Applications Designer | 6.4.9 | Expression | | Use the back-end SMS feed, then you can program the back-end feed! | | | | +| International Quality Director | 0.3.8 | Expression | | | | | | +| Global Security Coordinator | 1.7.9 | Ignored | | | https://carol.info | | | +| National Research Facilitator | 6.0.6 | Expression | Use the primary EXE array, then you can navigate the primary array! | | | | | +| Human Group Designer | 9.9.1 | Expression | Use the haptic XSS application, then you can synthesize the haptic application! | If we transmit the hard drive, we can get to the AGP hard drive through the bluetooth AGP hard drive! | http://jodie.org | | | +| Forward Division Strategist | 5.7.1 | Ignored | You can't reboot the program without transmitting the mobile SMTP program! | The SCSI circuit is down, index the open-source circuit so we can index the SCSI circuit! | https://esperanza.name | | | +| Regional Mobility Manager | 2.7.0 | Ignored | | | http://gianni.info | Alvina | http://elouise.name | +| | | | | | | Ron | http://brown.org | +| | | | | | | Cordia | http://ericka.name | +| | | | | | | Eugene | http://rashad.info | +| Corporate Accounts Technician | 5.8.0 | Ignored | | | https://isobel.org | | | +| International Functionality Agent | 8.7.6 | Unknown | | If we hack the card, we can get to the JBOD card through the optical JBOD card! | http://jalyn.org | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | | | +| Lead Branding Developer | 4.1.5 | Url | | | http://abe.com | | | +| Corporate Data Strategist | 9.0.0 | Ignored | | | http://eli.net | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | | | +| Forward Directives Supervisor | 8.7.6 | Ignored | | The SSL microchip is down, hack the optical microchip so we can hack the SSL microchip! | http://shaun.org | Jadon | https://amelia.biz | +| | | | | | | Toni | http://angie.name | +| | | | | | | Ardella | http://melissa.net | +| | | | | | | Sandra | http://pearline.org | +| | | | | | | Noble | https://dusty.net | +| National Creative Assistant | 4.9.0 | Ignored | | If we navigate the pixel, we can get to the SCSI pixel through the bluetooth SCSI pixel! | https://michelle.org | | | +| Lead Usability Assistant | 1.3.4 | Overwrite | quantifying the matrix won't do anything, we need to synthesize the wireless PCI matrix! | Use the solid state SQL firewall, then you can connect the solid state firewall! | https://duane.info | | | +| Human Quality Facilitator | 1.2.0 | Expression | We need to copy the online THX firewall! | You can't calculate the application without calculating the auxiliary AI application! | | | | +| National Directives Analyst | 8.2.7 | Ignored | We need to compress the primary GB array! | | | | | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| Dynamic Factors Facilitator | 6.5.2 | Expression | | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | http://magnolia.com | | | +| Global Mobility Facilitator | 9.5.8 | Expression | | | | | | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | | | +| Chief Intranet Facilitator | 6.6.1 | Expression | | | https://rosalind.net | | | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| Forward Intranet Engineer | 2.5.9 | Expression | The RSS sensor is down, input the 1080p sensor so we can input the RSS sensor! | Try to index the ADP port, maybe it will index the auxiliary port! | | | | +| Corporate Marketing Assistant | 8.7.9 | Url | | You can't program the firewall without connecting the wireless AI firewall! | http://arlene.biz | | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | | | +| Investor Implementation Technician | 2.7.9 | Unknown | | | http://crystal.name | | | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | | | +| Direct Mobility Designer | 7.7.3 | Expression | | | http://geovanny.info | | | +| Customer Metrics Developer | 2.2.9 | Ignored | | | | | | +| Human Response Coordinator | 2.9.7 | Ignored | | | http://ruth.org | | | +| Future Accounts Architect | 9.1.8 | Url | You can't bypass the firewall without indexing the multi-byte COM firewall! | | https://fermin.biz | | | +| Chief Factors Supervisor | 5.2.2 | Expression | | | http://helga.com | | | +| Forward Marketing Orchestrator | 1.6.4 | Overwrite | I'll connect the primary SQL sensor, that should sensor the SQL sensor! | The SMTP driver is down, bypass the mobile driver so we can bypass the SMTP driver! | https://lukas.com | | | +| Legacy Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| International Intranet Planner | 6.4.6 | Url | The IB interface is down, program the redundant interface so we can program the IB interface! | | https://lenna.com | | | +| Dynamic Integration Architect | 1.6.3 | Overwrite | | The RAM feed is down, copy the neural feed so we can copy the RAM feed! | | | | +| Product Assurance Technician | 0.8.2 | Overwrite | | | https://steve.info | | | +| 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 | | | +| International Data Representative | 3.5.7 | Ignored | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | http://dakota.com | | | +| Forward Configuration Supervisor | 9.0.8 | Overwrite | You can't program the protocol without overriding the primary IB protocol! | | http://quinn.name | | | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Central Tactics Engineer | 6.3.5 | Unknown | connecting the bandwidth won't do anything, we need to bypass the multi-byte AI bandwidth! | | | | | +| Regional Paradigm Manager | 8.9.8 | Ignored | | If we transmit the application, we can get to the SMS application through the primary SMS application! | https://eileen.name | | | +| District Operations Director | 0.6.3 | Url | | We need to program the cross-platform FTP hard drive! | https://dejah.net | | | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| National Solutions Associate | 9.1.2 | Overwrite | | | | | | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | ---------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8397a7f0daecdc05.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8397a7f0daecdc05.verified.txt new file mode 100644 index 00000000..fb640b67 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8397a7f0daecdc05.verified.txt @@ -0,0 +1,135 @@ +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Internal Program Designer | 7.2.5 | Ignored | We need to hack the auxiliary COM hard drive! | | | | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| Legacy Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Legacy Usability Coordinator | 5.8.8 | Overwrite | Try to calculate the PNG port, maybe it will calculate the back-end port! | | | http://thora.info | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Senior Solutions Strategist | 7.5.0 | 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 Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| Corporate Accountability Designer | 0.8.0 | Ignored | We need to hack the online FTP application! | | Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn | http://taya.info | Abelardo | http://carolina.name | +| | | | | | | | Lindsey | http://rigoberto.org | +| | | | | | | | Lou | http://darlene.biz | +| | | | | | | | Oliver | https://filomena.com | +| | | | | | | | Vincenzo | https://ulices.biz | +| | | | | | | | Florida | http://jovan.net | +| | | | | | | | Ari | https://chad.com | +| | | | | | | | Yvonne | http://jada.name | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.biz | +| Global Implementation Strategist | 5.9.8 | Ignored | | | Colleen Schroeder,Colleen Schroeder | https://enos.info | | | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Corporate Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | http://celestine.info | Clemens | https://abagail.info | +| | | | | | | | Franz | http://prudence.info | +| | | | | | | | Casper | https://alva.com | +| | | | | | | | Mario | http://alexandria.biz | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_84a0b950fb3481a4.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_84a0b950fb3481a4.verified.txt new file mode 100644 index 00000000..30e6ef98 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_84a0b950fb3481a4.verified.txt @@ -0,0 +1,147 @@ +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| District Mobility Administrator | 3.2.3 | Unknown | | Christopher Dietrich,Christopher Dietrich,Christopher Dietrich,Christopher Dietrich | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Dynamic Group Associate | 6.6.1 | Unknown | We need to input the open-source SMTP bus! | | http://kian.name | Neil | https://burley.info | +| | | | | | | Lemuel | http://brenden.info | +| | | | | | | Agnes | https://urban.org | +| | | | | | | Micheal | https://ida.net | +| | | | | | | Murray | https://samanta.com | +| | | | | | | Assunta | http://florencio.com | +| Future Mobility Strategist | 4.7.6 | Overwrite | Use the virtual ADP bandwidth, then you can calculate the virtual bandwidth! | | http://gerardo.net | Cathy | http://giovanna.info | +| | | | | | | Ike | https://jerome.biz | +| | | | | | | Emerald | https://camren.net | +| | | | | | | Sheila | https://garry.org | +| Future Response Consultant | 9.3.1 | Unknown | | | https://ulices.biz | Ari | https://chad.com | +| | | | | | | Yvonne | http://jada.name | +| | | | | | | Noemie | https://kayley.name | +| | | | | | | Brandon | http://kristopher.name | +| | | | | | | Maggie | http://kimberly.info | +| | | | | | | Veronica | https://mya.net | +| | | | | | | Marty | https://obie.net | +| | | | | | | Braxton | http://flavio.net | +| | | | | | | Jeramie | http://jaycee.net | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Customer Program Consultant | 5.0.4 | Ignored | Try to compress the GB system, maybe it will compress the neural system! | Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan | http://kieran.biz | Bettie | http://edmund.info | +| | | | | | | Sadie | http://horacio.org | +| | | | | | | Loraine | https://sandra.org | +| | | | | | | Emil | http://dayana.net | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Lead Creative Administrator | 9.0.0 | Overwrite | Use the virtual RAM monitor, then you can override the virtual monitor! | | https://roderick.net | Hildegard | http://conner.name | +| | | | | | | 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 | +| | | | | | | Irving | https://sydnie.org | +| Chief Data Director | 2.1.5 | Unknown | Use the haptic PCI bandwidth, then you can generate the haptic bandwidth! | | | Earnestine | http://nathanial.biz | +| | | | | | | Connor | https://augustus.net | +| | | | | | | Araceli | http://hailey.biz | +| | | | | | | Janessa | https://craig.com | +| | | | | | | Erica | http://kristin.org | +| | | | | | | Alek | http://shany.biz | +| | | | | | | Camren | http://joany.info | +| Direct Tactics Technician | 2.8.6 | Unknown | Try to quantify the SAS port, maybe it will quantify the wireless port! | | | Demond | http://stefan.name | +| | | | | | | Norval | http://annie.net | +| | | | | | | Destin | http://penelope.name | +| Future Group Assistant | 1.7.9 | Expression | Use the multi-byte AI port, then you can reboot the multi-byte port! | | | Darien | http://mitchel.biz | +| | | | | | | Carleton | https://madalyn.com | +| | | | | | | Narciso | https://mia.com | +| | | | | | | Nicklaus | https://abelardo.com | +| | | | | | | Carolina | https://lindsey.info | +| | | | | | | Rigoberto | https://lou.biz | +| Product Identity Analyst | 5.9.3 | Expression | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | | Rey | https://connie.info | +| | | | | | | Hollie | http://rico.name | +| | | | | | | Marshall | http://pierce.org | +| | | | | | | 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 | +| Dynamic Integration Assistant | 2.1.6 | Unknown | | | https://gerson.info | | | +| Investor Creative Architect | 4.5.6 | Overwrite | | Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| | | | | | | Retta | https://lottie.biz | +| | | | | | | Yasmine | http://delia.com | +| | | | | | | Khalil | http://jewel.net | +| | | | | | | Roy | https://johanna.org | +| | | | | | | Price | https://itzel.info | +| | | | | | | Dalton | https://daren.info | +| | | | | | | Arnold | http://arlo.org | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| Investor Identity Developer | 4.2.0 | Url | | Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| | | | | | | Keely | http://obie.org | +| | | | | | | Caleigh | https://albin.info | +| | | | | | | Flavie | http://lavonne.biz | +| | | | | | | Kaitlyn | http://osborne.org | +| Corporate Accountability Designer | 0.8.0 | Overwrite | We need to hack the online FTP application! | | http://taya.info | Carlee | http://britney.name | +| | | | | | | Tess | http://julian.biz | +| | | | | | | Isadore | http://billy.net | +| | | | | | | Alice | http://vern.net | +| | | | | | | King | http://trace.net | +| | | | | | | Carmela | https://adolf.info | +| | | | | | | Sherman | http://alec.net | +| | | | | | | Lamar | http://deion.org | +| Product Marketing Developer | 3.3.6 | Unknown | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | Lewis | https://alisa.com | +| | | | | | | Delores | https://layne.name | +| | | | | | | Delphine | https://katlynn.org | +| | | | | | | Meredith | https://johanna.info | +| | | | | | | Jacklyn | https://kadin.com | +| | | | | | | Hardy | https://donna.info | +| Global Infrastructure Developer | 5.5.0 | Url | generating the application won't do anything, we need to calculate the auxiliary JSON application! | Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger | https://austin.net | 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 | +| Internal Solutions Planner | 1.3.8 | Expression | | Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| | | | | | | Mallory | http://angeline.name | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_84ee167c50c5f507.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_84ee167c50c5f507.verified.txt new file mode 100644 index 00000000..3d56f299 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_84ee167c50c5f507.verified.txt @@ -0,0 +1,145 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| Internal Solutions Planner | 1.3.8 | Ignored | | The COM application is down, quantify the auxiliary application so we can quantify the COM application! | | Nyah | http://oliver.com | +| | | | | | | Ettie | http://lonny.net | +| | | | | | | Onie | https://cassie.biz | +| | | | | | | Solon | https://buck.biz | +| | | | | | | Taryn | http://hilton.com | +| | | | | | | Isabel | http://rogers.net | +| | | | | | | Bertrand | http://annetta.org | +| | | | | | | Remington | https://efrain.info | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 Brand Associate | 7.6.8 | Ignored | | | https://lauriane.com | Devin | https://ramona.info | +| | | | | | | Alice | http://laverne.info | +| | | | | | | Layne | https://brooks.name | +| | | | | | | Kaitlyn | http://serenity.biz | +| National Creative Engineer | 4.0.0 | Ignored | You can't parse the alarm without overriding the haptic SMTP alarm! | | | Candida | https://craig.biz | +| | | | | | | Timmothy | https://joanny.biz | +| | | | | | | Alfonzo | http://dorothea.org | +| | | | | | | 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 | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Legacy Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Regional Mobility Manager | 2.7.0 | Ignored | | | http://gianni.info | Alvina | http://elouise.name | +| | | | | | | Ron | http://brown.org | +| | | | | | | Cordia | http://ericka.name | +| | | | | | | Eugene | http://rashad.info | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | +| Forward Directives Supervisor | 8.7.6 | Ignored | | The SSL microchip is down, hack the optical microchip so we can hack the SSL microchip! | http://shaun.org | Jadon | https://amelia.biz | +| | | | | | | Toni | http://angie.name | +| | | | | | | Ardella | http://melissa.net | +| | | | | | | Sandra | http://pearline.org | +| | | | | | | Noble | https://dusty.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8511cfc3fbbf0054.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8511cfc3fbbf0054.verified.txt new file mode 100644 index 00000000..22198345 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8511cfc3fbbf0054.verified.txt @@ -0,0 +1,49 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_851e17497ab0c7ec.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_851e17497ab0c7ec.verified.txt new file mode 100644 index 00000000..cac62e52 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_851e17497ab0c7ec.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | --------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | --------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_853a7e7e815980ad.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_853a7e7e815980ad.verified.txt new file mode 100644 index 00000000..2fe070a7 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_853a7e7e815980ad.verified.txt @@ -0,0 +1,46 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_85468527671693af.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_85468527671693af.verified.txt new file mode 100644 index 00000000..3fccae5c --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_85468527671693af.verified.txt @@ -0,0 +1,108 @@ +| --------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | --------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| --------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | --------------------- | --------- | --------------------- | +| Human Implementation Designer | 8.3.7 | Unknown | Try to navigate the RSS card, maybe it will navigate the haptic card! | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Global Markets Executive | 2.5.8 | Expression | | | | | +| Dynamic Brand Technician | 2.5.6 | Expression | | http://lesly.info | | | +| Internal Accounts Consultant | 6.3.4 | Expression | Try to connect the SMS feed, maybe it will connect the mobile feed! | https://elda.info | | | +| Human Configuration Assistant | 0.1.1 | Unknown | I'll bypass the solid state SMS system, that should system the SMS system! | http://frederick.com | | | +| Regional Interactions Assistant | 8.4.1 | Ignored | I'll hack the optical COM alarm, that should alarm the COM alarm! | | | | +| Chief Solutions Orchestrator | 8.7.8 | Ignored | If we navigate the pixel, we can get to the SCSI pixel through the bluetooth SCSI pixel! | | | | +| Dynamic Configuration Specialist | 8.8.8 | Overwrite | Use the 1080p XML circuit, then you can generate the 1080p circuit! | http://brown.com | | | +| Corporate Creative Liaison | 2.9.9 | Overwrite | | http://albert.org | | | +| National Communications Facilitator | 3.1.0 | Url | quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter! | | | | +| Customer Security Representative | 3.7.3 | Expression | The GB circuit is down, hack the redundant circuit so we can hack the GB circuit! | https://jalon.net | | | +| Principal Intranet Liaison | 5.1.0 | Overwrite | I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor! | http://neva.info | | | +| National Tactics Engineer | 3.7.5 | Url | generating the matrix won't do anything, we need to override the redundant GB matrix! | https://alexys.org | | | +| Global Usability Representative | 3.5.9 | Url | | | | | +| Chief Implementation Assistant | 6.1.2 | Unknown | | http://cathryn.biz | | | +| Dynamic Functionality Consultant | 4.9.1 | Unknown | | https://lonnie.info | | | +| District Factors Producer | 1.6.6 | Unknown | If we reboot the panel, we can get to the THX panel through the solid state THX panel! | | | | +| National Identity Technician | 7.4.9 | Overwrite | Try to parse the SMTP feed, maybe it will parse the multi-byte feed! | https://benedict.org | | | +| Customer Operations Officer | 2.6.0 | Overwrite | Use the bluetooth USB alarm, then you can override the bluetooth alarm! | http://antonette.org | | | +| Lead Tactics Executive | 6.2.9 | Unknown | | https://lowell.org | | | +| Dynamic Applications Director | 5.1.4 | Ignored | | | | | +| Forward Functionality Analyst | 4.5.1 | Expression | | http://orie.name | | | +| International Research Director | 4.1.0 | Url | Try to synthesize the SDD hard drive, maybe it will synthesize the bluetooth hard drive! | | | | +| Human Solutions Assistant | 1.9.8 | Expression | Try to parse the PNG panel, maybe it will parse the haptic panel! | http://carter.info | | | +| Human Accountability Analyst | 0.8.7 | Ignored | parsing the program won't do anything, we need to synthesize the haptic IB program! | | | | +| Internal Division Agent | 2.4.2 | Unknown | | | | | +| Dynamic Configuration Executive | 4.7.6 | Unknown | If we parse the transmitter, we can get to the ADP transmitter through the online ADP transmitter! | | | | +| Customer Integration Agent | 3.6.0 | Expression | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | | | | +| Chief Division Director | 3.4.7 | Unknown | Try to override the CSS microchip, maybe it will override the primary microchip! | http://alejandrin.biz | | | +| Dynamic Mobility Representative | 8.4.2 | Ignored | | http://brooks.info | | | +| District Brand Designer | 3.4.8 | Ignored | Try to quantify the PNG program, maybe it will quantify the online program! | https://josiane.org | | | +| Legacy Data Facilitator | 0.9.0 | Overwrite | bypassing the program won't do anything, we need to bypass the optical AI program! | https://beatrice.net | | | +| Internal Branding Supervisor | 6.7.4 | Url | I'll copy the auxiliary PCI panel, that should panel the PCI panel! | | | | +| Product Implementation Officer | 1.9.9 | Unknown | Try to back up the AGP system, maybe it will back up the 1080p system! | | | | +| Principal Implementation Director | 7.1.6 | Unknown | We need to transmit the auxiliary FTP transmitter! | http://pearlie.org | | | +| Chief Marketing Assistant | 7.3.5 | Expression | | | | | +| Lead Integration Liaison | 1.8.8 | Url | | https://sean.com | | | +| Future Accounts Producer | 9.4.3 | Unknown | You can't override the port without indexing the neural THX port! | | | | +| Global Response Coordinator | 9.7.3 | Overwrite | Use the solid state SQL firewall, then you can connect the solid state firewall! | https://zelda.net | | | +| Internal Infrastructure Strategist | 7.2.2 | Overwrite | I'll transmit the optical XML sensor, that should sensor the XML sensor! | http://ahmad.com | | | +| Direct Assurance Supervisor | 4.1.8 | Overwrite | | https://aniyah.org | | | +| Forward Quality Producer | 6.3.7 | Overwrite | The CSS microchip is down, back up the bluetooth microchip so we can back up the CSS microchip! | https://jayne.name | | | +| Human Usability Associate | 5.2.5 | Expression | You can't override the capacitor without overriding the mobile XML capacitor! | http://hunter.info | | | +| Customer Configuration Manager | 1.6.8 | Unknown | I'll program the online RSS card, that should card the RSS card! | http://sylvan.net | | | +| District Infrastructure Strategist | 9.1.5 | Ignored | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | | | | +| Chief Accounts Associate | 8.5.5 | Unknown | You can't generate the panel without compressing the neural SAS panel! | | | | +| Future Interactions Specialist | 8.8.8 | Ignored | quantifying the application won't do anything, we need to hack the haptic RAM application! | | | | +| Principal Optimization Representative | 0.4.8 | Overwrite | If we index the system, we can get to the XSS system through the cross-platform XSS system! | | | | +| Corporate Paradigm Representative | 7.0.2 | Overwrite | You can't quantify the capacitor without hacking the neural SMS capacitor! | | | | +| Direct Directives Strategist | 7.3.1 | Ignored | | | | | +| Principal Markets Designer | 3.8.8 | Url | overriding the transmitter won't do anything, we need to generate the cross-platform SCSI transmitter! | | | | +| Human Directives Engineer | 5.3.9 | Url | | | | | +| Customer Directives Director | 7.9.2 | Overwrite | Try to hack the COM panel, maybe it will hack the auxiliary panel! | | | | +| Central Marketing Director | 3.2.5 | Overwrite | | https://anibal.net | | | +| Central Integration Analyst | 0.4.0 | Overwrite | If we synthesize the protocol, we can get to the JBOD protocol through the multi-byte JBOD protocol! | https://laverne.name | | | +| Senior Division Liaison | 7.1.3 | Ignored | | | | | +| Human Creative Engineer | 7.5.1 | Unknown | | | | | +| Customer Quality Technician | 9.7.0 | Unknown | If we index the card, we can get to the XSS card through the neural XSS card! | | | | +| Product Applications Assistant | 2.8.4 | Overwrite | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | https://carleton.info | | | +| District Branding Analyst | 1.9.5 | Url | | https://paula.net | | | +| District Intranet Designer | 4.5.0 | Ignored | | | | | +| Human Quality Facilitator | 1.2.0 | Ignored | We need to copy the online THX firewall! | | | | +| National Creative Executive | 7.5.7 | Unknown | | http://mallory.biz | | | +| National Communications Orchestrator | 4.5.1 | Unknown | The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit! | | | | +| Regional Security Architect | 2.2.5 | Url | | | | | +| Corporate Data Strategist | 9.0.0 | Url | | http://eli.net | | | +| Global Security Liaison | 8.1.2 | Expression | | | | | +| Future Markets Architect | 9.0.8 | Overwrite | | | | | +| Dynamic Interactions Facilitator | 6.8.2 | Expression | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | +| Investor Accountability Officer | 2.4.3 | Overwrite | | | | | +| Dynamic Communications Supervisor | 2.6.8 | Overwrite | | https://carol.biz | | | +| District Mobility Administrator | 3.2.3 | Ignored | | | | | +| Central Markets Officer | 6.8.8 | Expression | | | | | +| Investor Usability Officer | 2.5.2 | Ignored | Try to program the XML capacitor, maybe it will program the haptic capacitor! | http://orlo.name | | | +| Central Marketing Technician | 8.7.2 | Overwrite | Use the cross-platform GB capacitor, then you can parse the cross-platform capacitor! | http://albina.org | | | +| National Solutions Associate | 9.1.2 | Expression | | | | | +| Chief Assurance Associate | 3.3.1 | Url | overriding the panel won't do anything, we need to parse the open-source IB panel! | https://tyrese.info | | | +| Regional Solutions Supervisor | 1.8.2 | Ignored | You can't parse the system without compressing the haptic GB system! | https://lance.net | | | +| District Web Developer | 6.1.9 | Unknown | | http://arthur.net | | | +| Principal Web Facilitator | 5.4.5 | Overwrite | compressing the firewall won't do anything, we need to copy the bluetooth COM firewall! | http://paris.name | | | +| Global Usability Producer | 4.9.5 | Expression | If we hack the application, we can get to the PCI application through the 1080p PCI application! | | | | +| Dynamic Functionality Agent | 5.9.5 | Unknown | | http://annabelle.net | | | +| Product Identity Architect | 5.6.4 | Url | The GB bus is down, back up the redundant bus so we can back up the GB bus! | http://darian.org | | | +| Corporate Accountability Representative | 2.3.2 | Unknown | | | | | +| Dynamic Security Technician | 6.8.3 | Unknown | | | | | +| Internal Factors Facilitator | 2.6.3 | Overwrite | | http://melba.name | | | +| Chief Infrastructure Consultant | 4.1.2 | Url | Use the multi-byte IB feed, then you can navigate the multi-byte feed! | https://theron.info | | | +| Senior Identity Specialist | 2.8.9 | Ignored | We need to program the primary THX protocol! | https://kennedy.biz | | | +| Regional Markets Supervisor | 7.7.6 | Expression | If we transmit the system, we can get to the SMTP system through the virtual SMTP system! | | | | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | +| Customer Implementation Director | 5.9.1 | Unknown | | | | | +| Product Quality Analyst | 3.6.5 | Overwrite | You can't parse the port without bypassing the multi-byte GB port! | https://delbert.com | | | +| Chief Mobility Planner | 7.1.0 | Overwrite | | | | | +| Central Interactions Manager | 7.0.9 | Expression | | | | | +| Internal Factors Developer | 3.7.7 | Ignored | | http://santa.name | | | +| International Identity Planner | 4.2.1 | Expression | You can't compress the capacitor without copying the virtual USB capacitor! | | | | +| Forward Identity Orchestrator | 1.3.3 | Ignored | hacking the alarm won't do anything, we need to override the neural SSL alarm! | | | | +| National Tactics Architect | 6.7.8 | Url | We need to parse the auxiliary SAS capacitor! | https://margaret.net | | | +| National Accounts Associate | 2.7.6 | Overwrite | | | | | +| Legacy Functionality Consultant | 8.0.9 | Ignored | Try to generate the SAS matrix, maybe it will generate the cross-platform matrix! | http://emie.info | | | +| --------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | --------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_85583fba2d7081a1.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_85583fba2d7081a1.verified.txt new file mode 100644 index 00000000..175ab01a --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_85583fba2d7081a1.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_85c996d89e36df5c.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_85c996d89e36df5c.verified.txt new file mode 100644 index 00000000..651431ae --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_85c996d89e36df5c.verified.txt @@ -0,0 +1,128 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Creative Architect | 4.5.6 | Overwrite | | The PCI microchip is down, input the cross-platform microchip so we can input the PCI microchip! | If we quantify the transmitter, we can get to the XML transmitter through the optical XML transmitter! | | Selmer | https://jairo.info | +| | | | | | | | Juanita | http://holly.name | +| | | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | | Adalberto | https://sister.biz | +| | | | | | | | Gerald | https://vidal.com | +| | | | | | | | Lucio | http://clemmie.info | +| Dynamic Program Associate | 5.9.7 | Expression | | | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Suzanne | http://ima.name | +| | | | | | | | Earnestine | http://nathanial.biz | +| | | | | | | | Connor | https://augustus.net | +| | | | | | | | Araceli | http://hailey.biz | +| | | | | | | | Janessa | https://craig.com | +| | | | | | | | Erica | http://kristin.org | +| | | | | | | | Alek | http://shany.biz | +| Internal Branding Executive | 2.0.9 | Overwrite | | The SAS sensor is down, input the auxiliary sensor so we can input the SAS sensor! | You can't bypass the application without programming the solid state COM application! | https://efrain.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 | +| Global Optimization Architect | 4.8.0 | Expression | | 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://gaylord.name | Vida | https://theresia.biz | +| | | | | | | | Ransom | http://isom.com | +| | | | | | | | Anastasia | http://kamryn.info | +| | | | | | | | Marlene | https://cyril.name | +| | | | | | | | Zetta | http://pete.org | +| | | | | | | | Candida | https://craig.biz | +| | | | | | | | Timmothy | https://joanny.biz | +| Lead Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Dynamic Data Director | 8.6.8 | Overwrite | | | We need to back up the primary SMTP circuit! | https://timothy.info | Kirsten | http://madisyn.com | +| | | | | | | | Murray | https://destinee.com | +| | | | | | | | Emanuel | https://keely.info | +| | | | | | | | Obie | https://caleigh.net | +| | | | | | | | Albin | http://flavie.com | +| | | | | | | | Lavonne | http://kaitlyn.com | +| | | | | | | | Osborne | https://joesph.name | +| | | | | | | | Michael | https://kali.com | +| Investor Usability Producer | 9.7.6 | Url | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | Jett | https://randal.biz | +| | | | | | | | Leif | http://chaz.name | +| | | | | | | | Tristian | http://susie.com | +| | | | | | | | Carmelo | https://kariane.com | +| | | | | | | | Sofia | http://daphnee.name | +| | | | | | | | Nedra | http://orland.info | +| | | | | | | | Hilton | http://shany.info | +| Regional Paradigm Assistant | 9.8.0 | Url | | If we input the transmitter, we can get to the HDD transmitter through the bluetooth HDD transmitter! | | | Jordan | https://kathryne.name | +| | | | | | | | Mayra | http://lance.name | +| | | | | | | | Jimmie | https://lorine.org | +| | | | | | | | Rebeka | https://malika.org | +| | | | | | | | Trinity | http://fritz.info | +| | | | | | | | Neha | https://marianne.name | +| | | | | | | | Colin | https://billie.biz | +| | | | | | | | Brielle | https://brennon.name | +| | | | | | | | Myriam | https://rosemary.name | +| International Assurance Executive | 2.8.5 | Ignored | The RSS driver is down, transmit the solid state driver so we can transmit the RSS driver! | | We need to parse the optical FTP driver! | http://antonina.com | Alvah | http://otha.name | +| | | | | | | | Natasha | https://nyah.com | +| | | | | | | | Oliver | http://ettie.biz | +| | | | | | | | Lonny | https://onie.org | +| | | | | | | | Cassie | http://solon.net | +| | | | | | | | Buck | http://taryn.com | +| | | | | | | | Hilton | http://isabel.com | +| Chief Data Orchestrator | 4.3.2 | Ignored | | | We need to back up the multi-byte SCSI transmitter! | http://gaylord.com | Taya | http://micaela.biz | +| | | | | | | | Evert | http://tomas.net | +| | | | | | | | Brett | http://virginie.net | +| Human Accounts Executive | 7.6.7 | Unknown | Use the auxiliary PNG interface, then you can generate the auxiliary interface! | | You can't connect the interface without backing up the optical SMTP interface! | http://kristin.net | Seamus | http://maybell.info | +| | | | | | | | Monserrat | http://katrine.name | +| | | | | | | | Abel | https://geovany.com | +| | | | | | | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| Lead Integration Engineer | 8.7.4 | Unknown | | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | http://jackeline.biz | Reanna | http://buck.net | +| | | | | | | | Christine | http://demarco.name | +| | | | | | | | Marge | http://astrid.net | +| | | | | | | | Charlene | http://rod.net | +| Legacy Creative Liaison | 0.4.6 | Expression | | The SMS system is down, back up the open-source system so we can back up the SMS system! | I'll connect the optical FTP program, that should program the FTP program! | | Candice | http://linnea.com | +| | | | | | | | Everardo | http://daryl.net | +| | | | | | | | Jerrod | http://laila.com | +| | | | | | | | Caleigh | https://adolfo.com | +| | | | | | | | Daisha | http://justine.biz | +| | | | | | | | Americo | http://tessie.org | +| | | | | | | | Howard | https://luis.info | +| Corporate Tactics Analyst | 3.0.8 | Overwrite | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | Use the virtual RAM monitor, then you can override the virtual monitor! | | | Hildegard | http://conner.name | +| | | | | | | | 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 | +| | | | | | | | Irving | https://sydnie.org | +| Dynamic Quality Officer | 8.9.2 | Ignored | | | | https://danika.org | Jadon | https://amelia.biz | +| | | | | | | | Toni | http://angie.name | +| | | | | | | | Ardella | http://melissa.net | +| | | | | | | | Sandra | http://pearline.org | +| | | | | | | | Noble | https://dusty.net | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | Edmund | http://sadie.info | +| | | | | | | | Horacio | https://loraine.name | +| | | | | | | | Sandra | https://emil.info | +| | | | | | | | Dayana | https://leila.info | +| | | | | | | | Micah | http://darien.com | +| | | | | | | | Ethel | http://shakira.net | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_869de7bd87f56810.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_869de7bd87f56810.verified.txt new file mode 100644 index 00000000..3c5e66eb --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_869de7bd87f56810.verified.txt @@ -0,0 +1,116 @@ +| ----------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | ---------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | ---------------------- | ---------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Global Optimization Architect | 4.8.0 | Expression | | 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://gaylord.name | Vida | https://theresia.biz | +| | | | | | | | Ransom | http://isom.com | +| | | | | | | | Anastasia | http://kamryn.info | +| | | | | | | | Marlene | https://cyril.name | +| | | | | | | | Zetta | http://pete.org | +| | | | | | | | Candida | https://craig.biz | +| | | | | | | | Timmothy | https://joanny.biz | +| Forward Creative Developer | 9.6.7 | Unknown | | I'll transmit the online SSL feed, that should feed the SSL feed! | We need to synthesize the cross-platform SMS circuit! | http://pearline.com | | | +| 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! | | | | | +| Dynamic Data Director | 8.6.8 | Overwrite | | | We need to back up the primary SMTP circuit! | https://timothy.info | Kirsten | http://madisyn.com | +| | | | | | | | Murray | https://destinee.com | +| | | | | | | | Emanuel | https://keely.info | +| | | | | | | | Obie | https://caleigh.net | +| | | | | | | | Albin | http://flavie.com | +| | | | | | | | Lavonne | http://kaitlyn.com | +| | | | | | | | Osborne | https://joesph.name | +| | | | | | | | Michael | https://kali.com | +| Investor Usability Producer | 9.7.6 | Url | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | Jett | https://randal.biz | +| | | | | | | | Leif | http://chaz.name | +| | | | | | | | Tristian | http://susie.com | +| | | | | | | | Carmelo | https://kariane.com | +| | | | | | | | Sofia | http://daphnee.name | +| | | | | | | | Nedra | http://orland.info | +| | | | | | | | Hilton | http://shany.info | +| Forward Factors Director | 5.7.8 | Expression | | | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | | | +| Dynamic Program Associate | 5.9.7 | Expression | | | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Suzanne | http://ima.name | +| | | | | | | | Earnestine | http://nathanial.biz | +| | | | | | | | Connor | https://augustus.net | +| | | | | | | | Araceli | http://hailey.biz | +| | | | | | | | Janessa | https://craig.com | +| | | | | | | | Erica | http://kristin.org | +| | | | | | | | Alek | http://shany.biz | +| Legacy Creative Liaison | 0.4.6 | Expression | | The SMS system is down, back up the open-source system so we can back up the SMS system! | I'll connect the optical FTP program, that should program the FTP program! | | Candice | http://linnea.com | +| | | | | | | | Everardo | http://daryl.net | +| | | | | | | | Jerrod | http://laila.com | +| | | | | | | | Caleigh | https://adolfo.com | +| | | | | | | | Daisha | http://justine.biz | +| | | | | | | | Americo | http://tessie.org | +| | | | | | | | Howard | https://luis.info | +| Central Marketing Assistant | 9.5.8 | Overwrite | I'll navigate the redundant RAM capacitor, that should capacitor the RAM capacitor! | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | http://julia.biz | | | +| Legacy Research Associate | 9.9.5 | Url | | We need to navigate the bluetooth RAM bus! | | https://hildegard.name | | | +| Internal Branding Executive | 2.0.9 | Overwrite | | The SAS sensor is down, input the auxiliary sensor so we can input the SAS sensor! | You can't bypass the application without programming the solid state COM application! | https://efrain.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 | +| Corporate Tactics Analyst | 3.0.8 | Overwrite | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | Use the virtual RAM monitor, then you can override the virtual monitor! | | | Hildegard | http://conner.name | +| | | | | | | | 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 | +| | | | | | | | Irving | https://sydnie.org | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| District Branding Analyst | 1.9.5 | Unknown | | | | https://paula.net | | | +| Lead Integration Engineer | 8.7.4 | Unknown | | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | http://jackeline.biz | Reanna | http://buck.net | +| | | | | | | | Christine | http://demarco.name | +| | | | | | | | Marge | http://astrid.net | +| | | | | | | | Charlene | http://rod.net | +| Investor Creative Architect | 4.5.6 | Overwrite | | The PCI microchip is down, input the cross-platform microchip so we can input the PCI microchip! | If we quantify the transmitter, we can get to the XML transmitter through the optical XML transmitter! | | Selmer | https://jairo.info | +| | | | | | | | Juanita | http://holly.name | +| | | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | | Adalberto | https://sister.biz | +| | | | | | | | Gerald | https://vidal.com | +| | | | | | | | Lucio | http://clemmie.info | +| Human Accounts Executive | 7.6.7 | Unknown | Use the auxiliary PNG interface, then you can generate the auxiliary interface! | | You can't connect the interface without backing up the optical SMTP interface! | http://kristin.net | Seamus | http://maybell.info | +| | | | | | | | Monserrat | http://katrine.name | +| | | | | | | | Abel | https://geovany.com | +| | | | | | | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Legacy Interactions Analyst | 3.0.8 | Url | hacking the hard drive won't do anything, we need to generate the open-source RSS hard drive! | connecting the system won't do anything, we need to synthesize the mobile ADP system! | | | | | +| Regional Paradigm Assistant | 9.8.0 | Url | | If we input the transmitter, we can get to the HDD transmitter through the bluetooth HDD transmitter! | | | Jordan | https://kathryne.name | +| | | | | | | | Mayra | http://lance.name | +| | | | | | | | Jimmie | https://lorine.org | +| | | | | | | | Rebeka | https://malika.org | +| | | | | | | | Trinity | http://fritz.info | +| | | | | | | | Neha | https://marianne.name | +| | | | | | | | Colin | https://billie.biz | +| | | | | | | | Brielle | https://brennon.name | +| | | | | | | | Myriam | https://rosemary.name | +| National Directives Analyst | 8.2.7 | Overwrite | We need to compress the primary GB array! | | Use the mobile SCSI bus, then you can program the mobile bus! | | | | +| Central Infrastructure Agent | 6.1.6 | Expression | | | You can't quantify the program without overriding the online SDD program! | | | | +| Lead Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Forward Integration Assistant | 4.8.5 | Expression | | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | Edmund | http://sadie.info | +| | | | | | | | Horacio | https://loraine.name | +| | | | | | | | Sandra | https://emil.info | +| | | | | | | | Dayana | https://leila.info | +| | | | | | | | Micah | http://darien.com | +| | | | | | | | Ethel | http://shakira.net | +| Principal Branding Assistant | 8.2.6 | Expression | 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! | We need to hack the auxiliary COM hard drive! | | | | +| ----------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | ---------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_87e21189052a1cf4.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_87e21189052a1cf4.verified.txt new file mode 100644 index 00000000..84add2a0 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_87e21189052a1cf4.verified.txt @@ -0,0 +1,39 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_88229ac990a239df.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_88229ac990a239df.verified.txt new file mode 100644 index 00000000..d6dd8cff --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_88229ac990a239df.verified.txt @@ -0,0 +1,95 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | ---------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | ---------------------- | --------- | --------------------- | +| Product Usability Coordinator | 5.4.7 | Overwrite | The GB panel is down, synthesize the neural panel so we can synthesize the GB panel! | You can't copy the system without indexing the virtual XSS system! | If we override the hard drive, we can get to the RSS hard drive through the multi-byte RSS hard drive! | | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Direct Usability Analyst | 3.4.8 | Overwrite | hacking the protocol won't do anything, we need to bypass the back-end SDD protocol! | Try to quantify the EXE program, maybe it will quantify the auxiliary program! | The FTP program is down, override the digital program so we can override the FTP program! | https://maritza.com | | | +| Dynamic Directives Officer | 5.8.8 | Overwrite | | parsing the program won't do anything, we need to synthesize the haptic IB program! | If we program the microchip, we can get to the SMS microchip through the auxiliary SMS microchip! | http://rafaela.net | | | +| Dynamic Accountability Engineer | 3.1.8 | Url | | Use the online RAM program, then you can generate the online program! | I'll back up the back-end JSON card, that should card the JSON card! | https://gerson.com | | | +| Principal Solutions Facilitator | 7.1.5 | Overwrite | | The RSS pixel is down, calculate the auxiliary pixel so we can calculate the RSS pixel! | | | | | +| Human Accounts Representative | 4.5.5 | Url | | | The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall! | https://darien.net | | | +| Internal Program Administrator | 0.3.5 | Expression | We need to navigate the multi-byte PNG application! | The SMS hard drive is down, parse the mobile hard drive so we can parse the SMS hard drive! | The HTTP bandwidth is down, synthesize the 1080p bandwidth so we can synthesize the HTTP bandwidth! | http://viviane.com | | | +| District Configuration Administrator | 8.4.4 | Url | | The XML transmitter is down, calculate the auxiliary transmitter so we can calculate the XML transmitter! | | https://david.name | | | +| National Directives Analyst | 8.2.7 | Overwrite | We need to compress the primary GB array! | | Use the mobile SCSI bus, then you can program the mobile bus! | | | | +| Regional Configuration Engineer | 7.3.8 | Expression | Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter! | You can't reboot the matrix without navigating the optical SDD matrix! | | http://roman.org | | | +| Lead Factors Designer | 0.9.2 | Url | You can't quantify the bandwidth without calculating the online RAM bandwidth! | | | | | | +| Dynamic Creative Designer | 7.5.8 | Expression | The XML system is down, hack the bluetooth system so we can hack the XML system! | | The GB program is down, program the back-end program so we can program the GB program! | http://daniela.name | | | +| District Data Executive | 9.4.3 | Expression | | The FTP transmitter is down, compress the auxiliary transmitter so we can compress the FTP transmitter! | | | | | +| Product Tactics Technician | 3.8.3 | Overwrite | If we index the protocol, we can get to the FTP protocol through the online FTP protocol! | Try to synthesize the SDD hard drive, maybe it will synthesize the bluetooth hard drive! | | https://jewel.name | | | +| Principal Branding Assistant | 8.2.6 | Expression | 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! | We need to hack the auxiliary COM hard drive! | | | | +| Dynamic Quality Director | 4.9.9 | Unknown | | | | http://jesse.com | | | +| Legacy Interactions Analyst | 3.0.8 | Url | hacking the hard drive won't do anything, we need to generate the open-source RSS hard drive! | connecting the system won't do anything, we need to synthesize the mobile ADP system! | | | | | +| Future Marketing Technician | 7.6.7 | Unknown | | overriding the firewall won't do anything, we need to reboot the open-source COM firewall! | | http://abbey.biz | | | +| International Data Associate | 6.4.8 | Unknown | If we navigate the array, we can get to the SQL array through the 1080p SQL array! | You can't generate the bandwidth without parsing the mobile EXE bandwidth! | | | | | +| Corporate Implementation Technician | 2.8.4 | Url | | If we compress the protocol, we can get to the COM protocol through the mobile COM protocol! | Use the multi-byte SMTP program, then you can synthesize the multi-byte program! | | | | +| District Implementation Orchestrator | 0.1.4 | Url | I'll synthesize the cross-platform CSS panel, that should panel the CSS panel! | You can't navigate the panel without connecting the optical PNG panel! | | | | | +| Lead Intranet Director | 9.2.4 | Url | | You can't parse the bandwidth without transmitting the open-source USB bandwidth! | If we parse the driver, we can get to the GB driver through the neural GB driver! | https://dane.name | | | +| Dynamic Group Producer | 5.9.5 | Unknown | We need to hack the multi-byte EXE bus! | If we connect the program, we can get to the SQL program through the digital SQL program! | | https://sonny.com | | | +| Future Accountability Officer | 2.5.3 | Unknown | | | | http://henderson.biz | | | +| Senior Communications Director | 3.1.0 | Expression | | | I'll quantify the neural SCSI port, that should port the SCSI port! | | | | +| Principal Intranet Manager | 3.8.8 | Expression | | | | | | | +| Direct Creative Planner | 9.7.2 | Unknown | Try to connect the TCP circuit, maybe it will connect the back-end circuit! | synthesizing the circuit won't do anything, we need to override the neural XML circuit! | bypassing the matrix won't do anything, we need to copy the wireless PCI matrix! | | | | +| International Data Coordinator | 1.7.7 | Unknown | | connecting the system won't do anything, we need to navigate the solid state HDD system! | | | | | +| Dynamic Division Agent | 4.2.8 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | https://camilla.info | | | +| Internal Data Designer | 9.5.2 | Unknown | | hacking the card won't do anything, we need to hack the neural COM card! | The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive! | https://liana.com | | | +| Forward Division Strategist | 5.7.1 | Unknown | You can't reboot the program without transmitting the mobile SMTP program! | The SCSI circuit is down, index the open-source circuit so we can index the SCSI circuit! | Use the solid state HTTP microchip, then you can back up the solid state microchip! | https://esperanza.name | | | +| Product Directives Engineer | 8.2.3 | Unknown | transmitting the bus won't do anything, we need to navigate the online IB bus! | | We need to bypass the wireless PNG bus! | | | | +| Future Configuration Officer | 7.6.0 | Expression | You can't compress the alarm without parsing the optical JBOD alarm! | 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! | | | | +| Senior Integration Engineer | 4.4.3 | Url | | | | | | | +| Central Infrastructure Agent | 6.1.6 | Expression | | | You can't quantify the program without overriding the online SDD program! | | | | +| Forward Data Administrator | 9.0.6 | Overwrite | If we navigate the pixel, we can get to the SCSI pixel through the bluetooth SCSI pixel! | I'll program the multi-byte AI transmitter, that should transmitter the AI transmitter! | | https://serenity.info | | | +| Future Solutions Officer | 3.3.5 | Unknown | You can't override the hard drive without bypassing the mobile TCP hard drive! | | Use the online IB protocol, then you can back up the online protocol! | | | | +| Direct Factors Representative | 0.5.2 | Overwrite | You can't override the bandwidth without navigating the auxiliary ADP bandwidth! | backing up the system won't do anything, we need to synthesize the digital AI system! | | | | | +| Forward Web Assistant | 5.9.6 | 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! | The SSL application is down, reboot the bluetooth application so we can reboot the SSL application! | | | | +| Principal Accounts Officer | 2.1.8 | Overwrite | 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 Configuration Coordinator | 2.7.5 | Unknown | connecting the panel won't do anything, we need to bypass the wireless AGP panel! | | | | | | +| District Intranet Engineer | 7.5.5 | Unknown | 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! | | | | | +| Forward Infrastructure Developer | 7.5.6 | Unknown | Try to override the SCSI microchip, maybe it will override the haptic microchip! | programming the monitor won't do anything, we need to parse the online XML monitor! | You can't index the circuit without copying the auxiliary RSS circuit! | | | | +| Global Markets Director | 3.4.9 | Unknown | The RAM card is down, override the open-source card so we can override the RAM card! | | | | | | +| Legacy Research Associate | 9.9.5 | Url | | We need to navigate the bluetooth RAM bus! | | https://hildegard.name | | | +| Direct Data Designer | 8.4.8 | Unknown | | | We need to transmit the virtual JSON bus! | | | | +| Forward Integration Assistant | 4.8.5 | Expression | | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| Human Response Executive | 6.4.4 | Unknown | If we transmit the matrix, we can get to the SDD matrix through the mobile SDD matrix! | | | https://maida.org | | | +| Regional Security Engineer | 5.8.4 | Unknown | | | I'll hack the cross-platform SSL array, that should array the SSL array! | | | | +| Human Program Analyst | 3.1.8 | Expression | If we back up the application, we can get to the USB application through the cross-platform USB application! | | | http://efrain.org | | | +| Forward Creative Developer | 9.6.7 | Unknown | | I'll transmit the online SSL feed, that should feed the SSL feed! | We need to synthesize the cross-platform SMS circuit! | http://pearline.com | | | +| Corporate Identity Coordinator | 9.8.3 | Url | | If we navigate the bus, we can get to the HDD bus through the primary HDD bus! | | | | | +| Human Division Agent | 2.2.7 | Expression | | 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 Quality Analyst | 0.9.5 | Unknown | We need to index the optical HTTP application! | 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! | | | | +| Human Configuration Assistant | 0.1.1 | Overwrite | I'll bypass the solid state SMS system, that should system the SMS system! | | parsing the driver won't do anything, we need to program the auxiliary IB driver! | http://frederick.com | | | +| Forward Optimization Architect | 8.7.9 | Overwrite | | | backing up the feed won't do anything, we need to compress the haptic SMTP feed! | https://kyle.net | | | +| 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 Communications Officer | 3.3.2 | Overwrite | | We need to calculate the redundant THX feed! | | https://cortez.net | | | +| Senior Metrics Assistant | 8.7.4 | Unknown | | 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! | | | | +| Corporate Data Strategist | 9.0.0 | Url | | | Try to transmit the PNG capacitor, maybe it will transmit the solid state capacitor! | http://eli.net | | | +| Internal Factors Designer | 1.9.6 | Url | | | | | | | +| Future Interactions Facilitator | 7.6.9 | Expression | | If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit! | | | | | +| Dynamic Functionality Strategist | 5.8.0 | Url | Use the digital HTTP card, then you can reboot the digital card! | The CSS port is down, quantify the virtual port so we can quantify the CSS port! | | http://filiberto.net | | | +| Forward Factors Director | 5.7.8 | Expression | | | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | | | +| Central Marketing Orchestrator | 3.3.1 | Overwrite | | Try to parse the IB driver, maybe it will parse the 1080p driver! | We need to connect the bluetooth RSS application! | https://brice.net | | | +| National Functionality Orchestrator | 3.5.0 | Overwrite | If we quantify the array, we can get to the RAM array through the virtual RAM array! | overriding the card won't do anything, we need to hack the auxiliary HTTP card! | If we quantify the feed, we can get to the RAM feed through the neural RAM feed! | https://gina.name | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| Investor Accountability Officer | 2.4.3 | Unknown | | Use the digital XSS hard drive, then you can compress the digital hard drive! | You can't generate the card without synthesizing the bluetooth PNG card! | | | | +| Corporate Infrastructure Executive | 4.8.1 | Overwrite | | | Try to index the FTP transmitter, maybe it will index the bluetooth transmitter! | https://justice.info | | | +| District Branding Analyst | 1.9.5 | Unknown | | | | https://paula.net | | | +| Dynamic Factors Facilitator | 6.5.2 | Unknown | | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | | http://magnolia.com | | | +| Internal Division Agent | 2.4.2 | Expression | | Try to compress the TCP microchip, maybe it will compress the auxiliary microchip! | | | | | +| Forward Communications Engineer | 4.5.2 | Overwrite | Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor! | | | | | | +| District Implementation Executive | 3.9.4 | Overwrite | | | | http://fae.org | | | +| Central Creative Analyst | 3.6.4 | Overwrite | | programming the driver won't do anything, we need to calculate the primary SMTP driver! | | | | | +| Legacy Infrastructure Producer | 1.1.2 | Unknown | | If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit! | | | | | +| Central Marketing Assistant | 9.5.8 | Overwrite | I'll navigate the redundant RAM capacitor, that should capacitor the RAM capacitor! | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | http://julia.biz | | | +| Dynamic Security Developer | 0.8.7 | Url | You can't back up the array without parsing the haptic CSS array! | | | https://adan.net | | | +| Direct Web Orchestrator | 1.9.1 | Overwrite | You can't copy the alarm without synthesizing the 1080p IB alarm! | | parsing the card won't do anything, we need to synthesize the online SQL card! | https://kade.com | | | +| Dynamic Applications Producer | 0.4.7 | Url | Try to input the AI sensor, maybe it will input the digital sensor! | If we program the array, we can get to the JBOD array through the primary JBOD array! | | http://horace.com | | | +| International Accounts Liaison | 5.6.7 | Expression | We need to program the virtual SCSI circuit! | We need to generate the auxiliary GB hard drive! | transmitting the port won't do anything, we need to override the haptic JSON port! | | | | +| Human Communications Supervisor | 6.0.1 | Overwrite | Use the cross-platform SAS feed, then you can bypass the cross-platform feed! | | I'll override the neural XML application, that should application the XML application! | http://ethan.name | | | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | ---------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_88cfa8d236a279f8.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_88cfa8d236a279f8.verified.txt new file mode 100644 index 00000000..48ba5db8 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_88cfa8d236a279f8.verified.txt @@ -0,0 +1,49 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_88f1ccc53f8f1e77.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_88f1ccc53f8f1e77.verified.txt new file mode 100644 index 00000000..7f86595e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_88f1ccc53f8f1e77.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Future Integration Analyst | 9.0.4 | Expression | | | Abner | http://tavares.info | +| | | | | | Johann | http://andres.net | +| | | | | | Jaquan | http://carey.org | +| | | | | | Arvel | http://mortimer.org | +| | | | | | Alicia | http://paula.com | +| | | | | | Heidi | http://letha.name | +| | | | | | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Paige | https://remington.info | +| | | | | | Aletha | https://isobel.info | +| | | | | | Pearline | https://johnathon.info | +| | | | | | Eleanora | http://jaeden.info | +| | | | | | Nikolas | https://daphney.net | +| | | | | | Oceane | http://clifton.com | +| | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | http://marina.com | Myles | http://nikko.name | +| | | | | | Rolando | http://nikko.name | +| | | | | | Pamela | https://aliza.net | +| | | | | | Marcella | http://helga.net | +| | | | | | Alisha | http://alyson.name | +| | | | | | Carmelo | http://michele.name | +| | | | | | Miles | https://freddie.com | +| | | | | | Kade | https://jaunita.biz | +| | | | | | Marcelina | http://donna.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_890b856f9fa9101f.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_890b856f9fa9101f.verified.txt new file mode 100644 index 00000000..d360f48e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_890b856f9fa9101f.verified.txt @@ -0,0 +1,121 @@ +| ------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | -------- | ---------------------- | +| National Creative Analyst | 6.3.1 | Expression | | The SSL feed is down, back up the cross-platform feed so we can back up the SSL feed! | | | | | | +| 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Chief Markets Executive | 1.5.7 | Ignored | | | | | | | | +| Direct Applications Assistant | 3.5.8 | Unknown | The PCI pixel is down, synthesize the multi-byte pixel so we can synthesize the PCI pixel! | If we back up the driver, we can get to the TCP driver through the redundant TCP driver! | We need to back up the 1080p COM interface! | | http://consuelo.info | | | +| Internal Program Engineer | 2.9.3 | Expression | I'll input the neural SQL application, that should application the SQL application! | You can't generate the hard drive without transmitting the haptic RAM hard drive! | I'll bypass the optical AGP feed, that should feed the AGP feed! | | http://cleta.org | | | +| Global Optimization Engineer | 8.7.9 | Ignored | | quantifying the transmitter won't do anything, we need to synthesize the auxiliary FTP transmitter! | If we synthesize the port, we can get to the HTTP port through the auxiliary HTTP port! | | http://aniya.org | | | +| Forward Research Associate | 3.4.7 | Url | | You can't navigate the capacitor without programming the solid state SQL capacitor! | | | | | | +| Forward Communications Director | 6.0.8 | Overwrite | Try to override the AI alarm, maybe it will override the online alarm! | We need to quantify the virtual TCP card! | | Kristin Bernhard,Kristin Bernhard | | | | +| Future Tactics Specialist | 0.2.2 | Overwrite | We need to override the primary SQL pixel! | We need to transmit the redundant EXE driver! | You can't calculate the hard drive without hacking the multi-byte FTP hard drive! | | | | | +| Regional Communications Strategist | 9.3.1 | Url | overriding the matrix won't do anything, we need to back up the solid state IB matrix! | Try to index the HDD panel, maybe it will index the haptic panel! | We need to index the bluetooth JSON pixel! | | http://eloisa.biz | | | +| Global Usability Manager | 9.1.0 | Overwrite | | Try to back up the THX interface, maybe it will back up the auxiliary interface! | | | http://vella.com | | | +| International Optimization Supervisor | 9.5.8 | Ignored | | | | | https://roman.com | | | +| International Intranet Officer | 3.6.7 | Ignored | You can't transmit the pixel without quantifying the mobile AGP pixel! | transmitting the matrix won't do anything, we need to connect the haptic SCSI matrix! | You can't generate the firewall without backing up the primary HTTP firewall! | Ramona Erdman,Ramona Erdman | http://mack.net | | | +| Global Configuration Consultant | 5.9.5 | Expression | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | bypassing the bus won't do anything, we need to calculate the virtual GB bus! | | Guadalupe Littel,Guadalupe Littel,Guadalupe Littel | | | | +| Lead Configuration Liaison | 1.8.9 | Expression | | connecting the transmitter won't do anything, we need to program the cross-platform XSS transmitter! | | | http://esther.biz | | | +| Forward Branding Strategist | 4.6.2 | Overwrite | | | The THX hard drive is down, compress the back-end hard drive so we can compress the THX hard drive! | | | | | +| Central Tactics Director | 4.6.7 | Url | backing up the system won't do anything, we need to parse the neural CSS system! | We need to transmit the back-end RSS transmitter! | | Doyle Osinski,Doyle Osinski,Doyle Osinski,Doyle Osinski | https://valentina.net | | | +| Human Group Agent | 3.2.2 | Url | | | generating the interface won't do anything, we need to hack the optical PCI interface! | Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser | https://vilma.com | | | +| Senior Brand Officer | 9.3.6 | Url | If we override the system, we can get to the HDD system through the haptic HDD system! | If we parse the bus, we can get to the XML bus through the solid state XML bus! | | | http://carol.name | | | +| Customer Interactions Representative | 0.8.8 | Url | We need to quantify the digital SSL array! | | | | http://heather.name | | | +| Regional Configuration Engineer | 7.3.8 | Expression | Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter! | You can't reboot the matrix without navigating the optical SDD matrix! | | | http://roman.org | | | +| Regional Factors Designer | 7.4.1 | Url | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | Use the haptic RSS port, then you can transmit the haptic port! | Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus | | | | +| Human Accountability Developer | 6.9.0 | Unknown | If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit! | | | | | | | +| Product Tactics Engineer | 5.6.9 | Overwrite | Use the online TCP driver, then you can navigate the online driver! | I'll transmit the open-source HTTP pixel, that should pixel the HTTP pixel! | transmitting the program won't do anything, we need to generate the multi-byte SAS program! | Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich | | | | +| International Marketing Officer | 7.2.8 | Expression | | | | Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk | | | | +| Corporate Intranet Agent | 9.1.8 | Url | We need to compress the 1080p GB circuit! | | The PCI driver is down, reboot the haptic driver so we can reboot the PCI driver! | Essie Hamill,Essie Hamill | http://precious.name | | | +| Senior Metrics Engineer | 8.3.4 | Overwrite | | Try to quantify the FTP bus, maybe it will quantify the optical bus! | | Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand | http://lou.net | | | +| Investor Usability Officer | 2.5.2 | Unknown | Try to program the XML capacitor, maybe it will program the haptic capacitor! | Use the optical SSL alarm, then you can bypass the optical alarm! | | Johnny Bernier | http://orlo.name | | | +| Principal Web Associate | 4.2.5 | Expression | | | If we index the hard drive, we can get to the XSS hard drive through the primary XSS hard drive! | Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles | | | | +| Central Factors Supervisor | 0.8.3 | Overwrite | If we transmit the monitor, we can get to the HTTP monitor through the digital HTTP monitor! | Use the optical IB transmitter, then you can navigate the optical transmitter! | If we back up the firewall, we can get to the TCP firewall through the multi-byte TCP firewall! | Kathleen Blick,Kathleen Blick,Kathleen Blick,Kathleen Blick,Kathleen Blick | http://clement.name | | | +| Direct Applications Designer | 1.5.1 | Unknown | | We need to connect the haptic TCP panel! | If we bypass the card, we can get to the HDD card through the auxiliary HDD card! | Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling | http://tito.name | | | +| International Branding Associate | 4.9.4 | Url | | 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://trinity.name | | | +| Global Configuration Strategist | 1.4.4 | Ignored | | | | Vickie Sipes | https://marilyne.com | | | +| Global Solutions Administrator | 5.2.4 | Overwrite | We need to calculate the online SAS bandwidth! | If we index the bus, we can get to the CSS bus through the optical CSS bus! | | Nellie Oberbrunner | https://hailee.biz | | | +| Corporate Optimization Agent | 2.7.0 | Ignored | | | | | http://bryce.com | | | +| Lead Program Engineer | 4.5.7 | Overwrite | | The PCI protocol is down, calculate the bluetooth protocol so we can calculate the PCI protocol! | | | | | | +| Corporate Division Executive | 4.7.8 | Url | I'll index the neural SDD bus, that should bus the SDD bus! | If we reboot the program, we can get to the SSL program through the primary SSL program! | | Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros | http://wilmer.com | | | +| National Solutions Representative | 5.6.2 | Overwrite | | | You can't synthesize the bandwidth without programming the solid state XSS bandwidth! | | | | | +| Legacy Solutions Architect | 7.9.3 | Url | | Try to input the AI sensor, maybe it will input the digital sensor! | If we program the array, we can get to the JBOD array through the primary JBOD array! | | | | | +| National Creative Officer | 5.5.6 | Overwrite | indexing the capacitor won't do anything, we need to reboot the redundant FTP capacitor! | | The TCP array is down, bypass the mobile array so we can bypass the TCP array! | | http://orpha.name | | | +| Customer Branding Engineer | 7.9.7 | Ignored | Try to input the TCP sensor, maybe it will input the haptic sensor! | If we navigate the microchip, we can get to the SMS microchip through the redundant SMS microchip! | compressing the system won't do anything, we need to synthesize the redundant ADP system! | Randall Haley,Randall Haley,Randall Haley,Randall Haley,Randall Haley,Randall Haley,Randall Haley,Randall Haley,Randall Haley,Randall Haley | | | | +| Forward Tactics Planner | 5.4.6 | Url | I'll input the primary GB port, that should port the GB port! | | 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 | https://caterina.info | | | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| Regional Brand Associate | 4.0.9 | Expression | | | I'll program the wireless HDD pixel, that should pixel the HDD pixel! | | | | | +| Legacy Intranet Planner | 8.3.2 | Expression | Use the bluetooth AI bandwidth, then you can transmit the bluetooth bandwidth! | | | | http://nathanael.name | | | +| Investor Optimization Executive | 1.6.1 | Ignored | | | Use the auxiliary AGP matrix, then you can generate the auxiliary matrix! | Willard Abshire | http://adalberto.info | | | +| Dynamic Paradigm Officer | 2.3.4 | Overwrite | | | | | https://charity.biz | | | +| Central Marketing Orchestrator | 3.3.1 | Ignored | | Try to parse the IB driver, maybe it will parse the 1080p driver! | We need to connect the bluetooth RSS application! | Kelly Herman,Kelly Herman,Kelly Herman,Kelly Herman,Kelly Herman,Kelly Herman,Kelly Herman,Kelly Herman,Kelly Herman | https://brice.net | | | +| Corporate Program Associate | 5.2.5 | Overwrite | | | overriding the interface won't do anything, we need to override the virtual THX interface! | | | | | +| Forward Usability Developer | 6.9.1 | Overwrite | | | You can't connect the protocol without overriding the redundant RSS protocol! | | | | | +| Central Functionality Technician | 3.9.3 | Url | | | The AI microchip is down, override the multi-byte microchip so we can override the AI microchip! | | | | | +| Investor Applications Executive | 9.9.5 | Ignored | The AI application is down, connect the open-source application so we can connect the AI application! | | Use the redundant TCP circuit, then you can calculate the redundant circuit! | | https://xander.com | | | +| International Marketing Officer | 2.2.1 | Overwrite | If we connect the driver, we can get to the XSS driver through the online XSS driver! | | | | https://weldon.info | | | +| Chief Response Strategist | 8.0.4 | Url | | The RSS alarm is down, compress the mobile alarm so we can compress the RSS alarm! | Use the 1080p PNG application, then you can calculate the 1080p application! | Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann | | | | +| Forward Directives Representative | 0.5.1 | Url | | parsing the panel won't do anything, we need to calculate the digital SMTP panel! | | Theresa Heathcote,Theresa Heathcote,Theresa Heathcote,Theresa Heathcote,Theresa Heathcote,Theresa Heathcote | https://cleve.biz | | | +| Internal Factors Facilitator | 2.6.3 | Url | | Try to copy the PNG sensor, maybe it will copy the 1080p sensor! | | Mable Kris,Mable Kris,Mable Kris,Mable Kris,Mable Kris | http://melba.name | | | +| District Integration Designer | 6.2.2 | Expression | | You can't connect the port without connecting the back-end COM port! | | Ignacio Hane,Ignacio Hane | https://cindy.org | | | +| Senior Operations Assistant | 2.4.2 | Expression | | If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth! | | Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva | https://hector.info | | | +| Dynamic Tactics Facilitator | 0.7.3 | Unknown | | | The SSL port is down, bypass the haptic port so we can bypass the SSL port! | | | | | +| Corporate Intranet Facilitator | 2.8.8 | Ignored | If we program the feed, we can get to the CSS feed through the solid state CSS feed! | Use the redundant GB driver, then you can connect the redundant driver! | | Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser | http://isabella.name | | | +| Future Accounts Designer | 5.1.9 | Expression | We need to navigate the wireless SAS pixel! | | | | | | | +| Internal Solutions Director | 8.4.4 | Unknown | | | | | | | | +| Customer Metrics Analyst | 6.7.1 | Unknown | | | | | | | | +| District Creative Designer | 1.4.6 | Url | We need to program the haptic IB panel! | | | | http://cameron.info | | | +| Dynamic Factors Producer | 5.7.1 | Url | | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | | | | | +| Senior Research Liaison | 5.0.6 | Overwrite | If we compress the system, we can get to the AGP system through the multi-byte AGP system! | I'll hack the optical XSS monitor, that should monitor the XSS monitor! | | | http://clair.biz | | | +| Forward Program Officer | 4.2.4 | Url | quantifying the capacitor won't do anything, we need to override the open-source AI capacitor! | indexing the port won't do anything, we need to back up the virtual AGP port! | calculating the bus won't do anything, we need to generate the online CSS bus! | Leon Mayer,Leon Mayer | | | | +| Dynamic Configuration Administrator | 4.3.8 | Url | | | Use the redundant AGP microchip, then you can override the redundant microchip! | Roberto Deckow,Roberto Deckow,Roberto Deckow | | | | +| Chief Paradigm Supervisor | 4.3.3 | Url | | | We need to bypass the wireless XML pixel! | Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins | https://zion.info | | | +| Investor Interactions Designer | 1.9.4 | Url | | | parsing the card won't do anything, we need to synthesize the online SQL card! | Stella Barton,Stella Barton | https://octavia.name | | | +| National Factors Administrator | 8.1.4 | Unknown | | | | | http://janelle.name | | | +| Global Markets Administrator | 8.6.8 | Expression | 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! | The SSL application is down, reboot the bluetooth application so we can reboot the SSL application! | Julius Bernhard,Julius Bernhard,Julius Bernhard,Julius Bernhard | https://lois.biz | | | +| Corporate Intranet Associate | 7.5.1 | Overwrite | | 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! | | | | | +| Customer Group Agent | 0.9.9 | Ignored | | If we override the sensor, we can get to the COM sensor through the 1080p COM sensor! | I'll generate the auxiliary HTTP microchip, that should microchip the HTTP microchip! | | | | | +| Legacy Communications Engineer | 7.8.1 | Expression | | I'll synthesize the haptic THX hard drive, that should hard drive the THX hard drive! | The ADP hard drive is down, input the back-end hard drive so we can input the ADP hard drive! | Hilda Kub,Hilda Kub,Hilda Kub,Hilda Kub,Hilda Kub | | | | +| Forward Paradigm Developer | 7.9.7 | Overwrite | The GB interface is down, input the auxiliary interface so we can input the GB interface! | The XSS transmitter is down, back up the online transmitter so we can back up the XSS transmitter! | | Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter | http://maureen.name | | | +| National Infrastructure Architect | 6.6.7 | Unknown | | If we bypass the hard drive, we can get to the EXE hard drive through the bluetooth EXE hard drive! | | Howard Rath,Howard Rath,Howard Rath,Howard Rath | http://darlene.net | | | +| National Implementation Agent | 5.6.8 | Expression | | | Use the multi-byte PNG circuit, then you can navigate the multi-byte circuit! | Ira Hermiston,Ira Hermiston,Ira Hermiston,Ira Hermiston | http://rex.biz | | | +| Senior Brand Agent | 3.1.9 | Url | generating the alarm won't do anything, we need to parse the virtual XSS alarm! | | I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth! | | https://lina.info | | | +| Direct Group Liaison | 3.5.1 | Overwrite | We need to parse the haptic SMS monitor! | | We need to program the auxiliary JBOD circuit! | | | | | +| Legacy Marketing Designer | 4.5.9 | Expression | | You can't bypass the microchip without parsing the back-end JBOD microchip! | You can't bypass the alarm without generating the back-end HTTP alarm! | | http://lexi.net | | | +| Chief Functionality Planner | 5.1.2 | Unknown | | I'll calculate the 1080p HDD system, that should system the HDD system! | | Matt Mills,Matt Mills | http://myrtice.com | | | +| Internal Operations Producer | 5.8.9 | Overwrite | | Use the online SMTP pixel, then you can index the online pixel! | | | | | | +| Corporate Infrastructure Executive | 4.8.1 | Unknown | | | Try to index the FTP transmitter, maybe it will index the bluetooth transmitter! | Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist | https://justice.info | | | +| Lead Optimization Analyst | 2.1.7 | Expression | Use the wireless XSS bandwidth, then you can program the wireless bandwidth! | The SDD hard drive is down, copy the virtual hard drive so we can copy the SDD hard drive! | | Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson | https://madge.info | | | +| Lead Identity Developer | 7.1.0 | Url | | compressing the bandwidth won't do anything, we need to bypass the primary RAM bandwidth! | | | https://eve.com | | | +| National Security Orchestrator | 3.5.6 | Expression | Try to copy the HDD array, maybe it will copy the back-end array! | 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! | Roderick Koelpin,Roderick Koelpin,Roderick Koelpin | | | | +| Future Markets Architect | 7.2.2 | Overwrite | If we synthesize the port, we can get to the CSS port through the online CSS port! | synthesizing the panel won't do anything, we need to transmit the neural THX panel! | | Gerald Cruickshank,Gerald Cruickshank,Gerald Cruickshank | https://maxime.info | | | +| Dynamic Configuration Specialist | 3.6.8 | Overwrite | | Use the haptic AGP protocol, then you can program the haptic protocol! | | Meredith Sawayn,Meredith Sawayn,Meredith Sawayn,Meredith Sawayn,Meredith Sawayn,Meredith Sawayn | | | | +| Senior Quality Executive | 4.4.8 | Url | I'll quantify the solid state THX feed, that should feed the THX feed! | Use the online RAM array, then you can index the online array! | You can't reboot the transmitter without transmitting the online ADP transmitter! | | http://khalid.com | | | +| Principal Identity Designer | 4.7.0 | Ignored | | | compressing the sensor won't do anything, we need to index the mobile ADP sensor! | | https://brock.net | | | +| Dynamic Configuration Assistant | 3.2.1 | Expression | | 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 Markets Assistant | 5.9.9 | Ignored | The JSON hard drive is down, copy the digital hard drive so we can copy the JSON hard drive! | | | Cecilia Runolfsdottir,Cecilia Runolfsdottir,Cecilia Runolfsdottir,Cecilia Runolfsdottir,Cecilia Runolfsdottir,Cecilia Runolfsdottir,Cecilia Runolfsdottir | http://cullen.net | | | +| Human Program Technician | 2.8.4 | Overwrite | | | | Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill | http://tomasa.info | | | +| Human Program Orchestrator | 5.2.4 | Url | Use the cross-platform EXE microchip, then you can quantify the cross-platform microchip! | | bypassing the bandwidth won't do anything, we need to copy the mobile JBOD bandwidth! | | | | | +| District Optimization Coordinator | 0.3.2 | Ignored | | If we back up the hard drive, we can get to the SCSI hard drive through the neural SCSI hard drive! | | David Ullrich,David Ullrich,David Ullrich,David Ullrich,David Ullrich,David Ullrich,David Ullrich | | | | +| International Branding Producer | 3.8.2 | Expression | We need to generate the solid state AGP microchip! | | | | | | | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Chief Program Director | 8.8.8 | Overwrite | If we parse the protocol, we can get to the IB protocol through the wireless IB protocol! | | Use the primary SCSI matrix, then you can program the primary matrix! | | | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Interactions Officer | 8.8.5 | Overwrite | | | Try to program the RAM bandwidth, maybe it will program the optical bandwidth! | | | | | +| Principal Optimization Administrator | 9.6.7 | Ignored | The XML card is down, bypass the back-end card so we can bypass the XML card! | | | | https://franz.biz | | | +| International Paradigm Analyst | 7.0.8 | Ignored | Try to compress the USB hard drive, maybe it will compress the neural hard drive! | We need to parse the solid state TCP interface! | The COM circuit is down, override the primary circuit so we can override the COM circuit! | Wilbert Willms,Wilbert Willms,Wilbert Willms,Wilbert Willms,Wilbert Willms,Wilbert Willms,Wilbert Willms,Wilbert Willms,Wilbert Willms | https://noemie.biz | | | +| ------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_898b2c5c4dc3741c.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_898b2c5c4dc3741c.verified.txt new file mode 100644 index 00000000..9d8057e7 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_898b2c5c4dc3741c.verified.txt @@ -0,0 +1,114 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------- | ---------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_89a445a356f7aaed.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_89a445a356f7aaed.verified.txt new file mode 100644 index 00000000..367039ee --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_89a445a356f7aaed.verified.txt @@ -0,0 +1,113 @@ +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Global Paradigm Assistant | 8.0.5 | Expression | We need to calculate the solid state HTTP hard drive! | | | https://randy.org | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Regional Metrics Strategist | 1.2.1 | Unknown | | Try to override the GB driver, maybe it will override the digital driver! | | | | | +| Principal Intranet Architect | 4.9.3 | Unknown | | | | | | | +| Senior Configuration Developer | 4.0.9 | Url | Use the primary SCSI matrix, then you can program the primary matrix! | If we parse the interface, we can get to the JSON interface through the mobile JSON interface! | Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle | | | | +| District Interactions Supervisor | 4.5.2 | Url | The XSS capacitor is down, generate the bluetooth capacitor so we can generate the XSS capacitor! | The ADP firewall is down, input the primary firewall so we can input the ADP firewall! | | | | | +| Future Tactics Assistant | 1.5.5 | Expression | The IB sensor is down, reboot the virtual sensor so we can reboot the IB sensor! | If we calculate the matrix, we can get to the SMS matrix through the bluetooth SMS matrix! | | https://giovanny.net | | | +| Lead Program Technician | 5.8.9 | Expression | | We need to transmit the back-end AGP sensor! | Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer | http://curtis.org | | | +| Future Research Planner | 8.8.9 | Ignored | | | | https://yvette.com | | | +| Forward Usability Specialist | 5.6.9 | Overwrite | I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth! | | | | | | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | | | +| Direct Brand Director | 4.7.4 | Url | You can't navigate the capacitor without programming the solid state SQL capacitor! | | | | | | +| International Division Architect | 8.2.4 | Ignored | | | Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins | http://murphy.name | | | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | | | +| Internal Program Designer | 7.2.5 | Ignored | We need to hack the auxiliary COM hard drive! | | | | | | +| Customer Solutions Officer | 4.5.2 | Expression | You can't copy the matrix without compressing the wireless AGP matrix! | | | https://rylan.name | | | +| Global Optimization Engineer | 8.7.9 | Expression | | quantifying the transmitter won't do anything, we need to synthesize the auxiliary FTP transmitter! | | http://aniya.org | | | +| National Assurance Planner | 2.7.7 | Unknown | | I'll reboot the online AGP alarm, that should alarm the AGP alarm! | Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag | | | | +| Investor Accounts Facilitator | 7.7.8 | Expression | | | Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman | http://scottie.biz | | | +| Customer Division Manager | 1.3.9 | Ignored | 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! | Rafael Altenwerth,Rafael Altenwerth,Rafael Altenwerth | | | | +| Direct Division Officer | 6.5.6 | Url | transmitting the protocol won't do anything, we need to generate the multi-byte THX protocol! | | Glenda Schuppe,Glenda Schuppe | http://catherine.name | | | +| Legacy Interactions Supervisor | 9.7.2 | Ignored | | Try to generate the SAS matrix, maybe it will generate the cross-platform matrix! | Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn | | | | +| International Optimization Coordinator | 6.5.5 | Ignored | | | Darnell Terry | http://antoinette.org | | | +| Regional Functionality Agent | 5.9.9 | Overwrite | We need to index the 1080p SAS hard drive! | I'll connect the digital JBOD application, that should application the JBOD application! | Gloria Williamson,Gloria Williamson,Gloria Williamson,Gloria Williamson | http://arthur.net | | | +| Product Solutions Manager | 9.5.2 | Overwrite | I'll hack the primary SDD card, that should card the SDD card! | hacking the transmitter won't do anything, we need to index the open-source CSS transmitter! | Sergio Bailey,Sergio Bailey,Sergio Bailey | | | | +| Future Identity Agent | 8.8.0 | Ignored | I'll parse the 1080p USB protocol, that should protocol the USB protocol! | | | https://reva.name | | | +| Investor Quality Associate | 0.5.1 | Expression | | Try to reboot the SSL alarm, maybe it will reboot the solid state alarm! | Carrie Hansen,Carrie Hansen,Carrie Hansen,Carrie Hansen | https://ezequiel.biz | | | +| Senior Paradigm Analyst | 1.1.1 | Ignored | | If we navigate the alarm, we can get to the XML alarm through the cross-platform XML alarm! | | | | | +| Dynamic Branding Manager | 1.4.0 | Overwrite | You can't navigate the application without generating the cross-platform COM application! | Try to program the FTP alarm, maybe it will program the virtual alarm! | | http://dario.info | | | +| Chief Factors Developer | 5.9.5 | Url | | Try to connect the ADP system, maybe it will connect the solid state system! | Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady | | | | +| Principal Operations Assistant | 0.9.0 | Url | I'll copy the auxiliary HDD bus, that should bus the HDD bus! | I'll copy the digital USB circuit, that should circuit the USB circuit! | | | | | +| Dynamic Data Technician | 4.2.3 | Url | I'll copy the optical RAM feed, that should feed the RAM feed! | | June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds | http://nia.info | | | +| Corporate Intranet Specialist | 3.5.6 | Expression | | | Edmund Lehner,Edmund Lehner,Edmund Lehner,Edmund Lehner | | | | +| Customer Communications Engineer | 6.9.4 | Overwrite | | | Tanya Reinger,Tanya Reinger,Tanya Reinger | http://tito.name | | | +| Central Division Administrator | 1.0.4 | Overwrite | We need to program the optical COM microchip! | We need to hack the haptic SAS microchip! | | | | | +| Future Configuration Officer | 7.6.0 | Unknown | You can't compress the alarm without parsing the optical JBOD alarm! | I'll compress the back-end SSL system, that should system the SSL system! | Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie | | | | +| Regional Optimization Administrator | 3.6.4 | Expression | | I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive! | | http://serenity.info | | | +| Global Optimization Architect | 1.5.0 | Unknown | Try to navigate the SCSI sensor, maybe it will navigate the mobile sensor! | | | | | | +| Customer Program Developer | 2.9.8 | Expression | | You can't transmit the pixel without calculating the bluetooth FTP pixel! | | http://lenora.com | | | +| District Assurance Technician | 8.5.5 | Overwrite | | | | http://zander.com | | | +| Future Tactics Specialist | 0.2.2 | Ignored | We need to override the primary SQL pixel! | We need to transmit the redundant EXE driver! | Alejandro Cruickshank,Alejandro Cruickshank,Alejandro Cruickshank,Alejandro Cruickshank | | | | +| Central Research Technician | 2.8.8 | Url | | You can't generate the program without connecting the bluetooth USB program! | | | | | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| Human Markets Planner | 5.0.1 | Expression | Try to back up the COM driver, maybe it will back up the bluetooth driver! | | | | | | +| Corporate Marketing Coordinator | 3.6.1 | Overwrite | | | | https://marcos.org | | | +| Legacy Security Facilitator | 1.9.0 | Expression | | Use the cross-platform ADP alarm, then you can back up the cross-platform alarm! | | https://edythe.info | | | +| Customer Metrics Developer | 2.2.9 | Ignored | | | Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir | | | | +| Human Identity Representative | 4.1.5 | Overwrite | The SAS bus is down, program the neural bus so we can program the SAS bus! | | Joyce Auer,Joyce Auer,Joyce Auer | http://alyce.biz | | | +| Principal Brand Executive | 7.2.7 | Unknown | | | | https://dariana.com | | | +| Global Identity Supervisor | 0.9.1 | Overwrite | | | | | | | +| Dynamic Division Representative | 7.3.5 | Unknown | | I'll index the haptic FTP alarm, that should alarm the FTP alarm! | Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson | http://taurean.net | | | +| Dynamic Security Director | 0.0.2 | Url | transmitting the feed won't do anything, we need to navigate the redundant SDD feed! | Try to parse the HTTP port, maybe it will parse the bluetooth port! | Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block | | | | +| Lead Solutions Technician | 1.5.7 | Unknown | | | | | | | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | | | +| Customer Branding Orchestrator | 8.3.7 | Overwrite | | We need to bypass the neural USB capacitor! | Nora Dietrich | http://nona.com | | | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | | | +| Central Implementation Planner | 7.6.0 | Ignored | | Try to generate the HDD panel, maybe it will generate the solid state panel! | | | | | +| Human Tactics Facilitator | 5.7.0 | Url | Try to bypass the HTTP application, maybe it will bypass the digital application! | | | | | | +| District Optimization Technician | 5.2.3 | Overwrite | | | Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti | https://douglas.info | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | | | +| International Tactics Administrator | 9.9.9 | Url | | | | | | | +| Lead Infrastructure Specialist | 7.2.6 | Ignored | | | Laura Abshire,Laura Abshire,Laura Abshire,Laura Abshire,Laura Abshire | https://wanda.com | | | +| Regional Directives Liaison | 4.7.8 | Expression | If we connect the interface, we can get to the SCSI interface through the auxiliary SCSI interface! | | Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic | https://glennie.biz | | | +| Customer Web Assistant | 1.9.0 | Unknown | | | | | | | +| Forward Factors Architect | 6.7.6 | Ignored | | The THX transmitter is down, program the neural transmitter so we can program the THX transmitter! | Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts | | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| Principal Security Producer | 7.3.3 | Ignored | You can't generate the interface without quantifying the mobile FTP interface! | Use the digital SMTP bandwidth, then you can generate the digital bandwidth! | | http://jarrell.biz | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | | | +| Human Program Analyst | 3.1.8 | Expression | If we back up the application, we can get to the USB application through the cross-platform USB application! | | | http://efrain.org | | | +| Customer Mobility Assistant | 4.2.9 | 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 | http://adonis.biz | | | +| Human Branding Coordinator | 5.8.1 | Ignored | | | | | | | +| Investor Research Coordinator | 1.9.7 | Ignored | Use the cross-platform GB bus, then you can calculate the cross-platform bus! | | | https://maegan.name | | | +| Global Implementation Strategist | 5.9.8 | Ignored | | | Colleen Schroeder,Colleen Schroeder | https://enos.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 | | | +| 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 | | | | +| Forward Data Orchestrator | 3.3.5 | Expression | Use the haptic XML driver, then you can index the haptic driver! | compressing the system won't do anything, we need to compress the optical RSS system! | | | | | +| Investor Tactics Director | 0.4.3 | Expression | | | | https://aylin.com | | | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | | | +| Customer Assurance Officer | 0.3.1 | Ignored | I'll navigate the digital CSS sensor, that should sensor the CSS sensor! | | | https://clementine.info | | | +| Dynamic Solutions Agent | 0.0.5 | Overwrite | Use the haptic USB card, then you can navigate the haptic card! | | | | | | +| Dynamic Factors Associate | 1.8.3 | Unknown | | You can't navigate the panel without calculating the open-source THX panel! | | http://dovie.name | | | +| Dynamic Security Specialist | 7.8.5 | Overwrite | Try to input the GB pixel, maybe it will input the wireless pixel! | You can't transmit the bus without indexing the digital TCP bus! | Guy Waters,Guy Waters | http://nova.biz | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| International Branding Producer | 3.8.2 | Expression | We need to generate the solid state AGP microchip! | | | | | | +| Principal Factors Representative | 4.5.7 | Ignored | Try to input the RAM interface, maybe it will input the bluetooth interface! | The GB card is down, hack the digital card so we can hack the GB card! | Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker | https://imelda.org | | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | | | +| Corporate Intranet Analyst | 0.9.0 | Ignored | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp | http://hanna.net | | | +| Lead Operations Supervisor | 4.5.2 | Expression | The AI panel is down, transmit the open-source panel so we can transmit the AI panel! | | | | | | +| Chief Program Associate | 2.6.7 | Unknown | We need to compress the optical PNG array! | | Wilbert Kunze,Wilbert Kunze,Wilbert Kunze,Wilbert Kunze | http://coy.info | | | +| Central Tactics Developer | 0.4.7 | Ignored | indexing the capacitor won't do anything, we need to program the haptic EXE capacitor! | The JBOD application is down, generate the solid state application so we can generate the JBOD application! | Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley | https://royal.name | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Brand Strategist | 3.9.3 | Url | | | Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy | https://rowena.info | | | +| Dynamic Implementation Engineer | 6.7.1 | Overwrite | We need to transmit the open-source EXE interface! | | | http://margie.info | | | +| Chief Infrastructure Specialist | 9.0.5 | Overwrite | hacking the port won't do anything, we need to back up the optical SMS port! | | Jackie Schumm | | | | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | | | +| International Solutions Planner | 9.0.0 | Url | Use the multi-byte SMTP program, then you can synthesize the multi-byte program! | | | | | | +| Product Directives Engineer | 8.2.3 | Unknown | transmitting the bus won't do anything, we need to navigate the online IB bus! | | Maggie Lindgren | | | | +| Regional Identity Engineer | 1.9.4 | Ignored | | The HTTP microchip is down, copy the digital microchip so we can copy the HTTP microchip! | Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston | | | | +| Human Paradigm Assistant | 8.8.8 | Expression | | | Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich | | | | +| Product Functionality Supervisor | 9.4.5 | Overwrite | Use the 1080p AI microchip, then you can reboot the 1080p microchip! | Use the open-source ADP matrix, then you can copy the open-source matrix! | | | | | +| Human Accounts Orchestrator | 4.1.6 | Url | | | | | | | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_89f288ba363c7168.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_89f288ba363c7168.verified.txt new file mode 100644 index 00000000..12a634d2 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_89f288ba363c7168.verified.txt @@ -0,0 +1,98 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | ---------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | ---------------------- | --------- | --------------------- | +| Product Usability Coordinator | 5.4.7 | Overwrite | The GB panel is down, synthesize the neural panel so we can synthesize the GB panel! | You can't copy the system without indexing the virtual XSS system! | If we override the hard drive, we can get to the RSS hard drive through the multi-byte RSS hard drive! | | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Future Solutions Officer | 3.3.5 | Unknown | You can't override the hard drive without bypassing the mobile TCP hard drive! | | Use the online IB protocol, then you can back up the online protocol! | | | | +| District Data Executive | 9.4.3 | Expression | | The FTP transmitter is down, compress the auxiliary transmitter so we can compress the FTP transmitter! | | | | | +| Dynamic Accountability Engineer | 3.1.8 | Url | | Use the online RAM program, then you can generate the online program! | I'll back up the back-end JSON card, that should card the JSON card! | https://gerson.com | | | +| Principal Solutions Facilitator | 7.1.5 | Overwrite | | The RSS pixel is down, calculate the auxiliary pixel so we can calculate the RSS pixel! | | | | | +| Dynamic Division Agent | 4.2.8 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | https://camilla.info | | | +| Internal Program Administrator | 0.3.5 | Expression | We need to navigate the multi-byte PNG application! | The SMS hard drive is down, parse the mobile hard drive so we can parse the SMS hard drive! | The HTTP bandwidth is down, synthesize the 1080p bandwidth so we can synthesize the HTTP bandwidth! | http://viviane.com | | | +| District Configuration Administrator | 8.4.4 | Url | | The XML transmitter is down, calculate the auxiliary transmitter so we can calculate the XML transmitter! | | https://david.name | | | +| District Branding Analyst | 1.9.5 | Unknown | | | | https://paula.net | | | +| Regional Configuration Engineer | 7.3.8 | Expression | Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter! | You can't reboot the matrix without navigating the optical SDD matrix! | | http://roman.org | | | +| Dynamic Directives Officer | 5.8.8 | Overwrite | | parsing the program won't do anything, we need to synthesize the haptic IB program! | If we program the microchip, we can get to the SMS microchip through the auxiliary SMS microchip! | http://rafaela.net | | | +| 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! | | | | | +| Central Infrastructure Agent | 6.1.6 | Expression | | | You can't quantify the program without overriding the online SDD program! | | | | +| Lead Factors Designer | 0.9.2 | Url | You can't quantify the bandwidth without calculating the online RAM bandwidth! | | | | | | +| Principal Branding Assistant | 8.2.6 | Expression | 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! | We need to hack the auxiliary COM hard drive! | | | | +| Central Creative Analyst | 3.6.4 | Overwrite | | programming the driver won't do anything, we need to calculate the primary SMTP driver! | | | | | +| Corporate Data Strategist | 9.0.0 | Url | | | Try to transmit the PNG capacitor, maybe it will transmit the solid state capacitor! | http://eli.net | | | +| Legacy Research Associate | 9.9.5 | Url | | We need to navigate the bluetooth RAM bus! | | https://hildegard.name | | | +| Direct Web Orchestrator | 1.9.1 | Overwrite | You can't copy the alarm without synthesizing the 1080p IB alarm! | | parsing the card won't do anything, we need to synthesize the online SQL card! | https://kade.com | | | +| Central Marketing Assistant | 9.5.8 | Overwrite | I'll navigate the redundant RAM capacitor, that should capacitor the RAM capacitor! | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | http://julia.biz | | | +| National Directives Analyst | 8.2.7 | Overwrite | We need to compress the primary GB array! | | Use the mobile SCSI bus, then you can program the mobile bus! | | | | +| Human Communications Supervisor | 6.0.1 | Overwrite | Use the cross-platform SAS feed, then you can bypass the cross-platform feed! | | I'll override the neural XML application, that should application the XML application! | http://ethan.name | | | +| Dynamic Quality Director | 4.9.9 | Unknown | | | | http://jesse.com | | | +| Corporate Implementation Technician | 2.8.4 | Url | | If we compress the protocol, we can get to the COM protocol through the mobile COM protocol! | Use the multi-byte SMTP program, then you can synthesize the multi-byte program! | | | | +| District Intranet Engineer | 7.5.5 | Unknown | 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! | | | | | +| Lead Intranet Director | 9.2.4 | Url | | You can't parse the bandwidth without transmitting the open-source USB bandwidth! | If we parse the driver, we can get to the GB driver through the neural GB driver! | https://dane.name | | | +| Forward Communications Engineer | 4.5.2 | Overwrite | Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor! | | | | | | +| Senior Communications Director | 3.1.0 | Expression | | | I'll quantify the neural SCSI port, that should port the SCSI port! | | | | +| International Data Associate | 6.4.8 | Unknown | If we navigate the array, we can get to the SQL array through the 1080p SQL array! | You can't generate the bandwidth without parsing the mobile EXE bandwidth! | | | | | +| Principal Intranet Manager | 3.8.8 | Expression | | | | | | | +| Internal Division Agent | 2.4.2 | Expression | | Try to compress the TCP microchip, maybe it will compress the auxiliary microchip! | | | | | +| Forward Factors Director | 5.7.8 | Expression | | | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | | | +| Future Accountability Officer | 2.5.3 | Unknown | | | | http://henderson.biz | | | +| District Implementation Executive | 3.9.4 | Overwrite | | | | http://fae.org | | | +| Regional Communications Officer | 3.3.2 | Overwrite | | We need to calculate the redundant THX feed! | | https://cortez.net | | | +| Legacy Configuration Coordinator | 2.7.5 | Unknown | connecting the panel won't do anything, we need to bypass the wireless AGP panel! | | | | | | +| Product Directives Engineer | 8.2.3 | Unknown | transmitting the bus won't do anything, we need to navigate the online IB bus! | | We need to bypass the wireless PNG bus! | | | | +| Future Configuration Officer | 7.6.0 | Expression | You can't compress the alarm without parsing the optical JBOD alarm! | 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! | | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Forward Web Assistant | 5.9.6 | 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! | The SSL application is down, reboot the bluetooth application so we can reboot the SSL application! | | | | +| National Functionality Orchestrator | 3.5.0 | Overwrite | If we quantify the array, we can get to the RAM array through the virtual RAM array! | overriding the card won't do anything, we need to hack the auxiliary HTTP card! | If we quantify the feed, we can get to the RAM feed through the neural RAM feed! | https://gina.name | | | +| International Accounts Liaison | 5.6.7 | Expression | We need to program the virtual SCSI circuit! | We need to generate the auxiliary GB hard drive! | transmitting the port won't do anything, we need to override the haptic JSON port! | | | | +| Future Interactions Facilitator | 7.6.9 | Expression | | If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit! | | | | | +| District Implementation Orchestrator | 0.1.4 | Url | I'll synthesize the cross-platform CSS panel, that should panel the CSS panel! | You can't navigate the panel without connecting the optical PNG panel! | | | | | +| Dynamic Group Producer | 5.9.5 | Unknown | We need to hack the multi-byte EXE bus! | If we connect the program, we can get to the SQL program through the digital SQL program! | | https://sonny.com | | | +| Dynamic Factors Facilitator | 6.5.2 | Unknown | | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | | http://magnolia.com | | | +| Direct Creative Planner | 9.7.2 | Unknown | Try to connect the TCP circuit, maybe it will connect the back-end circuit! | synthesizing the circuit won't do anything, we need to override the neural XML circuit! | bypassing the matrix won't do anything, we need to copy the wireless PCI matrix! | | | | +| Forward Integration Assistant | 4.8.5 | Expression | | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| Product Tactics Technician | 3.8.3 | Overwrite | If we index the protocol, we can get to the FTP protocol through the online FTP protocol! | Try to synthesize the SDD hard drive, maybe it will synthesize the bluetooth hard drive! | | https://jewel.name | | | +| Direct Data Designer | 8.4.8 | Unknown | | | We need to transmit the virtual JSON bus! | | | | +| Central Marketing Orchestrator | 3.3.1 | Overwrite | | Try to parse the IB driver, maybe it will parse the 1080p driver! | We need to connect the bluetooth RSS application! | https://brice.net | | | +| Dynamic Creative Designer | 7.5.8 | Expression | The XML system is down, hack the bluetooth system so we can hack the XML system! | | The GB program is down, program the back-end program so we can program the GB program! | http://daniela.name | | | +| Corporate Identity Coordinator | 9.8.3 | Url | | If we navigate the bus, we can get to the HDD bus through the primary HDD bus! | | | | | +| Direct Factors Representative | 0.5.2 | Overwrite | You can't override the bandwidth without navigating the auxiliary ADP bandwidth! | backing up the system won't do anything, we need to synthesize the digital AI system! | | | | | +| Direct Usability Analyst | 3.4.8 | Overwrite | hacking the protocol won't do anything, we need to bypass the back-end SDD protocol! | Try to quantify the EXE program, maybe it will quantify the auxiliary program! | The FTP program is down, override the digital program so we can override the FTP program! | https://maritza.com | | | +| Forward Division Strategist | 5.7.1 | Unknown | You can't reboot the program without transmitting the mobile SMTP program! | The SCSI circuit is down, index the open-source circuit so we can index the SCSI circuit! | Use the solid state HTTP microchip, then you can back up the solid state microchip! | https://esperanza.name | | | +| Human Program Analyst | 3.1.8 | Expression | If we back up the application, we can get to the USB application through the cross-platform USB application! | | | http://efrain.org | | | +| Senior Metrics Assistant | 8.7.4 | Unknown | | 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 Infrastructure Developer | 7.5.6 | Unknown | Try to override the SCSI microchip, maybe it will override the haptic microchip! | programming the monitor won't do anything, we need to parse the online XML monitor! | You can't index the circuit without copying the auxiliary RSS circuit! | | | | +| Internal Factors Designer | 1.9.6 | Url | | | | | | | +| International Data Coordinator | 1.7.7 | Unknown | | connecting the system won't do anything, we need to navigate the solid state HDD system! | | | | | +| Dynamic Functionality Strategist | 5.8.0 | Url | Use the digital HTTP card, then you can reboot the digital card! | The CSS port is down, quantify the virtual port so we can quantify the CSS port! | | http://filiberto.net | | | +| Principal Accounts Officer | 2.1.8 | Overwrite | 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! | | | | +| Senior Integration Engineer | 4.4.3 | Url | | | | | | | +| Future Marketing Technician | 7.6.7 | Unknown | | overriding the firewall won't do anything, we need to reboot the open-source COM firewall! | | http://abbey.biz | | | +| Investor Accountability Officer | 2.4.3 | Unknown | | Use the digital XSS hard drive, then you can compress the digital hard drive! | You can't generate the card without synthesizing the bluetooth PNG card! | | | | +| Dynamic Quality Analyst | 0.9.5 | Unknown | We need to index the optical HTTP application! | 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! | | | | +| Forward Data Administrator | 9.0.6 | Overwrite | If we navigate the pixel, we can get to the SCSI pixel through the bluetooth SCSI pixel! | I'll program the multi-byte AI transmitter, that should transmitter the AI transmitter! | | https://serenity.info | | | +| Human Division Agent | 2.2.7 | Expression | | 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 Security Developer | 0.8.7 | Url | You can't back up the array without parsing the haptic CSS array! | | | https://adan.net | | | +| Legacy Interactions Analyst | 3.0.8 | Url | hacking the hard drive won't do anything, we need to generate the open-source RSS hard drive! | connecting the system won't do anything, we need to synthesize the mobile ADP system! | | | | | +| Global Markets Director | 3.4.9 | Unknown | The RAM card is down, override the open-source card so we can override the RAM card! | | | | | | +| Human Accounts Representative | 4.5.5 | Url | | | The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall! | https://darien.net | | | +| Dynamic Applications Producer | 0.4.7 | Url | Try to input the AI sensor, maybe it will input the digital sensor! | If we program the array, we can get to the JBOD array through the primary JBOD array! | | http://horace.com | | | +| Internal Data Designer | 9.5.2 | Unknown | | hacking the card won't do anything, we need to hack the neural COM card! | The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive! | https://liana.com | | | +| Forward Creative Developer | 9.6.7 | Unknown | | I'll transmit the online SSL feed, that should feed the SSL feed! | We need to synthesize the cross-platform SMS circuit! | http://pearline.com | | | +| Regional Security Engineer | 5.8.4 | Unknown | | | I'll hack the cross-platform SSL array, that should array the SSL array! | | | | +| Legacy Infrastructure Producer | 1.1.2 | Unknown | | If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit! | | | | | +| Corporate Infrastructure Executive | 4.8.1 | Overwrite | | | Try to index the FTP transmitter, maybe it will index the bluetooth transmitter! | https://justice.info | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| Human Response Executive | 6.4.4 | Unknown | If we transmit the matrix, we can get to the SDD matrix through the mobile SDD matrix! | | | https://maida.org | | | +| Human Configuration Assistant | 0.1.1 | Overwrite | I'll bypass the solid state SMS system, that should system the SMS system! | | parsing the driver won't do anything, we need to program the auxiliary IB driver! | http://frederick.com | | | +| Forward Optimization Architect | 8.7.9 | Overwrite | | | backing up the feed won't do anything, we need to compress the haptic SMTP feed! | https://kyle.net | | | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | ---------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8a4e0f1400d00be4.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8a4e0f1400d00be4.verified.txt new file mode 100644 index 00000000..f59987a5 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8a4e0f1400d00be4.verified.txt @@ -0,0 +1,154 @@ +| -------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------------- | --------------------- | ----------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------------- | --------------------- | ----------- | ---------------------- | +| National Tactics Engineer | 3.7.5 | Url | generating the matrix won't do anything, we need to override the redundant GB matrix! | https://alexys.org | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Chief Assurance Associate | 3.3.1 | Url | overriding the panel won't do anything, we need to parse the open-source IB panel! | https://tyrese.info | | | +| District Mobility Administrator | 3.2.3 | Ignored | | | | | +| Regional Security Architect | 2.2.5 | Url | | | | | +| Forward Functionality Analyst | 4.5.1 | Expression | | http://orie.name | | | +| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| | | | | | Jody | http://jakob.org | +| | | | | | Anjali | https://valentin.info | +| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| | | | | | Clemmie | http://shanny.net | +| | | | | | Hildegard | http://conner.name | +| | | | | | Isabella | https://kennith.com | +| | | | | | Johanna | https://ara.org | +| | | | | | Demarco | https://rae.biz | +| | | | | | Viviane | http://christine.info | +| District Branding Analyst | 1.9.5 | Url | | https://paula.net | | | +| Global Security Liaison | 8.1.2 | Expression | | | | | +| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| | | | | | Ursula | https://werner.net | +| | | | | | Linwood | http://rebekah.org | +| | | | | | Cleve | https://claudie.net | +| | | | | | Theodora | http://faye.info | +| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| | | | | | Braeden | https://sunny.name | +| | | | | | Leslie | http://bettie.info | +| | | | | | Edmund | http://sadie.info | +| | | | | | Horacio | https://loraine.name | +| Regional Solutions Supervisor | 1.8.2 | Ignored | You can't parse the system without compressing the haptic GB system! | https://lance.net | | | +| Global Response Associate | 1.9.8 | Overwrite | The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth! | | Sandra | http://antonina.com | +| | | | | | Willow | https://jason.org | +| | | | | | Orland | http://rigoberto.com | +| | | | | | Laney | http://eryn.org | +| | | | | | Amari | http://viviane.net | +| | | | | | Kelley | http://doris.net | +| | | | | | Kennedy | https://milo.net | +| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| | | | | | Caleigh | https://albin.info | +| | | | | | Flavie | http://lavonne.biz | +| | | | | | Kaitlyn | http://osborne.org | +| | | | | | Joesph | https://michael.name | +| | | | | | Kali | http://shyanne.net | +| | | | | | Austin | https://marty.net | +| | | | | | Theresia | http://kristin.net | +| | | | | | Lester | https://paige.com | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Central Interactions Manager | 7.0.9 | Expression | | | | | +| Customer Directives Director | 7.9.2 | Overwrite | Try to hack the COM panel, maybe it will hack the auxiliary panel! | | | | +| Legacy Creative Liaison | 0.4.6 | Overwrite | | | Mervin | http://celestine.info | +| | | | | | Amalia | https://shanelle.info | +| | | | | | Sheila | http://darrell.info | +| | | | | | Alec | https://candice.biz | +| | | | | | Linnea | http://everardo.info | +| | | | | | Daryl | https://jerrod.com | +| | | | | | Laila | http://caleigh.net | +| | | | | | Adolfo | http://daisha.biz | +| Direct Accounts Associate | 3.2.6 | Overwrite | | https://vesta.com | Buck | http://taryn.com | +| | | | | | Hilton | http://isabel.com | +| | | | | | Rogers | https://bertrand.biz | +| | | | | | Annetta | https://remington.org | +| | | | | | Efrain | http://davion.org | +| | | | | | Merle | https://abigayle.org | +| | | | | | Jerod | https://vicenta.info | +| | | | | | Kayli | https://shaun.net | +| | | | | | Antwan | https://hazel.net | +| Senior Brand Developer | 4.4.1 | Ignored | If we override the system, we can get to the CSS system through the neural CSS system! | http://adelbert.net | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| | | | | | Libby | http://wade.biz | +| | | | | | Leola | https://pietro.info | +| | | | | | Arch | http://hazle.org | +| | | | | | Eldred | http://gabriel.net | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | +| Dynamic Security Technician | 6.8.3 | Unknown | | | | | +| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| | | | | | Clarissa | https://audreanne.name | +| | | | | | Vida | https://theresia.biz | +| | | | | | Ransom | http://isom.com | +| | | | | | Anastasia | http://kamryn.info | +| | | | | | Marlene | https://cyril.name | +| | | | | | Zetta | http://pete.org | +| | | | | | Candida | https://craig.biz | +| | | | | | Timmothy | https://joanny.biz | +| | | | | | Alfonzo | http://dorothea.org | +| National Accounts Liaison | 7.2.6 | Overwrite | | | Cedrick | https://zachariah.net | +| | | | | | Marcelle | https://adah.org | +| | | | | | Barney | http://erica.org | +| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| | | | | | Tyson | https://bonita.org | +| | | | | | Jazlyn | http://madonna.net | +| | | | | | Deangelo | https://jess.info | +| | | | | | Alvah | https://hans.net | +| | | | | | Payton | http://shanna.name | +| | | | | | Providenci | https://tyra.org | +| | | | | | Flo | http://isidro.net | +| | | | | | Dawn | https://anika.org | +| | | | | | Silas | http://zane.name | +| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| | | | | | Monserrat | http://katrine.name | +| | | | | | Abel | https://geovany.com | +| | | | | | Diana | http://eula.name | +| | | | | | Raphael | https://zackery.info | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Dynamic Applications Director | 5.1.4 | Ignored | | | | | +| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| | | | | | Earnestine | http://nathanial.biz | +| | | | | | Connor | https://augustus.net | +| | | | | | Araceli | http://hailey.biz | +| | | | | | Janessa | https://craig.com | +| | | | | | Erica | http://kristin.org | +| | | | | | Alek | http://shany.biz | +| National Communications Facilitator | 3.1.0 | Url | quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter! | | | | +| Dynamic Functionality Agent | 5.9.5 | Unknown | | http://annabelle.net | | | +| Forward Quality Producer | 6.3.7 | Overwrite | The CSS microchip is down, back up the bluetooth microchip so we can back up the CSS microchip! | https://jayne.name | | | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Central Integration Analyst | 0.4.0 | Overwrite | If we synthesize the protocol, we can get to the JBOD protocol through the multi-byte JBOD protocol! | https://laverne.name | | | +| Product Applications Assistant | 2.8.4 | Overwrite | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | https://carleton.info | | | +| Global Usability Representative | 3.5.9 | Url | | | | | +| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| | | | | | Princess | http://haylie.biz | +| | | | | | Jordane | https://gregorio.com | +| | | | | | Opal | http://abbie.org | +| | | | | | Pablo | https://maxime.biz | +| | | | | | Shaun | https://concepcion.net | +| | | | | | Moises | http://rupert.info | +| Dynamic Marketing Consultant | 2.4.9 | Overwrite | | | Angie | https://ardella.info | +| | | | | | Melissa | https://sandra.biz | +| | | | | | Pearline | https://noble.net | +| | | | | | Dusty | https://verlie.com | +| Customer Operations Officer | 2.6.0 | Overwrite | Use the bluetooth USB alarm, then you can override the bluetooth alarm! | http://antonette.org | | | +| -------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------------- | --------------------- | ----------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8a83c3451c408130.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8a83c3451c408130.verified.txt new file mode 100644 index 00000000..056c02ae --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8a83c3451c408130.verified.txt @@ -0,0 +1,242 @@ +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | ---------- | ---------------------- | +| Legacy Assurance Representative | 6.4.9 | Unknown | | Diane Gutkowski,Diane Gutkowski,Diane Gutkowski,Diane Gutkowski,Diane Gutkowski | https://maye.info | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Chief Operations Orchestrator | 9.1.5 | Ignored | Try to back up the USB application, maybe it will back up the bluetooth application! | | https://madelynn.name | | | +| Dynamic Metrics Coordinator | 5.8.1 | Unknown | overriding the circuit won't do anything, we need to copy the mobile AGP circuit! | Helen Fisher,Helen Fisher,Helen Fisher,Helen Fisher,Helen Fisher | | | | +| Customer Group Director | 2.5.2 | Expression | You can't index the pixel without copying the redundant XML pixel! | Vera Krajcik,Vera Krajcik,Vera Krajcik,Vera Krajcik | https://eloise.name | | | +| Regional Mobility Designer | 8.5.4 | Url | | | http://brady.net | | | +| Global Directives Orchestrator | 8.7.6 | Expression | | Tommy Franecki,Tommy Franecki | | | | +| District Identity Administrator | 2.9.6 | Unknown | | Isabel Schmitt,Isabel Schmitt,Isabel Schmitt,Isabel Schmitt | http://duncan.name | | | +| Regional Paradigm Director | 3.0.9 | Unknown | The COM pixel is down, quantify the virtual pixel so we can quantify the COM pixel! | | | | | +| Global Data Administrator | 0.8.4 | Unknown | | Frederick Leffler,Frederick Leffler,Frederick Leffler | https://barrett.com | | | +| Future Group Assistant | 1.7.9 | Expression | Use the multi-byte AI port, then you can reboot the multi-byte port! | | | Darien | http://mitchel.biz | +| | | | | | | Carleton | https://madalyn.com | +| | | | | | | Narciso | https://mia.com | +| | | | | | | Nicklaus | https://abelardo.com | +| | | | | | | Carolina | https://lindsey.info | +| | | | | | | Rigoberto | https://lou.biz | +| Forward Web Designer | 0.1.4 | Overwrite | | | https://gerard.net | | | +| Future Interactions Developer | 1.1.7 | Unknown | If we reboot the matrix, we can get to the CSS matrix through the cross-platform CSS matrix! | | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| District Metrics Associate | 8.1.6 | Overwrite | | | http://jaylin.org | | | +| Investor Creative Architect | 4.5.6 | Overwrite | | Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| | | | | | | Retta | https://lottie.biz | +| | | | | | | Yasmine | http://delia.com | +| | | | | | | Khalil | http://jewel.net | +| | | | | | | Roy | https://johanna.org | +| | | | | | | Price | https://itzel.info | +| | | | | | | Dalton | https://daren.info | +| | | | | | | Arnold | http://arlo.org | +| Corporate Quality Planner | 6.6.3 | Url | 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 | | | | +| Senior Brand Analyst | 2.5.0 | Ignored | | Darlene Dickens,Darlene Dickens,Darlene Dickens,Darlene Dickens,Darlene Dickens,Darlene Dickens,Darlene Dickens,Darlene Dickens | | | | +| Dynamic Creative Supervisor | 4.1.3 | Ignored | | | | | | +| Internal Web Associate | 6.2.5 | Expression | | | https://arvel.name | | | +| Dynamic Mobility Technician | 6.0.2 | Expression | | | https://keeley.net | | | +| Product Solutions Manager | 9.5.2 | Overwrite | I'll hack the primary SDD card, that should card the SDD card! | Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach | | | | +| Investor Configuration Technician | 1.9.1 | Url | We need to copy the primary FTP bus! | Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin | http://malvina.name | | | +| Senior Identity Specialist | 2.8.9 | Ignored | We need to program the primary THX protocol! | Barbara Osinski,Barbara Osinski,Barbara Osinski,Barbara Osinski,Barbara Osinski,Barbara Osinski,Barbara Osinski,Barbara Osinski,Barbara Osinski | https://kennedy.biz | | | +| Lead Implementation Supervisor | 4.9.9 | Overwrite | The ADP card is down, hack the solid state card so we can hack the ADP card! | Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis | http://katlynn.net | | | +| Dynamic Integration Assistant | 2.7.5 | Overwrite | I'll back up the 1080p RSS matrix, that should matrix the RSS matrix! | | | | | +| Human Implementation Producer | 0.9.1 | Url | | | | | | +| National Security Liaison | 2.4.1 | Ignored | | | http://pierce.info | | | +| Investor Assurance Technician | 7.3.8 | Overwrite | | Merle Hirthe | | | | +| Product Intranet Assistant | 2.8.1 | Ignored | The THX circuit is down, copy the back-end circuit so we can copy the THX circuit! | | http://lynn.info | | | +| Dynamic Integration Assistant | 2.1.6 | Unknown | | | https://gerson.info | | | +| Customer Program Consultant | 5.0.4 | Ignored | Try to compress the GB system, maybe it will compress the neural system! | Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan | http://kieran.biz | Bettie | http://edmund.info | +| | | | | | | Sadie | http://horacio.org | +| | | | | | | Loraine | https://sandra.org | +| | | | | | | Emil | http://dayana.net | +| Principal Group Strategist | 4.1.0 | Url | I'll bypass the primary GB bandwidth, that should bandwidth the GB bandwidth! | | | | | +| Internal Solutions Planner | 1.3.8 | Expression | | Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| | | | | | | Mallory | http://angeline.name | +| Central Applications Planner | 6.6.9 | Overwrite | | Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke | http://ava.org | | | +| Lead Creative Administrator | 9.0.0 | Overwrite | Use the virtual RAM monitor, then you can override the virtual monitor! | | https://roderick.net | Hildegard | http://conner.name | +| | | | | | | 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 | +| | | | | | | Irving | https://sydnie.org | +| Central Identity Analyst | 8.9.6 | Expression | | | http://leta.org | | | +| Forward Division Strategist | 5.7.1 | Expression | You can't reboot the program without transmitting the mobile SMTP program! | Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode | https://esperanza.name | | | +| District Factors Associate | 0.2.6 | Expression | | Betsy Powlowski | https://cloyd.biz | | | +| Legacy Communications Manager | 0.1.8 | Unknown | | | http://gus.info | | | +| Future Optimization Associate | 4.0.5 | Unknown | | Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel | https://linnie.net | | | +| Senior Applications Technician | 7.8.2 | Overwrite | | Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert | | | | +| Future Tactics Producer | 5.8.9 | Url | navigating the pixel won't do anything, we need to parse the back-end IB pixel! | | | | | +| Future Applications Facilitator | 0.1.5 | Expression | transmitting the program won't do anything, we need to bypass the virtual HTTP program! | | | | | +| Corporate Accountability Designer | 0.8.0 | Overwrite | We need to hack the online FTP application! | | http://taya.info | Carlee | http://britney.name | +| | | | | | | Tess | http://julian.biz | +| | | | | | | Isadore | http://billy.net | +| | | | | | | Alice | http://vern.net | +| | | | | | | King | http://trace.net | +| | | | | | | Carmela | https://adolf.info | +| | | | | | | Sherman | http://alec.net | +| | | | | | | Lamar | http://deion.org | +| Dynamic Group Representative | 9.8.1 | Unknown | | | | | | +| Regional Security Agent | 6.2.7 | Overwrite | | | https://kenyon.org | | | +| Lead Solutions Technician | 1.5.7 | Unknown | | | | | | +| Dynamic Applications Director | 5.1.4 | Unknown | | Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel | | | | +| District Brand Producer | 9.3.8 | Overwrite | Use the redundant AGP application, then you can generate the redundant application! | Clarence Metz,Clarence Metz,Clarence Metz | | | | +| Investor Communications Associate | 0.7.2 | Expression | | Arnold Franecki,Arnold Franecki | http://modesto.info | | | +| Central Mobility Executive | 5.0.3 | Unknown | | Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling | | | | +| Senior Group Designer | 3.0.6 | Url | The AGP pixel is down, hack the neural pixel so we can hack the AGP pixel! | | | | | +| Forward Integration Specialist | 8.7.1 | Expression | | | http://jordon.net | | | +| Regional Directives Liaison | 4.7.8 | Ignored | If we connect the interface, we can get to the SCSI interface through the auxiliary SCSI interface! | | https://glennie.biz | | | +| District Intranet Agent | 1.1.6 | Url | You can't calculate the application without synthesizing the primary JBOD application! | | | | | +| Dynamic Research Designer | 5.6.8 | Unknown | If we connect the program, we can get to the SQL program through the digital SQL program! | | | | | +| District Mobility Administrator | 3.2.3 | Unknown | | Christopher Dietrich,Christopher Dietrich,Christopher Dietrich,Christopher Dietrich | | | | +| Chief Data Director | 2.1.5 | Unknown | Use the haptic PCI bandwidth, then you can generate the haptic bandwidth! | | | Earnestine | http://nathanial.biz | +| | | | | | | Connor | https://augustus.net | +| | | | | | | Araceli | http://hailey.biz | +| | | | | | | Janessa | https://craig.com | +| | | | | | | Erica | http://kristin.org | +| | | | | | | Alek | http://shany.biz | +| | | | | | | Camren | http://joany.info | +| Future Mobility Strategist | 4.7.6 | Overwrite | Use the virtual ADP bandwidth, then you can calculate the virtual bandwidth! | | http://gerardo.net | Cathy | http://giovanna.info | +| | | | | | | Ike | https://jerome.biz | +| | | | | | | Emerald | https://camren.net | +| | | | | | | Sheila | https://garry.org | +| Forward Accounts Consultant | 8.9.0 | Expression | | | | | | +| Direct Accountability Producer | 1.8.1 | Url | | | http://justine.net | | | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| Senior Response Developer | 8.5.8 | Ignored | We need to input the open-source SAS feed! | Jackie Abbott,Jackie Abbott,Jackie Abbott,Jackie Abbott,Jackie Abbott,Jackie Abbott,Jackie Abbott,Jackie Abbott | | | | +| Dynamic Group Associate | 6.6.1 | Unknown | We need to input the open-source SMTP bus! | | http://kian.name | Neil | https://burley.info | +| | | | | | | Lemuel | http://brenden.info | +| | | | | | | Agnes | https://urban.org | +| | | | | | | Micheal | https://ida.net | +| | | | | | | Murray | https://samanta.com | +| | | | | | | Assunta | http://florencio.com | +| Global Paradigm Producer | 1.8.4 | Overwrite | If we quantify the protocol, we can get to the IB protocol through the auxiliary IB protocol! | | https://london.biz | | | +| Lead Identity Developer | 7.1.0 | Unknown | | Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover | https://eve.com | | | +| Corporate Mobility Consultant | 1.9.0 | Expression | | | http://letha.name | | | +| Direct Markets Executive | 9.7.7 | Ignored | We need to navigate the open-source PCI pixel! | | https://judge.name | | | +| Future Configuration Architect | 4.2.6 | Expression | I'll generate the primary TCP bus, that should bus the TCP bus! | Victoria Padberg,Victoria Padberg,Victoria Padberg,Victoria Padberg,Victoria Padberg,Victoria Padberg | | | | +| Future Web Associate | 5.1.3 | Ignored | | | http://favian.biz | | | +| Dynamic Accounts Architect | 9.8.0 | Overwrite | | | | | | +| Product Marketing Developer | 3.3.6 | Unknown | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | Lewis | https://alisa.com | +| | | | | | | Delores | https://layne.name | +| | | | | | | Delphine | https://katlynn.org | +| | | | | | | Meredith | https://johanna.info | +| | | | | | | Jacklyn | https://kadin.com | +| | | | | | | Hardy | https://donna.info | +| Legacy Data Consultant | 5.8.8 | Unknown | Try to connect the JSON pixel, maybe it will connect the primary pixel! | | | | | +| Dynamic Brand Agent | 2.9.2 | Expression | quantifying the application won't do anything, we need to hack the haptic RAM application! | Bertha Schultz,Bertha Schultz | https://reese.info | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Future Directives Planner | 5.9.7 | Ignored | Use the wireless ADP array, then you can input the wireless array! | Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki | | | | +| National Quality Executive | 4.5.1 | Expression | Use the solid state TCP driver, then you can generate the solid state driver! | | http://rylan.com | | | +| Lead Directives Administrator | 5.1.9 | Ignored | Use the haptic GB matrix, then you can generate the haptic matrix! | | | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Legacy Response Analyst | 9.2.7 | Unknown | | Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata | http://martine.info | | | +| Investor Identity Developer | 4.2.0 | Url | | Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| | | | | | | Keely | http://obie.org | +| | | | | | | Caleigh | https://albin.info | +| | | | | | | Flavie | http://lavonne.biz | +| | | | | | | Kaitlyn | http://osborne.org | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | http://hanna.net | | | +| Dynamic Group Agent | 1.7.6 | Ignored | | Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins | | | | +| Forward Factors Architect | 6.7.6 | Overwrite | | Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt | | | | +| 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 Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| Corporate Interactions Administrator | 1.1.5 | Ignored | | | http://clemmie.info | | | +| Global Markets Designer | 1.7.0 | Overwrite | Use the multi-byte COM feed, then you can parse the multi-byte feed! | | https://toby.biz | | | +| Global Infrastructure Developer | 5.5.0 | Url | generating the application won't do anything, we need to calculate the auxiliary JSON application! | Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger | https://austin.net | 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 Interactions Designer | 1.9.4 | Overwrite | | | https://octavia.name | | | +| Global Communications Administrator | 3.0.6 | Ignored | | | | | | +| Customer Operations Liaison | 9.0.9 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | | | | +| Human Marketing Representative | 0.6.1 | Ignored | | Salvador Berge,Salvador Berge,Salvador Berge,Salvador Berge,Salvador Berge,Salvador Berge,Salvador Berge | | | | +| Senior Response Officer | 2.8.2 | Expression | | Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann | | | | +| Regional Integration Consultant | 5.3.8 | Expression | | | http://michael.name | | | +| Internal Division Agent | 2.4.2 | Url | | Gary Von,Gary Von,Gary Von | | | | +| Central Applications Coordinator | 1.6.8 | Ignored | | | http://curtis.com | | | +| Future Directives Associate | 1.1.1 | Expression | | Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe | https://shayne.name | | | +| Dynamic Division Specialist | 9.6.4 | Expression | | | https://keenan.net | | | +| Regional Factors Analyst | 1.5.7 | Overwrite | | | | | | +| Corporate Implementation Officer | 0.2.6 | Ignored | | | | | | +| Senior Factors Technician | 3.2.5 | Overwrite | You can't input the protocol without copying the auxiliary USB protocol! | Lee Zieme,Lee Zieme,Lee Zieme,Lee Zieme,Lee Zieme | | | | +| Human Security Administrator | 9.8.5 | Overwrite | I'll synthesize the redundant XML feed, that should feed the XML feed! | Mario Stamm,Mario Stamm,Mario Stamm,Mario Stamm,Mario Stamm,Mario Stamm | | | | +| Direct Tactics Technician | 2.8.6 | Unknown | Try to quantify the SAS port, maybe it will quantify the wireless port! | | | Demond | http://stefan.name | +| | | | | | | Norval | http://annie.net | +| | | | | | | Destin | http://penelope.name | +| Global Mobility Associate | 0.6.4 | Expression | We need to hack the haptic XSS program! | | https://brooke.org | | | +| Product Metrics Representative | 2.7.9 | Expression | connecting the feed won't do anything, we need to transmit the primary IB feed! | Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson | http://denis.info | | | +| Forward Intranet Technician | 2.5.3 | Expression | | Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton | https://ruby.biz | | | +| Global Group Planner | 5.4.5 | Ignored | | | | | | +| Global Integration Assistant | 5.0.1 | Unknown | | | http://demarco.com | | | +| Principal Intranet Architect | 4.9.3 | Expression | | | | | | +| Product Identity Analyst | 5.9.3 | Expression | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | | Rey | https://connie.info | +| | | | | | | Hollie | http://rico.name | +| | | | | | | Marshall | http://pierce.org | +| | | | | | | 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 | +| Forward Program Officer | 4.2.4 | Unknown | quantifying the capacitor won't do anything, we need to override the open-source AI capacitor! | Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin | | | | +| Human Web Liaison | 8.1.1 | Unknown | | | https://imogene.org | | | +| Future Applications Engineer | 6.8.5 | Unknown | 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 | | | +| Future Response Consultant | 9.3.1 | Unknown | | | https://ulices.biz | Ari | https://chad.com | +| | | | | | | Yvonne | http://jada.name | +| | | | | | | Noemie | https://kayley.name | +| | | | | | | Brandon | http://kristopher.name | +| | | | | | | Maggie | http://kimberly.info | +| | | | | | | Veronica | https://mya.net | +| | | | | | | Marty | https://obie.net | +| | | | | | | Braxton | http://flavio.net | +| | | | | | | Jeramie | http://jaycee.net | +| Direct Security Producer | 9.0.7 | Url | | | http://evert.net | | | +| Principal Factors Producer | 0.8.5 | Unknown | connecting the system won't do anything, we need to override the back-end SQL system! | Devin Nolan | http://toby.info | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8abe216a7cd7a10a.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8abe216a7cd7a10a.verified.txt new file mode 100644 index 00000000..a9c95d51 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8abe216a7cd7a10a.verified.txt @@ -0,0 +1,35 @@ +| ----------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ---------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ---------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Forward Integration Assistant | 4.8.5 | Expression | | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| District Branding Analyst | 1.9.5 | Unknown | | | | https://paula.net | | | +| 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! | | | | | +| Lead Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Central Marketing Assistant | 9.5.8 | Overwrite | I'll navigate the redundant RAM capacitor, that should capacitor the RAM capacitor! | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | http://julia.biz | | | +| Forward Factors Director | 5.7.8 | Expression | | | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | | | +| Principal Branding Assistant | 8.2.6 | Expression | 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! | We need to hack the auxiliary COM hard drive! | | | | +| Forward Creative Developer | 9.6.7 | Unknown | | I'll transmit the online SSL feed, that should feed the SSL feed! | We need to synthesize the cross-platform SMS circuit! | http://pearline.com | | | +| Legacy Interactions Analyst | 3.0.8 | Url | hacking the hard drive won't do anything, we need to generate the open-source RSS hard drive! | connecting the system won't do anything, we need to synthesize the mobile ADP system! | | | | | +| Legacy Research Associate | 9.9.5 | Url | | We need to navigate the bluetooth RAM bus! | | https://hildegard.name | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| Central Infrastructure Agent | 6.1.6 | Expression | | | You can't quantify the program without overriding the online SDD program! | | | | +| National Directives Analyst | 8.2.7 | Overwrite | We need to compress the primary GB array! | | Use the mobile SCSI bus, then you can program the mobile bus! | | | | +| ----------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ---------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8b9ac9eb9331065a.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8b9ac9eb9331065a.verified.txt new file mode 100644 index 00000000..d9b9991e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8b9ac9eb9331065a.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | Clare | https://bobby.info | +| | | | | | | Cecil | https://kira.net | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | Ila | http://rachel.com | +| | | | | | | Catalina | http://jolie.com | +| | | | | | | Dianna | https://leda.net | +| | | | | | | Nicola | http://aleen.name | +| | | | | | | Nelda | http://delpha.net | +| | | | | | | Delores | http://rae.biz | +| | | | | | | Cynthia | https://zella.com | +| | | | | | | Greta | http://adolph.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8c250981cdb4ed2e.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8c250981cdb4ed2e.verified.txt new file mode 100644 index 00000000..8338c366 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8c250981cdb4ed2e.verified.txt @@ -0,0 +1,8 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Judson | https://wilson.net | +| | | | | Guadalupe | http://otho.info | +| | | | | General | https://skylar.name | +| | | | | Haylie | http://audreanne.info | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8d4a7176715995dd.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8d4a7176715995dd.verified.txt new file mode 100644 index 00000000..a08751e8 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8d4a7176715995dd.verified.txt @@ -0,0 +1,128 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | +| Chief Data Orchestrator | 4.3.2 | Ignored | | | We need to back up the multi-byte SCSI transmitter! | http://gaylord.com | Taya | http://micaela.biz | +| | | | | | | | Evert | http://tomas.net | +| | | | | | | | Brett | http://virginie.net | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Internal Branding Executive | 2.0.9 | Overwrite | | The SAS sensor is down, input the auxiliary sensor so we can input the SAS sensor! | You can't bypass the application without programming the solid state COM application! | https://efrain.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 | +| International Assurance Executive | 2.8.5 | Ignored | The RSS driver is down, transmit the solid state driver so we can transmit the RSS driver! | | We need to parse the optical FTP driver! | http://antonina.com | Alvah | http://otha.name | +| | | | | | | | Natasha | https://nyah.com | +| | | | | | | | Oliver | http://ettie.biz | +| | | | | | | | Lonny | https://onie.org | +| | | | | | | | Cassie | http://solon.net | +| | | | | | | | Buck | http://taryn.com | +| | | | | | | | Hilton | http://isabel.com | +| Legacy Creative Liaison | 0.4.6 | Expression | | The SMS system is down, back up the open-source system so we can back up the SMS system! | I'll connect the optical FTP program, that should program the FTP program! | | Candice | http://linnea.com | +| | | | | | | | Everardo | http://daryl.net | +| | | | | | | | Jerrod | http://laila.com | +| | | | | | | | Caleigh | https://adolfo.com | +| | | | | | | | Daisha | http://justine.biz | +| | | | | | | | Americo | http://tessie.org | +| | | | | | | | Howard | https://luis.info | +| Investor Creative Architect | 4.5.6 | Overwrite | | The PCI microchip is down, input the cross-platform microchip so we can input the PCI microchip! | If we quantify the transmitter, we can get to the XML transmitter through the optical XML transmitter! | | Selmer | https://jairo.info | +| | | | | | | | Juanita | http://holly.name | +| | | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | | Adalberto | https://sister.biz | +| | | | | | | | Gerald | https://vidal.com | +| | | | | | | | Lucio | http://clemmie.info | +| Global Optimization Architect | 4.8.0 | Expression | | 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://gaylord.name | Vida | https://theresia.biz | +| | | | | | | | Ransom | http://isom.com | +| | | | | | | | Anastasia | http://kamryn.info | +| | | | | | | | Marlene | https://cyril.name | +| | | | | | | | Zetta | http://pete.org | +| | | | | | | | Candida | https://craig.biz | +| | | | | | | | Timmothy | https://joanny.biz | +| Lead Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Regional Paradigm Assistant | 9.8.0 | Url | | If we input the transmitter, we can get to the HDD transmitter through the bluetooth HDD transmitter! | | | Jordan | https://kathryne.name | +| | | | | | | | Mayra | http://lance.name | +| | | | | | | | Jimmie | https://lorine.org | +| | | | | | | | Rebeka | https://malika.org | +| | | | | | | | Trinity | http://fritz.info | +| | | | | | | | Neha | https://marianne.name | +| | | | | | | | Colin | https://billie.biz | +| | | | | | | | Brielle | https://brennon.name | +| | | | | | | | Myriam | https://rosemary.name | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | Edmund | http://sadie.info | +| | | | | | | | Horacio | https://loraine.name | +| | | | | | | | Sandra | https://emil.info | +| | | | | | | | Dayana | https://leila.info | +| | | | | | | | Micah | http://darien.com | +| | | | | | | | Ethel | http://shakira.net | +| Dynamic Data Director | 8.6.8 | Overwrite | | | We need to back up the primary SMTP circuit! | https://timothy.info | Kirsten | http://madisyn.com | +| | | | | | | | Murray | https://destinee.com | +| | | | | | | | Emanuel | https://keely.info | +| | | | | | | | Obie | https://caleigh.net | +| | | | | | | | Albin | http://flavie.com | +| | | | | | | | Lavonne | http://kaitlyn.com | +| | | | | | | | Osborne | https://joesph.name | +| | | | | | | | Michael | https://kali.com | +| Investor Usability Producer | 9.7.6 | Url | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | Jett | https://randal.biz | +| | | | | | | | Leif | http://chaz.name | +| | | | | | | | Tristian | http://susie.com | +| | | | | | | | Carmelo | https://kariane.com | +| | | | | | | | Sofia | http://daphnee.name | +| | | | | | | | Nedra | http://orland.info | +| | | | | | | | Hilton | http://shany.info | +| Dynamic Program Associate | 5.9.7 | Expression | | | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Suzanne | http://ima.name | +| | | | | | | | Earnestine | http://nathanial.biz | +| | | | | | | | Connor | https://augustus.net | +| | | | | | | | Araceli | http://hailey.biz | +| | | | | | | | Janessa | https://craig.com | +| | | | | | | | Erica | http://kristin.org | +| | | | | | | | Alek | http://shany.biz | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| Corporate Tactics Analyst | 3.0.8 | Overwrite | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | Use the virtual RAM monitor, then you can override the virtual monitor! | | | Hildegard | http://conner.name | +| | | | | | | | 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 | +| | | | | | | | Irving | https://sydnie.org | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Dynamic Quality Officer | 8.9.2 | Ignored | | | | https://danika.org | Jadon | https://amelia.biz | +| | | | | | | | Toni | http://angie.name | +| | | | | | | | Ardella | http://melissa.net | +| | | | | | | | Sandra | http://pearline.org | +| | | | | | | | Noble | https://dusty.net | +| Human Accounts Executive | 7.6.7 | Unknown | Use the auxiliary PNG interface, then you can generate the auxiliary interface! | | You can't connect the interface without backing up the optical SMTP interface! | http://kristin.net | Seamus | http://maybell.info | +| | | | | | | | Monserrat | http://katrine.name | +| | | | | | | | Abel | https://geovany.com | +| | | | | | | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| Lead Integration Engineer | 8.7.4 | Unknown | | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | http://jackeline.biz | Reanna | http://buck.net | +| | | | | | | | Christine | http://demarco.name | +| | | | | | | | Marge | http://astrid.net | +| | | | | | | | Charlene | http://rod.net | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8d5b897372f014f7.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8d5b897372f014f7.verified.txt new file mode 100644 index 00000000..a15c298f --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8d5b897372f014f7.verified.txt @@ -0,0 +1,103 @@ +| --------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | --------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| --------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | --------------------- | --------- | --------------------- | +| Human Implementation Designer | 8.3.7 | Unknown | Try to navigate the RSS card, maybe it will navigate the haptic card! | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Customer Configuration Manager | 1.6.8 | Unknown | I'll program the online RSS card, that should card the RSS card! | http://sylvan.net | | | +| Dynamic Communications Supervisor | 2.6.8 | Overwrite | | https://carol.biz | | | +| District Factors Producer | 1.6.6 | Unknown | If we reboot the panel, we can get to the THX panel through the solid state THX panel! | | | | +| Human Configuration Assistant | 0.1.1 | Unknown | I'll bypass the solid state SMS system, that should system the SMS system! | http://frederick.com | | | +| Principal Implementation Director | 7.1.6 | Unknown | We need to transmit the auxiliary FTP transmitter! | http://pearlie.org | | | +| Dynamic Configuration Specialist | 8.8.8 | Overwrite | Use the 1080p XML circuit, then you can generate the 1080p circuit! | http://brown.com | | | +| Corporate Creative Liaison | 2.9.9 | Overwrite | | http://albert.org | | | +| Dynamic Security Technician | 6.8.3 | Unknown | | | | | +| Customer Security Representative | 3.7.3 | Expression | The GB circuit is down, hack the redundant circuit so we can hack the GB circuit! | https://jalon.net | | | +| Internal Accounts Consultant | 6.3.4 | Expression | Try to connect the SMS feed, maybe it will connect the mobile feed! | https://elda.info | | | +| Global Security Liaison | 8.1.2 | Expression | | | | | +| Forward Quality Producer | 6.3.7 | Overwrite | The CSS microchip is down, back up the bluetooth microchip so we can back up the CSS microchip! | https://jayne.name | | | +| Chief Implementation Assistant | 6.1.2 | Unknown | | http://cathryn.biz | | | +| Customer Operations Officer | 2.6.0 | Overwrite | Use the bluetooth USB alarm, then you can override the bluetooth alarm! | http://antonette.org | | | +| Product Quality Analyst | 3.6.5 | Overwrite | You can't parse the port without bypassing the multi-byte GB port! | https://delbert.com | | | +| Central Markets Officer | 6.8.8 | Expression | | | | | +| Customer Directives Director | 7.9.2 | Overwrite | Try to hack the COM panel, maybe it will hack the auxiliary panel! | | | | +| International Identity Planner | 4.2.1 | Expression | You can't compress the capacitor without copying the virtual USB capacitor! | | | | +| Central Interactions Manager | 7.0.9 | Expression | | | | | +| National Communications Facilitator | 3.1.0 | Url | quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter! | | | | +| Lead Tactics Executive | 6.2.9 | Unknown | | https://lowell.org | | | +| Internal Division Agent | 2.4.2 | Unknown | | | | | +| Corporate Paradigm Representative | 7.0.2 | Overwrite | You can't quantify the capacitor without hacking the neural SMS capacitor! | | | | +| Customer Integration Agent | 3.6.0 | Expression | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | | | | +| Regional Markets Supervisor | 7.7.6 | Expression | If we transmit the system, we can get to the SMTP system through the virtual SMTP system! | | | | +| Human Solutions Assistant | 1.9.8 | Expression | Try to parse the PNG panel, maybe it will parse the haptic panel! | http://carter.info | | | +| Legacy Data Facilitator | 0.9.0 | Overwrite | bypassing the program won't do anything, we need to bypass the optical AI program! | https://beatrice.net | | | +| Customer Implementation Director | 5.9.1 | Unknown | | | | | +| Dynamic Interactions Facilitator | 6.8.2 | Expression | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | +| Principal Optimization Representative | 0.4.8 | Overwrite | If we index the system, we can get to the XSS system through the cross-platform XSS system! | | | | +| Global Response Coordinator | 9.7.3 | Overwrite | Use the solid state SQL firewall, then you can connect the solid state firewall! | https://zelda.net | | | +| Internal Infrastructure Strategist | 7.2.2 | Overwrite | I'll transmit the optical XML sensor, that should sensor the XML sensor! | http://ahmad.com | | | +| National Tactics Architect | 6.7.8 | Url | We need to parse the auxiliary SAS capacitor! | https://margaret.net | | | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Chief Accounts Associate | 8.5.5 | Unknown | You can't generate the panel without compressing the neural SAS panel! | | | | +| Principal Web Facilitator | 5.4.5 | Overwrite | compressing the firewall won't do anything, we need to copy the bluetooth COM firewall! | http://paris.name | | | +| National Accounts Associate | 2.7.6 | Overwrite | | | | | +| Central Marketing Technician | 8.7.2 | Overwrite | Use the cross-platform GB capacitor, then you can parse the cross-platform capacitor! | http://albina.org | | | +| Internal Factors Facilitator | 2.6.3 | Overwrite | | http://melba.name | | | +| Dynamic Configuration Executive | 4.7.6 | Unknown | If we parse the transmitter, we can get to the ADP transmitter through the online ADP transmitter! | | | | +| Chief Division Director | 3.4.7 | Unknown | Try to override the CSS microchip, maybe it will override the primary microchip! | http://alejandrin.biz | | | +| Chief Infrastructure Consultant | 4.1.2 | Url | Use the multi-byte IB feed, then you can navigate the multi-byte feed! | https://theron.info | | | +| Internal Branding Supervisor | 6.7.4 | Url | I'll copy the auxiliary PCI panel, that should panel the PCI panel! | | | | +| Future Markets Architect | 9.0.8 | Overwrite | | | | | +| Principal Intranet Liaison | 5.1.0 | Overwrite | I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor! | http://neva.info | | | +| Central Integration Analyst | 0.4.0 | Overwrite | If we synthesize the protocol, we can get to the JBOD protocol through the multi-byte JBOD protocol! | https://laverne.name | | | +| National Identity Technician | 7.4.9 | Overwrite | Try to parse the SMTP feed, maybe it will parse the multi-byte feed! | https://benedict.org | | | +| Central Marketing Director | 3.2.5 | Overwrite | | https://anibal.net | | | +| District Web Developer | 6.1.9 | Unknown | | http://arthur.net | | | +| Dynamic Functionality Consultant | 4.9.1 | Unknown | | https://lonnie.info | | | +| Dynamic Functionality Agent | 5.9.5 | Unknown | | http://annabelle.net | | | +| National Tactics Engineer | 3.7.5 | Url | generating the matrix won't do anything, we need to override the redundant GB matrix! | https://alexys.org | | | +| Chief Assurance Associate | 3.3.1 | Url | overriding the panel won't do anything, we need to parse the open-source IB panel! | https://tyrese.info | | | +| Global Markets Executive | 2.5.8 | Expression | | | | | +| Future Accounts Producer | 9.4.3 | Unknown | You can't override the port without indexing the neural THX port! | | | | +| Customer Quality Technician | 9.7.0 | Unknown | If we index the card, we can get to the XSS card through the neural XSS card! | | | | +| Product Applications Assistant | 2.8.4 | Overwrite | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | https://carleton.info | | | +| Investor Accountability Officer | 2.4.3 | Overwrite | | | | | +| Forward Functionality Analyst | 4.5.1 | Expression | | http://orie.name | | | +| Global Usability Representative | 3.5.9 | Url | | | | | +| Principal Markets Designer | 3.8.8 | Url | overriding the transmitter won't do anything, we need to generate the cross-platform SCSI transmitter! | | | | +| Product Implementation Officer | 1.9.9 | Unknown | Try to back up the AGP system, maybe it will back up the 1080p system! | | | | +| National Solutions Associate | 9.1.2 | Expression | | | | | +| Direct Assurance Supervisor | 4.1.8 | Overwrite | | https://aniyah.org | | | +| International Research Director | 4.1.0 | Url | Try to synthesize the SDD hard drive, maybe it will synthesize the bluetooth hard drive! | | | | +| Product Identity Architect | 5.6.4 | Url | The GB bus is down, back up the redundant bus so we can back up the GB bus! | http://darian.org | | | +| Regional Security Architect | 2.2.5 | Url | | | | | +| National Creative Executive | 7.5.7 | Unknown | | http://mallory.biz | | | +| Human Usability Associate | 5.2.5 | Expression | You can't override the capacitor without overriding the mobile XML capacitor! | http://hunter.info | | | +| Human Directives Engineer | 5.3.9 | Url | | | | | +| Chief Marketing Assistant | 7.3.5 | Expression | | | | | +| District Branding Analyst | 1.9.5 | Url | | https://paula.net | | | +| Human Creative Engineer | 7.5.1 | Unknown | | | | | +| Chief Mobility Planner | 7.1.0 | Overwrite | | | | | +| Corporate Accountability Representative | 2.3.2 | Unknown | | | | | +| Global Usability Producer | 4.9.5 | Expression | If we hack the application, we can get to the PCI application through the 1080p PCI application! | | | | +| Dynamic Brand Technician | 2.5.6 | Expression | | http://lesly.info | | | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source 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 Integration Liaison | 1.8.8 | Url | | https://sean.com | | | +| Corporate Data Strategist | 9.0.0 | Url | | http://eli.net | | | +| --------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | --------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8d8cd89d7a5694ec.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8d8cd89d7a5694ec.verified.txt new file mode 100644 index 00000000..0eabed30 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8d8cd89d7a5694ec.verified.txt @@ -0,0 +1,46 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8ef6f9b5c0b9a40f.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8ef6f9b5c0b9a40f.verified.txt new file mode 100644 index 00000000..3f3f433d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8ef6f9b5c0b9a40f.verified.txt @@ -0,0 +1,45 @@ +| ----------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | +| National Tactics Engineer | 3.7.5 | Url | generating the matrix won't do anything, we need to override the redundant GB matrix! | https://alexys.org | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Dynamic Functionality Agent | 5.9.5 | Unknown | | http://annabelle.net | | | +| Central Integration Analyst | 0.4.0 | Overwrite | If we synthesize the protocol, we can get to the JBOD protocol through the multi-byte JBOD protocol! | https://laverne.name | | | +| Dynamic Security Technician | 6.8.3 | Unknown | | | | | +| Global Security Liaison | 8.1.2 | Expression | | | | | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Central Interactions Manager | 7.0.9 | Expression | | | | | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Forward Functionality Analyst | 4.5.1 | Expression | | http://orie.name | | | +| Customer Operations Officer | 2.6.0 | Overwrite | Use the bluetooth USB alarm, then you can override the bluetooth alarm! | http://antonette.org | | | +| District Branding Analyst | 1.9.5 | Url | | https://paula.net | | | +| Customer Directives Director | 7.9.2 | Overwrite | Try to hack the COM panel, maybe it will hack the auxiliary panel! | | | | +| Product Applications Assistant | 2.8.4 | Overwrite | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | https://carleton.info | | | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Forward Quality Producer | 6.3.7 | Overwrite | The CSS microchip is down, back up the bluetooth microchip so we can back up the CSS microchip! | https://jayne.name | | | +| Chief Assurance Associate | 3.3.1 | Url | overriding the panel won't do anything, we need to parse the open-source IB panel! | https://tyrese.info | | | +| National Communications Facilitator | 3.1.0 | Url | quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter! | | | | +| Regional Security Architect | 2.2.5 | Url | | | | | +| Global Usability Representative | 3.5.9 | Url | | | | | +| ----------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8f081a7acd9fe2e6.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8f081a7acd9fe2e6.verified.txt new file mode 100644 index 00000000..0eabed30 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8f081a7acd9fe2e6.verified.txt @@ -0,0 +1,46 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8f7570952c268c8f.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8f7570952c268c8f.verified.txt new file mode 100644 index 00000000..56dca99a --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8f7570952c268c8f.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | --------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | --------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | --------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8fd63972fb6f8677.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8fd63972fb6f8677.verified.txt new file mode 100644 index 00000000..438a2516 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_8fd63972fb6f8677.verified.txt @@ -0,0 +1,142 @@ +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Group Assistant | 1.7.9 | Expression | Use the multi-byte AI port, then you can reboot the multi-byte port! | | | Darien | http://mitchel.biz | +| | | | | | | Carleton | https://madalyn.com | +| | | | | | | Narciso | https://mia.com | +| | | | | | | Nicklaus | https://abelardo.com | +| | | | | | | Carolina | https://lindsey.info | +| | | | | | | Rigoberto | https://lou.biz | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| Investor Creative Architect | 4.5.6 | Overwrite | | Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| | | | | | | Retta | https://lottie.biz | +| | | | | | | Yasmine | http://delia.com | +| | | | | | | Khalil | http://jewel.net | +| | | | | | | Roy | https://johanna.org | +| | | | | | | Price | https://itzel.info | +| | | | | | | Dalton | https://daren.info | +| | | | | | | Arnold | http://arlo.org | +| Customer Program Consultant | 5.0.4 | Ignored | Try to compress the GB system, maybe it will compress the neural system! | Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan | http://kieran.biz | Bettie | http://edmund.info | +| | | | | | | Sadie | http://horacio.org | +| | | | | | | Loraine | https://sandra.org | +| | | | | | | Emil | http://dayana.net | +| Internal Solutions Planner | 1.3.8 | Expression | | Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| | | | | | | Mallory | http://angeline.name | +| Lead Creative Administrator | 9.0.0 | Overwrite | Use the virtual RAM monitor, then you can override the virtual monitor! | | https://roderick.net | Hildegard | http://conner.name | +| | | | | | | 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 | +| | | | | | | Irving | https://sydnie.org | +| Corporate Accountability Designer | 0.8.0 | Overwrite | We need to hack the online FTP application! | | http://taya.info | Carlee | http://britney.name | +| | | | | | | Tess | http://julian.biz | +| | | | | | | Isadore | http://billy.net | +| | | | | | | Alice | http://vern.net | +| | | | | | | King | http://trace.net | +| | | | | | | Carmela | https://adolf.info | +| | | | | | | Sherman | http://alec.net | +| | | | | | | Lamar | http://deion.org | +| Chief Data Director | 2.1.5 | Unknown | Use the haptic PCI bandwidth, then you can generate the haptic bandwidth! | | | Earnestine | http://nathanial.biz | +| | | | | | | Connor | https://augustus.net | +| | | | | | | Araceli | http://hailey.biz | +| | | | | | | Janessa | https://craig.com | +| | | | | | | Erica | http://kristin.org | +| | | | | | | Alek | http://shany.biz | +| | | | | | | Camren | http://joany.info | +| Future Mobility Strategist | 4.7.6 | Overwrite | Use the virtual ADP bandwidth, then you can calculate the virtual bandwidth! | | http://gerardo.net | Cathy | http://giovanna.info | +| | | | | | | Ike | https://jerome.biz | +| | | | | | | Emerald | https://camren.net | +| | | | | | | Sheila | https://garry.org | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| Dynamic Group Associate | 6.6.1 | Unknown | We need to input the open-source SMTP bus! | | http://kian.name | Neil | https://burley.info | +| | | | | | | Lemuel | http://brenden.info | +| | | | | | | Agnes | https://urban.org | +| | | | | | | Micheal | https://ida.net | +| | | | | | | Murray | https://samanta.com | +| | | | | | | Assunta | http://florencio.com | +| Product Marketing Developer | 3.3.6 | Unknown | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | Lewis | https://alisa.com | +| | | | | | | Delores | https://layne.name | +| | | | | | | Delphine | https://katlynn.org | +| | | | | | | Meredith | https://johanna.info | +| | | | | | | Jacklyn | https://kadin.com | +| | | | | | | Hardy | https://donna.info | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Investor Identity Developer | 4.2.0 | Url | | Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| | | | | | | Keely | http://obie.org | +| | | | | | | Caleigh | https://albin.info | +| | | | | | | Flavie | http://lavonne.biz | +| | | | | | | Kaitlyn | http://osborne.org | +| Global Infrastructure Developer | 5.5.0 | Url | generating the application won't do anything, we need to calculate the auxiliary JSON application! | Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger | https://austin.net | 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 | +| Direct Tactics Technician | 2.8.6 | Unknown | Try to quantify the SAS port, maybe it will quantify the wireless port! | | | Demond | http://stefan.name | +| | | | | | | Norval | http://annie.net | +| | | | | | | Destin | http://penelope.name | +| Product Identity Analyst | 5.9.3 | Expression | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | | Rey | https://connie.info | +| | | | | | | Hollie | http://rico.name | +| | | | | | | Marshall | http://pierce.org | +| | | | | | | 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 | +| Future Response Consultant | 9.3.1 | Unknown | | | https://ulices.biz | Ari | https://chad.com | +| | | | | | | Yvonne | http://jada.name | +| | | | | | | Noemie | https://kayley.name | +| | | | | | | Brandon | http://kristopher.name | +| | | | | | | Maggie | http://kimberly.info | +| | | | | | | Veronica | https://mya.net | +| | | | | | | Marty | https://obie.net | +| | | | | | | Braxton | http://flavio.net | +| | | | | | | Jeramie | http://jaycee.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9013bb99ab138e4f.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9013bb99ab138e4f.verified.txt new file mode 100644 index 00000000..bd84005d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9013bb99ab138e4f.verified.txt @@ -0,0 +1,35 @@ +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9044fbb4e1aa6c22.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9044fbb4e1aa6c22.verified.txt new file mode 100644 index 00000000..43ec7d1f --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9044fbb4e1aa6c22.verified.txt @@ -0,0 +1,16 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Investor Intranet Producer | 5.4.1 | Ignored | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | http://hyman.org | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9072a73cb215b901.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9072a73cb215b901.verified.txt new file mode 100644 index 00000000..504c8f0a --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9072a73cb215b901.verified.txt @@ -0,0 +1,143 @@ +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Response Consultant | 9.3.1 | Unknown | | | https://ulices.biz | Ari | https://chad.com | +| | | | | | | Yvonne | http://jada.name | +| | | | | | | Noemie | https://kayley.name | +| | | | | | | Brandon | http://kristopher.name | +| | | | | | | Maggie | http://kimberly.info | +| | | | | | | Veronica | https://mya.net | +| | | | | | | Marty | https://obie.net | +| | | | | | | Braxton | http://flavio.net | +| | | | | | | Jeramie | http://jaycee.net | +| Future Group Assistant | 1.7.9 | Expression | Use the multi-byte AI port, then you can reboot the multi-byte port! | | | Darien | http://mitchel.biz | +| | | | | | | Carleton | https://madalyn.com | +| | | | | | | Narciso | https://mia.com | +| | | | | | | Nicklaus | https://abelardo.com | +| | | | | | | Carolina | https://lindsey.info | +| | | | | | | Rigoberto | https://lou.biz | +| Corporate Accountability Designer | 0.8.0 | Overwrite | We need to hack the online FTP application! | | http://taya.info | Carlee | http://britney.name | +| | | | | | | Tess | http://julian.biz | +| | | | | | | Isadore | http://billy.net | +| | | | | | | Alice | http://vern.net | +| | | | | | | King | http://trace.net | +| | | | | | | Carmela | https://adolf.info | +| | | | | | | Sherman | http://alec.net | +| | | | | | | Lamar | http://deion.org | +| Direct Tactics Technician | 2.8.6 | Unknown | Try to quantify the SAS port, maybe it will quantify the wireless port! | | | Demond | http://stefan.name | +| | | | | | | Norval | http://annie.net | +| | | | | | | Destin | http://penelope.name | +| Customer Program Consultant | 5.0.4 | Ignored | Try to compress the GB system, maybe it will compress the neural system! | Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan | http://kieran.biz | Bettie | http://edmund.info | +| | | | | | | Sadie | http://horacio.org | +| | | | | | | Loraine | https://sandra.org | +| | | | | | | Emil | http://dayana.net | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| Investor Identity Developer | 4.2.0 | Url | | Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| | | | | | | Keely | http://obie.org | +| | | | | | | Caleigh | https://albin.info | +| | | | | | | Flavie | http://lavonne.biz | +| | | | | | | Kaitlyn | http://osborne.org | +| Product Identity Analyst | 5.9.3 | Expression | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | | Rey | https://connie.info | +| | | | | | | Hollie | http://rico.name | +| | | | | | | Marshall | http://pierce.org | +| | | | | | | 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 | +| Lead Creative Administrator | 9.0.0 | Overwrite | Use the virtual RAM monitor, then you can override the virtual monitor! | | https://roderick.net | Hildegard | http://conner.name | +| | | | | | | 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 | +| | | | | | | Irving | https://sydnie.org | +| Chief Data Director | 2.1.5 | Unknown | Use the haptic PCI bandwidth, then you can generate the haptic bandwidth! | | | Earnestine | http://nathanial.biz | +| | | | | | | Connor | https://augustus.net | +| | | | | | | Araceli | http://hailey.biz | +| | | | | | | Janessa | https://craig.com | +| | | | | | | Erica | http://kristin.org | +| | | | | | | Alek | http://shany.biz | +| | | | | | | Camren | http://joany.info | +| Product Marketing Developer | 3.3.6 | Unknown | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | Lewis | https://alisa.com | +| | | | | | | Delores | https://layne.name | +| | | | | | | Delphine | https://katlynn.org | +| | | | | | | Meredith | https://johanna.info | +| | | | | | | Jacklyn | https://kadin.com | +| | | | | | | Hardy | https://donna.info | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| Dynamic Group Associate | 6.6.1 | Unknown | We need to input the open-source SMTP bus! | | http://kian.name | Neil | https://burley.info | +| | | | | | | Lemuel | http://brenden.info | +| | | | | | | Agnes | https://urban.org | +| | | | | | | Micheal | https://ida.net | +| | | | | | | Murray | https://samanta.com | +| | | | | | | Assunta | http://florencio.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Mobility Strategist | 4.7.6 | Overwrite | Use the virtual ADP bandwidth, then you can calculate the virtual bandwidth! | | http://gerardo.net | Cathy | http://giovanna.info | +| | | | | | | Ike | https://jerome.biz | +| | | | | | | Emerald | https://camren.net | +| | | | | | | Sheila | https://garry.org | +| Internal Solutions Planner | 1.3.8 | Expression | | Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| | | | | | | Mallory | http://angeline.name | +| Investor Creative Architect | 4.5.6 | Overwrite | | Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| | | | | | | Retta | https://lottie.biz | +| | | | | | | Yasmine | http://delia.com | +| | | | | | | Khalil | http://jewel.net | +| | | | | | | Roy | https://johanna.org | +| | | | | | | Price | https://itzel.info | +| | | | | | | Dalton | https://daren.info | +| | | | | | | Arnold | http://arlo.org | +| Global Infrastructure Developer | 5.5.0 | Url | generating the application won't do anything, we need to calculate the auxiliary JSON application! | Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger | https://austin.net | 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 Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_908ab95a4f83e2a1.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_908ab95a4f83e2a1.verified.txt new file mode 100644 index 00000000..949fa777 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_908ab95a4f83e2a1.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Paige | https://remington.info | +| | | | | Aletha | https://isobel.info | +| | | | | Pearline | https://johnathon.info | +| | | | | Eleanora | http://jaeden.info | +| | | | | Nikolas | https://daphney.net | +| | | | | Oceane | http://clifton.com | +| | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_909b106d4e6ee186.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_909b106d4e6ee186.verified.txt new file mode 100644 index 00000000..1781147e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_909b106d4e6ee186.verified.txt @@ -0,0 +1,187 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | ---------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | ---------------------- | ---------- | --------------------- | +| Future Configuration Officer | 7.6.0 | Expression | You can't compress the alarm without parsing the optical JBOD alarm! | 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! | | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Direct Creative Planner | 9.7.2 | Unknown | Try to connect the TCP circuit, maybe it will connect the back-end circuit! | synthesizing the circuit won't do anything, we need to override the neural XML circuit! | bypassing the matrix won't do anything, we need to copy the wireless PCI matrix! | | | | +| District Data Executive | 9.4.3 | Expression | | The FTP transmitter is down, compress the auxiliary transmitter so we can compress the FTP transmitter! | | | | | +| Human Accounts Representative | 4.5.5 | Url | | | The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall! | https://darien.net | | | +| Forward Communications Engineer | 4.5.2 | Overwrite | Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor! | | | | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| Dynamic Accountability Engineer | 3.1.8 | Url | | Use the online RAM program, then you can generate the online program! | I'll back up the back-end JSON card, that should card the JSON card! | https://gerson.com | | | +| International Data Coordinator | 1.7.7 | Unknown | | connecting the system won't do anything, we need to navigate the solid state HDD system! | | | | | +| Forward Infrastructure Developer | 7.5.6 | Unknown | Try to override the SCSI microchip, maybe it will override the haptic microchip! | programming the monitor won't do anything, we need to parse the online XML monitor! | You can't index the circuit without copying the auxiliary RSS circuit! | | | | +| Central Infrastructure Agent | 6.1.6 | Expression | | | You can't quantify the program without overriding the online SDD program! | | | | +| Lead Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Product Usability Coordinator | 5.4.7 | Overwrite | The GB panel is down, synthesize the neural panel so we can synthesize the GB panel! | You can't copy the system without indexing the virtual XSS system! | If we override the hard drive, we can get to the RSS hard drive through the multi-byte RSS hard drive! | | | | +| Human Accounts Executive | 7.6.7 | Unknown | Use the auxiliary PNG interface, then you can generate the auxiliary interface! | | You can't connect the interface without backing up the optical SMTP interface! | http://kristin.net | Seamus | http://maybell.info | +| | | | | | | | Monserrat | http://katrine.name | +| | | | | | | | Abel | https://geovany.com | +| | | | | | | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| Future Accountability Officer | 2.5.3 | Unknown | | | | http://henderson.biz | | | +| Dynamic Quality Analyst | 0.9.5 | Unknown | We need to index the optical HTTP application! | 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! | | | | +| Internal Program Administrator | 0.3.5 | Expression | We need to navigate the multi-byte PNG application! | The SMS hard drive is down, parse the mobile hard drive so we can parse the SMS hard drive! | The HTTP bandwidth is down, synthesize the 1080p bandwidth so we can synthesize the HTTP bandwidth! | http://viviane.com | | | +| Legacy Infrastructure Producer | 1.1.2 | Unknown | | If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit! | | | | | +| Legacy Interactions Analyst | 3.0.8 | Url | hacking the hard drive won't do anything, we need to generate the open-source RSS hard drive! | connecting the system won't do anything, we need to synthesize the mobile ADP system! | | | | | +| Dynamic Division Agent | 4.2.8 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | https://camilla.info | | | +| Investor Accountability Officer | 2.4.3 | Unknown | | Use the digital XSS hard drive, then you can compress the digital hard drive! | You can't generate the card without synthesizing the bluetooth PNG card! | | | | +| District Implementation Executive | 3.9.4 | Overwrite | | | | http://fae.org | | | +| Human Program Analyst | 3.1.8 | Expression | If we back up the application, we can get to the USB application through the cross-platform USB application! | | | http://efrain.org | | | +| Dynamic Creative Designer | 7.5.8 | Expression | The XML system is down, hack the bluetooth system so we can hack the XML system! | | The GB program is down, program the back-end program so we can program the GB program! | http://daniela.name | | | +| Lead Intranet Director | 9.2.4 | Url | | You can't parse the bandwidth without transmitting the open-source USB bandwidth! | If we parse the driver, we can get to the GB driver through the neural GB driver! | https://dane.name | | | +| Dynamic Applications Producer | 0.4.7 | Url | Try to input the AI sensor, maybe it will input the digital sensor! | If we program the array, we can get to the JBOD array through the primary JBOD array! | | http://horace.com | | | +| District Intranet Engineer | 7.5.5 | Unknown | 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! | | | | | +| Global Optimization Architect | 4.8.0 | Expression | | 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://gaylord.name | Vida | https://theresia.biz | +| | | | | | | | Ransom | http://isom.com | +| | | | | | | | Anastasia | http://kamryn.info | +| | | | | | | | Marlene | https://cyril.name | +| | | | | | | | Zetta | http://pete.org | +| | | | | | | | Candida | https://craig.biz | +| | | | | | | | Timmothy | https://joanny.biz | +| Central Creative Analyst | 3.6.4 | Overwrite | | programming the driver won't do anything, we need to calculate the primary SMTP driver! | | | | | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | Edmund | http://sadie.info | +| | | | | | | | Horacio | https://loraine.name | +| | | | | | | | Sandra | https://emil.info | +| | | | | | | | Dayana | https://leila.info | +| | | | | | | | Micah | http://darien.com | +| | | | | | | | Ethel | http://shakira.net | +| Forward Web Assistant | 5.9.6 | 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! | The SSL application is down, reboot the bluetooth application so we can reboot the SSL application! | | | | +| Dynamic Data Director | 8.6.8 | Overwrite | | | We need to back up the primary SMTP circuit! | https://timothy.info | Kirsten | http://madisyn.com | +| | | | | | | | Murray | https://destinee.com | +| | | | | | | | Emanuel | https://keely.info | +| | | | | | | | Obie | https://caleigh.net | +| | | | | | | | Albin | http://flavie.com | +| | | | | | | | Lavonne | http://kaitlyn.com | +| | | | | | | | Osborne | https://joesph.name | +| | | | | | | | Michael | https://kali.com | +| Direct Web Orchestrator | 1.9.1 | Overwrite | You can't copy the alarm without synthesizing the 1080p IB alarm! | | parsing the card won't do anything, we need to synthesize the online SQL card! | https://kade.com | | | +| 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 Infrastructure Executive | 4.8.1 | Overwrite | | | Try to index the FTP transmitter, maybe it will index the bluetooth transmitter! | https://justice.info | | | +| Corporate Implementation Technician | 2.8.4 | Url | | If we compress the protocol, we can get to the COM protocol through the mobile COM protocol! | Use the multi-byte SMTP program, then you can synthesize the multi-byte program! | | | | +| Forward Factors Director | 5.7.8 | Expression | | | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | | | +| International Accounts Liaison | 5.6.7 | Expression | We need to program the virtual SCSI circuit! | We need to generate the auxiliary GB hard drive! | transmitting the port won't do anything, we need to override the haptic JSON port! | | | | +| Principal Branding Assistant | 8.2.6 | Expression | 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! | We need to hack the auxiliary COM hard drive! | | | | +| Direct Data Designer | 8.4.8 | Unknown | | | We need to transmit the virtual JSON bus! | | | | +| Legacy Creative Liaison | 0.4.6 | Expression | | The SMS system is down, back up the open-source system so we can back up the SMS system! | I'll connect the optical FTP program, that should program the FTP program! | | Candice | http://linnea.com | +| | | | | | | | Everardo | http://daryl.net | +| | | | | | | | Jerrod | http://laila.com | +| | | | | | | | Caleigh | https://adolfo.com | +| | | | | | | | Daisha | http://justine.biz | +| | | | | | | | Americo | http://tessie.org | +| | | | | | | | Howard | https://luis.info | +| Regional Configuration Engineer | 7.3.8 | Expression | Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter! | You can't reboot the matrix without navigating the optical SDD matrix! | | http://roman.org | | | +| Dynamic Group Producer | 5.9.5 | Unknown | We need to hack the multi-byte EXE bus! | If we connect the program, we can get to the SQL program through the digital SQL program! | | https://sonny.com | | | +| Future Marketing Technician | 7.6.7 | Unknown | | overriding the firewall won't do anything, we need to reboot the open-source COM firewall! | | http://abbey.biz | | | +| District Branding Analyst | 1.9.5 | Unknown | | | | https://paula.net | | | +| Principal Intranet Manager | 3.8.8 | Expression | | | | | | | +| Human Response Executive | 6.4.4 | Unknown | If we transmit the matrix, we can get to the SDD matrix through the mobile SDD matrix! | | | https://maida.org | | | +| Future Interactions Facilitator | 7.6.9 | Expression | | If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit! | | | | | +| Internal Data Designer | 9.5.2 | Unknown | | hacking the card won't do anything, we need to hack the neural COM card! | The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive! | https://liana.com | | | +| Principal Accounts Officer | 2.1.8 | Overwrite | 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 Configuration Coordinator | 2.7.5 | Unknown | connecting the panel won't do anything, we need to bypass the wireless AGP panel! | | | | | | +| Dynamic Security Developer | 0.8.7 | Url | You can't back up the array without parsing the haptic CSS array! | | | https://adan.net | | | +| Investor Usability Producer | 9.7.6 | Url | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | Jett | https://randal.biz | +| | | | | | | | Leif | http://chaz.name | +| | | | | | | | Tristian | http://susie.com | +| | | | | | | | Carmelo | https://kariane.com | +| | | | | | | | Sofia | http://daphnee.name | +| | | | | | | | Nedra | http://orland.info | +| | | | | | | | Hilton | http://shany.info | +| Dynamic Program Associate | 5.9.7 | Expression | | | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Suzanne | http://ima.name | +| | | | | | | | Earnestine | http://nathanial.biz | +| | | | | | | | Connor | https://augustus.net | +| | | | | | | | Araceli | http://hailey.biz | +| | | | | | | | Janessa | https://craig.com | +| | | | | | | | Erica | http://kristin.org | +| | | | | | | | Alek | http://shany.biz | +| District Configuration Administrator | 8.4.4 | Url | | The XML transmitter is down, calculate the auxiliary transmitter so we can calculate the XML transmitter! | | https://david.name | | | +| Dynamic Factors Facilitator | 6.5.2 | Unknown | | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | | http://magnolia.com | | | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| Dynamic Quality Director | 4.9.9 | Unknown | | | | http://jesse.com | | | +| Investor Creative Architect | 4.5.6 | Overwrite | | The PCI microchip is down, input the cross-platform microchip so we can input the PCI microchip! | If we quantify the transmitter, we can get to the XML transmitter through the optical XML transmitter! | | Selmer | https://jairo.info | +| | | | | | | | Juanita | http://holly.name | +| | | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | | Adalberto | https://sister.biz | +| | | | | | | | Gerald | https://vidal.com | +| | | | | | | | Lucio | http://clemmie.info | +| Dynamic Directives Officer | 5.8.8 | Overwrite | | parsing the program won't do anything, we need to synthesize the haptic IB program! | If we program the microchip, we can get to the SMS microchip through the auxiliary SMS microchip! | http://rafaela.net | | | +| Global Markets Director | 3.4.9 | Unknown | The RAM card is down, override the open-source card so we can override the RAM card! | | | | | | +| Future Solutions Officer | 3.3.5 | Unknown | You can't override the hard drive without bypassing the mobile TCP hard drive! | | Use the online IB protocol, then you can back up the online protocol! | | | | +| Corporate Data Strategist | 9.0.0 | Url | | | Try to transmit the PNG capacitor, maybe it will transmit the solid state capacitor! | http://eli.net | | | +| Regional Security Engineer | 5.8.4 | Unknown | | | I'll hack the cross-platform SSL array, that should array the SSL array! | | | | +| International Data Associate | 6.4.8 | Unknown | If we navigate the array, we can get to the SQL array through the 1080p SQL array! | You can't generate the bandwidth without parsing the mobile EXE bandwidth! | | | | | +| Corporate Tactics Analyst | 3.0.8 | Overwrite | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | Use the virtual RAM monitor, then you can override the virtual monitor! | | | Hildegard | http://conner.name | +| | | | | | | | 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 | +| | | | | | | | Irving | https://sydnie.org | +| Senior Metrics Assistant | 8.7.4 | Unknown | | 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 Data Administrator | 9.0.6 | Overwrite | If we navigate the pixel, we can get to the SCSI pixel through the bluetooth SCSI pixel! | I'll program the multi-byte AI transmitter, that should transmitter the AI transmitter! | | https://serenity.info | | | +| National Directives Analyst | 8.2.7 | Overwrite | We need to compress the primary GB array! | | Use the mobile SCSI bus, then you can program the mobile bus! | | | | +| Regional Communications Officer | 3.3.2 | Overwrite | | We need to calculate the redundant THX feed! | | https://cortez.net | | | +| Human Configuration Assistant | 0.1.1 | Overwrite | I'll bypass the solid state SMS system, that should system the SMS system! | | parsing the driver won't do anything, we need to program the auxiliary IB driver! | http://frederick.com | | | +| Lead Integration Engineer | 8.7.4 | Unknown | | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | http://jackeline.biz | Reanna | http://buck.net | +| | | | | | | | Christine | http://demarco.name | +| | | | | | | | Marge | http://astrid.net | +| | | | | | | | Charlene | http://rod.net | +| Internal Division Agent | 2.4.2 | Expression | | Try to compress the TCP microchip, maybe it will compress the auxiliary microchip! | | | | | +| Senior Integration Engineer | 4.4.3 | Url | | | | | | | +| Forward Optimization Architect | 8.7.9 | Overwrite | | | backing up the feed won't do anything, we need to compress the haptic SMTP feed! | https://kyle.net | | | +| Central Marketing Assistant | 9.5.8 | Overwrite | I'll navigate the redundant RAM capacitor, that should capacitor the RAM capacitor! | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | http://julia.biz | | | +| National Functionality Orchestrator | 3.5.0 | Overwrite | If we quantify the array, we can get to the RAM array through the virtual RAM array! | overriding the card won't do anything, we need to hack the auxiliary HTTP card! | If we quantify the feed, we can get to the RAM feed through the neural RAM feed! | https://gina.name | | | +| Corporate Identity Coordinator | 9.8.3 | Url | | If we navigate the bus, we can get to the HDD bus through the primary HDD bus! | | | | | +| Senior Communications Director | 3.1.0 | Expression | | | I'll quantify the neural SCSI port, that should port the SCSI port! | | | | +| Forward Creative Developer | 9.6.7 | Unknown | | I'll transmit the online SSL feed, that should feed the SSL feed! | We need to synthesize the cross-platform SMS circuit! | http://pearline.com | | | +| Forward Division Strategist | 5.7.1 | Unknown | You can't reboot the program without transmitting the mobile SMTP program! | The SCSI circuit is down, index the open-source circuit so we can index the SCSI circuit! | Use the solid state HTTP microchip, then you can back up the solid state microchip! | https://esperanza.name | | | +| District Implementation Orchestrator | 0.1.4 | Url | I'll synthesize the cross-platform CSS panel, that should panel the CSS panel! | You can't navigate the panel without connecting the optical PNG panel! | | | | | +| Human Division Agent | 2.2.7 | Expression | | 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 | | | +| Lead Factors Designer | 0.9.2 | Url | You can't quantify the bandwidth without calculating the online RAM bandwidth! | | | | | | +| Central Marketing Orchestrator | 3.3.1 | Overwrite | | Try to parse the IB driver, maybe it will parse the 1080p driver! | We need to connect the bluetooth RSS application! | https://brice.net | | | +| Human Communications Supervisor | 6.0.1 | Overwrite | Use the cross-platform SAS feed, then you can bypass the cross-platform feed! | | I'll override the neural XML application, that should application the XML application! | http://ethan.name | | | +| Regional Paradigm Assistant | 9.8.0 | Url | | If we input the transmitter, we can get to the HDD transmitter through the bluetooth HDD transmitter! | | | Jordan | https://kathryne.name | +| | | | | | | | Mayra | http://lance.name | +| | | | | | | | Jimmie | https://lorine.org | +| | | | | | | | Rebeka | https://malika.org | +| | | | | | | | Trinity | http://fritz.info | +| | | | | | | | Neha | https://marianne.name | +| | | | | | | | Colin | https://billie.biz | +| | | | | | | | Brielle | https://brennon.name | +| | | | | | | | Myriam | https://rosemary.name | +| Internal Factors Designer | 1.9.6 | Url | | | | | | | +| Dynamic Functionality Strategist | 5.8.0 | Url | Use the digital HTTP card, then you can reboot the digital card! | The CSS port is down, quantify the virtual port so we can quantify the CSS port! | | http://filiberto.net | | | +| Legacy Research Associate | 9.9.5 | Url | | We need to navigate the bluetooth RAM bus! | | https://hildegard.name | | | +| Direct Usability Analyst | 3.4.8 | Overwrite | hacking the protocol won't do anything, we need to bypass the back-end SDD protocol! | Try to quantify the EXE program, maybe it will quantify the auxiliary program! | The FTP program is down, override the digital program so we can override the FTP program! | https://maritza.com | | | +| Principal Solutions Facilitator | 7.1.5 | Overwrite | | The RSS pixel is down, calculate the auxiliary pixel so we can calculate the RSS pixel! | | | | | +| Product Tactics Technician | 3.8.3 | Overwrite | If we index the protocol, we can get to the FTP protocol through the online FTP protocol! | Try to synthesize the SDD hard drive, maybe it will synthesize the bluetooth hard drive! | | https://jewel.name | | | +| Direct Factors Representative | 0.5.2 | Overwrite | You can't override the bandwidth without navigating the auxiliary ADP bandwidth! | backing up the system won't do anything, we need to synthesize the digital AI system! | | | | | +| Internal Branding Executive | 2.0.9 | Overwrite | | The SAS sensor is down, input the auxiliary sensor so we can input the SAS sensor! | You can't bypass the application without programming the solid state COM application! | https://efrain.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 | +| Product Directives Engineer | 8.2.3 | Unknown | transmitting the bus won't do anything, we need to navigate the online IB bus! | | We need to bypass the wireless PNG bus! | | | | +| Forward Integration Assistant | 4.8.5 | Expression | | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | ---------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_90c6d3128e45d9e0.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_90c6d3128e45d9e0.verified.txt new file mode 100644 index 00000000..19a4b785 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_90c6d3128e45d9e0.verified.txt @@ -0,0 +1,40 @@ +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_92283b45cfb12452.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_92283b45cfb12452.verified.txt new file mode 100644 index 00000000..b0d3969b --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_92283b45cfb12452.verified.txt @@ -0,0 +1,104 @@ +| ------------------------------------ | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | -------- | ---------------------- | +| National Creative Analyst | 6.3.1 | Expression | | The SSL feed is down, back up the cross-platform feed so we can back up the SSL feed! | | | | | | +| 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Direct Applications Assistant | 3.5.8 | Unknown | The PCI pixel is down, synthesize the multi-byte pixel so we can synthesize the PCI pixel! | If we back up the driver, we can get to the TCP driver through the redundant TCP driver! | We need to back up the 1080p COM interface! | | http://consuelo.info | | | +| Internal Program Engineer | 2.9.3 | Expression | I'll input the neural SQL application, that should application the SQL application! | You can't generate the hard drive without transmitting the haptic RAM hard drive! | I'll bypass the optical AGP feed, that should feed the AGP feed! | | http://cleta.org | | | +| Forward Research Associate | 3.4.7 | Url | | You can't navigate the capacitor without programming the solid state SQL capacitor! | | | | | | +| Forward Communications Director | 6.0.8 | Overwrite | Try to override the AI alarm, maybe it will override the online alarm! | We need to quantify the virtual TCP card! | | Kristin Bernhard,Kristin Bernhard | | | | +| Future Tactics Specialist | 0.2.2 | Overwrite | We need to override the primary SQL pixel! | We need to transmit the redundant EXE driver! | You can't calculate the hard drive without hacking the multi-byte FTP hard drive! | | | | | +| Regional Communications Strategist | 9.3.1 | Url | overriding the matrix won't do anything, we need to back up the solid state IB matrix! | Try to index the HDD panel, maybe it will index the haptic panel! | We need to index the bluetooth JSON pixel! | | http://eloisa.biz | | | +| Global Usability Manager | 9.1.0 | Overwrite | | Try to back up the THX interface, maybe it will back up the auxiliary interface! | | | http://vella.com | | | +| Global Configuration Consultant | 5.9.5 | Expression | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | bypassing the bus won't do anything, we need to calculate the virtual GB bus! | | Guadalupe Littel,Guadalupe Littel,Guadalupe Littel | | | | +| Lead Configuration Liaison | 1.8.9 | Expression | | connecting the transmitter won't do anything, we need to program the cross-platform XSS transmitter! | | | http://esther.biz | | | +| Forward Branding Strategist | 4.6.2 | Overwrite | | | The THX hard drive is down, compress the back-end hard drive so we can compress the THX hard drive! | | | | | +| Central Tactics Director | 4.6.7 | Url | backing up the system won't do anything, we need to parse the neural CSS system! | We need to transmit the back-end RSS transmitter! | | Doyle Osinski,Doyle Osinski,Doyle Osinski,Doyle Osinski | https://valentina.net | | | +| Human Group Agent | 3.2.2 | Url | | | generating the interface won't do anything, we need to hack the optical PCI interface! | Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser | https://vilma.com | | | +| Senior Brand Officer | 9.3.6 | Url | If we override the system, we can get to the HDD system through the haptic HDD system! | If we parse the bus, we can get to the XML bus through the solid state XML bus! | | | http://carol.name | | | +| Customer Interactions Representative | 0.8.8 | Url | We need to quantify the digital SSL array! | | | | http://heather.name | | | +| Regional Configuration Engineer | 7.3.8 | Expression | Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter! | You can't reboot the matrix without navigating the optical SDD matrix! | | | http://roman.org | | | +| Regional Factors Designer | 7.4.1 | Url | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | Use the haptic RSS port, then you can transmit the haptic port! | Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus | | | | +| Human Accountability Developer | 6.9.0 | Unknown | If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit! | | | | | | | +| Product Tactics Engineer | 5.6.9 | Overwrite | Use the online TCP driver, then you can navigate the online driver! | I'll transmit the open-source HTTP pixel, that should pixel the HTTP pixel! | transmitting the program won't do anything, we need to generate the multi-byte SAS program! | Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich | | | | +| International Marketing Officer | 7.2.8 | Expression | | | | Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk | | | | +| Corporate Intranet Agent | 9.1.8 | Url | We need to compress the 1080p GB circuit! | | The PCI driver is down, reboot the haptic driver so we can reboot the PCI driver! | Essie Hamill,Essie Hamill | http://precious.name | | | +| Senior Metrics Engineer | 8.3.4 | Overwrite | | Try to quantify the FTP bus, maybe it will quantify the optical bus! | | Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand | http://lou.net | | | +| Investor Usability Officer | 2.5.2 | Unknown | Try to program the XML capacitor, maybe it will program the haptic capacitor! | Use the optical SSL alarm, then you can bypass the optical alarm! | | Johnny Bernier | http://orlo.name | | | +| Principal Web Associate | 4.2.5 | Expression | | | If we index the hard drive, we can get to the XSS hard drive through the primary XSS hard drive! | Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles | | | | +| Central Factors Supervisor | 0.8.3 | Overwrite | If we transmit the monitor, we can get to the HTTP monitor through the digital HTTP monitor! | Use the optical IB transmitter, then you can navigate the optical transmitter! | If we back up the firewall, we can get to the TCP firewall through the multi-byte TCP firewall! | Kathleen Blick,Kathleen Blick,Kathleen Blick,Kathleen Blick,Kathleen Blick | http://clement.name | | | +| Direct Applications Designer | 1.5.1 | Unknown | | We need to connect the haptic TCP panel! | If we bypass the card, we can get to the HDD card through the auxiliary HDD card! | Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling | http://tito.name | | | +| International Branding Associate | 4.9.4 | Url | | 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://trinity.name | | | +| Global Solutions Administrator | 5.2.4 | Overwrite | We need to calculate the online SAS bandwidth! | If we index the bus, we can get to the CSS bus through the optical CSS bus! | | Nellie Oberbrunner | https://hailee.biz | | | +| Lead Program Engineer | 4.5.7 | Overwrite | | The PCI protocol is down, calculate the bluetooth protocol so we can calculate the PCI protocol! | | | | | | +| Corporate Division Executive | 4.7.8 | Url | I'll index the neural SDD bus, that should bus the SDD bus! | If we reboot the program, we can get to the SSL program through the primary SSL program! | | Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros | http://wilmer.com | | | +| National Solutions Representative | 5.6.2 | Overwrite | | | You can't synthesize the bandwidth without programming the solid state XSS bandwidth! | | | | | +| Legacy Solutions Architect | 7.9.3 | Url | | Try to input the AI sensor, maybe it will input the digital sensor! | If we program the array, we can get to the JBOD array through the primary JBOD array! | | | | | +| National Creative Officer | 5.5.6 | Overwrite | indexing the capacitor won't do anything, we need to reboot the redundant FTP capacitor! | | The TCP array is down, bypass the mobile array so we can bypass the TCP array! | | http://orpha.name | | | +| Forward Tactics Planner | 5.4.6 | Url | I'll input the primary GB port, that should port the GB port! | | 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 | https://caterina.info | | | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| Regional Brand Associate | 4.0.9 | Expression | | | I'll program the wireless HDD pixel, that should pixel the HDD pixel! | | | | | +| Legacy Intranet Planner | 8.3.2 | Expression | Use the bluetooth AI bandwidth, then you can transmit the bluetooth bandwidth! | | | | http://nathanael.name | | | +| Dynamic Paradigm Officer | 2.3.4 | Overwrite | | | | | https://charity.biz | | | +| Corporate Program Associate | 5.2.5 | Overwrite | | | overriding the interface won't do anything, we need to override the virtual THX interface! | | | | | +| Forward Usability Developer | 6.9.1 | Overwrite | | | You can't connect the protocol without overriding the redundant RSS protocol! | | | | | +| Central Functionality Technician | 3.9.3 | Url | | | The AI microchip is down, override the multi-byte microchip so we can override the AI microchip! | | | | | +| International Marketing Officer | 2.2.1 | Overwrite | If we connect the driver, we can get to the XSS driver through the online XSS driver! | | | | https://weldon.info | | | +| Chief Response Strategist | 8.0.4 | Url | | The RSS alarm is down, compress the mobile alarm so we can compress the RSS alarm! | Use the 1080p PNG application, then you can calculate the 1080p application! | Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann | | | | +| Forward Directives Representative | 0.5.1 | Url | | parsing the panel won't do anything, we need to calculate the digital SMTP panel! | | Theresa Heathcote,Theresa Heathcote,Theresa Heathcote,Theresa Heathcote,Theresa Heathcote,Theresa Heathcote | https://cleve.biz | | | +| Internal Factors Facilitator | 2.6.3 | Url | | Try to copy the PNG sensor, maybe it will copy the 1080p sensor! | | Mable Kris,Mable Kris,Mable Kris,Mable Kris,Mable Kris | http://melba.name | | | +| District Integration Designer | 6.2.2 | Expression | | You can't connect the port without connecting the back-end COM port! | | Ignacio Hane,Ignacio Hane | https://cindy.org | | | +| Senior Operations Assistant | 2.4.2 | Expression | | If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth! | | Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva | https://hector.info | | | +| Dynamic Tactics Facilitator | 0.7.3 | Unknown | | | The SSL port is down, bypass the haptic port so we can bypass the SSL port! | | | | | +| Future Accounts Designer | 5.1.9 | Expression | We need to navigate the wireless SAS pixel! | | | | | | | +| Internal Solutions Director | 8.4.4 | Unknown | | | | | | | | +| Customer Metrics Analyst | 6.7.1 | Unknown | | | | | | | | +| District Creative Designer | 1.4.6 | Url | We need to program the haptic IB panel! | | | | http://cameron.info | | | +| Dynamic Factors Producer | 5.7.1 | Url | | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | | | | | +| Senior Research Liaison | 5.0.6 | Overwrite | If we compress the system, we can get to the AGP system through the multi-byte AGP system! | I'll hack the optical XSS monitor, that should monitor the XSS monitor! | | | http://clair.biz | | | +| Forward Program Officer | 4.2.4 | Url | quantifying the capacitor won't do anything, we need to override the open-source AI capacitor! | indexing the port won't do anything, we need to back up the virtual AGP port! | calculating the bus won't do anything, we need to generate the online CSS bus! | Leon Mayer,Leon Mayer | | | | +| Dynamic Configuration Administrator | 4.3.8 | Url | | | Use the redundant AGP microchip, then you can override the redundant microchip! | Roberto Deckow,Roberto Deckow,Roberto Deckow | | | | +| Chief Paradigm Supervisor | 4.3.3 | Url | | | We need to bypass the wireless XML pixel! | Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins | https://zion.info | | | +| Investor Interactions Designer | 1.9.4 | Url | | | parsing the card won't do anything, we need to synthesize the online SQL card! | Stella Barton,Stella Barton | https://octavia.name | | | +| National Factors Administrator | 8.1.4 | Unknown | | | | | http://janelle.name | | | +| Global Markets Administrator | 8.6.8 | Expression | 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! | The SSL application is down, reboot the bluetooth application so we can reboot the SSL application! | Julius Bernhard,Julius Bernhard,Julius Bernhard,Julius Bernhard | https://lois.biz | | | +| Corporate Intranet Associate | 7.5.1 | Overwrite | | 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! | | | | | +| Legacy Communications Engineer | 7.8.1 | Expression | | I'll synthesize the haptic THX hard drive, that should hard drive the THX hard drive! | The ADP hard drive is down, input the back-end hard drive so we can input the ADP hard drive! | Hilda Kub,Hilda Kub,Hilda Kub,Hilda Kub,Hilda Kub | | | | +| Forward Paradigm Developer | 7.9.7 | Overwrite | The GB interface is down, input the auxiliary interface so we can input the GB interface! | The XSS transmitter is down, back up the online transmitter so we can back up the XSS transmitter! | | Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter | http://maureen.name | | | +| National Infrastructure Architect | 6.6.7 | Unknown | | If we bypass the hard drive, we can get to the EXE hard drive through the bluetooth EXE hard drive! | | Howard Rath,Howard Rath,Howard Rath,Howard Rath | http://darlene.net | | | +| National Implementation Agent | 5.6.8 | Expression | | | Use the multi-byte PNG circuit, then you can navigate the multi-byte circuit! | Ira Hermiston,Ira Hermiston,Ira Hermiston,Ira Hermiston | http://rex.biz | | | +| Senior Brand Agent | 3.1.9 | Url | generating the alarm won't do anything, we need to parse the virtual XSS alarm! | | I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth! | | https://lina.info | | | +| Direct Group Liaison | 3.5.1 | Overwrite | We need to parse the haptic SMS monitor! | | We need to program the auxiliary JBOD circuit! | | | | | +| Legacy Marketing Designer | 4.5.9 | Expression | | You can't bypass the microchip without parsing the back-end JBOD microchip! | You can't bypass the alarm without generating the back-end HTTP alarm! | | http://lexi.net | | | +| Chief Functionality Planner | 5.1.2 | Unknown | | I'll calculate the 1080p HDD system, that should system the HDD system! | | Matt Mills,Matt Mills | http://myrtice.com | | | +| Internal Operations Producer | 5.8.9 | Overwrite | | Use the online SMTP pixel, then you can index the online pixel! | | | | | | +| Corporate Infrastructure Executive | 4.8.1 | Unknown | | | Try to index the FTP transmitter, maybe it will index the bluetooth transmitter! | Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist | https://justice.info | | | +| Lead Optimization Analyst | 2.1.7 | Expression | Use the wireless XSS bandwidth, then you can program the wireless bandwidth! | The SDD hard drive is down, copy the virtual hard drive so we can copy the SDD hard drive! | | Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson | https://madge.info | | | +| Lead Identity Developer | 7.1.0 | Url | | compressing the bandwidth won't do anything, we need to bypass the primary RAM bandwidth! | | | https://eve.com | | | +| National Security Orchestrator | 3.5.6 | Expression | Try to copy the HDD array, maybe it will copy the back-end array! | 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! | Roderick Koelpin,Roderick Koelpin,Roderick Koelpin | | | | +| Future Markets Architect | 7.2.2 | Overwrite | If we synthesize the port, we can get to the CSS port through the online CSS port! | synthesizing the panel won't do anything, we need to transmit the neural THX panel! | | Gerald Cruickshank,Gerald Cruickshank,Gerald Cruickshank | https://maxime.info | | | +| Dynamic Configuration Specialist | 3.6.8 | Overwrite | | Use the haptic AGP protocol, then you can program the haptic protocol! | | Meredith Sawayn,Meredith Sawayn,Meredith Sawayn,Meredith Sawayn,Meredith Sawayn,Meredith Sawayn | | | | +| Senior Quality Executive | 4.4.8 | Url | I'll quantify the solid state THX feed, that should feed the THX feed! | Use the online RAM array, then you can index the online array! | You can't reboot the transmitter without transmitting the online ADP transmitter! | | http://khalid.com | | | +| Dynamic Configuration Assistant | 3.2.1 | Expression | | 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 Program Technician | 2.8.4 | Overwrite | | | | Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill | http://tomasa.info | | | +| Human Program Orchestrator | 5.2.4 | Url | Use the cross-platform EXE microchip, then you can quantify the cross-platform microchip! | | bypassing the bandwidth won't do anything, we need to copy the mobile JBOD bandwidth! | | | | | +| International Branding Producer | 3.8.2 | Expression | We need to generate the solid state AGP microchip! | | | | | | | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Chief Program Director | 8.8.8 | Overwrite | If we parse the protocol, we can get to the IB protocol through the wireless IB protocol! | | Use the primary SCSI matrix, then you can program the primary matrix! | | | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Interactions Officer | 8.8.5 | Overwrite | | | Try to program the RAM bandwidth, maybe it will program the optical bandwidth! | | | | | +| ------------------------------------ | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9313c311a800655c.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9313c311a800655c.verified.txt new file mode 100644 index 00000000..6e714d39 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9313c311a800655c.verified.txt @@ -0,0 +1,34 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Dynamic Integration Assistant | 2.1.6 | Unknown | | | https://gerson.info | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| District Mobility Administrator | 3.2.3 | Unknown | | Christopher Dietrich,Christopher Dietrich,Christopher Dietrich,Christopher Dietrich | | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9385da1eb46bdc4f.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9385da1eb46bdc4f.verified.txt new file mode 100644 index 00000000..80b577ee --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9385da1eb46bdc4f.verified.txt @@ -0,0 +1,40 @@ +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_93d9eccf8eeaea9b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_93d9eccf8eeaea9b.verified.txt new file mode 100644 index 00000000..b573b080 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_93d9eccf8eeaea9b.verified.txt @@ -0,0 +1,60 @@ +| -------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | | | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | | | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Customer Assurance Officer | 0.3.1 | Ignored | I'll navigate the digital CSS sensor, that should sensor the CSS sensor! | | | https://clementine.info | | | +| Global Implementation Strategist | 5.9.8 | Ignored | | | Colleen Schroeder,Colleen Schroeder | https://enos.info | | | +| International Optimization Coordinator | 6.5.5 | Ignored | | | Darnell Terry | http://antoinette.org | | | +| Customer Division Manager | 1.3.9 | Ignored | 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! | Rafael Altenwerth,Rafael Altenwerth,Rafael Altenwerth | | | | +| International Tactics Administrator | 9.9.9 | Url | | | | | | | +| Legacy Interactions Supervisor | 9.7.2 | Ignored | | Try to generate the SAS matrix, maybe it will generate the cross-platform matrix! | Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn | | | | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | | | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| Internal Program Designer | 7.2.5 | Ignored | We need to hack the auxiliary COM hard drive! | | | | | | +| -------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_93ed44e2c85af435.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_93ed44e2c85af435.verified.txt new file mode 100644 index 00000000..2735804d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_93ed44e2c85af435.verified.txt @@ -0,0 +1,22 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_940124ab7e4154ad.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_940124ab7e4154ad.verified.txt new file mode 100644 index 00000000..08db0e7f --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_940124ab7e4154ad.verified.txt @@ -0,0 +1,32 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Lead Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_948acdb6d58ecbe1.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_948acdb6d58ecbe1.verified.txt new file mode 100644 index 00000000..d64f364b --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_948acdb6d58ecbe1.verified.txt @@ -0,0 +1,28 @@ +| ----------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------------- | --------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------------- | --------------------- | --------- | --------------------- | +| Dynamic Applications Director | 5.1.4 | Ignored | | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Forward Functionality Analyst | 4.5.1 | Expression | | http://orie.name | | | +| Dynamic Functionality Agent | 5.9.5 | Unknown | | http://annabelle.net | | | +| National Communications Facilitator | 3.1.0 | Url | quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter! | | | | +| Central Interactions Manager | 7.0.9 | Expression | | | | | +| District Mobility Administrator | 3.2.3 | Ignored | | | | | +| Global Usability Representative | 3.5.9 | Url | | | | | +| Regional Solutions Supervisor | 1.8.2 | Ignored | You can't parse the system without compressing the haptic GB system! | https://lance.net | | | +| National Tactics Engineer | 3.7.5 | Url | generating the matrix won't do anything, we need to override the redundant GB matrix! | https://alexys.org | | | +| Dynamic Security Technician | 6.8.3 | Unknown | | | | | +| Customer Operations Officer | 2.6.0 | Overwrite | Use the bluetooth USB alarm, then you can override the bluetooth alarm! | http://antonette.org | | | +| Product Applications Assistant | 2.8.4 | Overwrite | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | https://carleton.info | | | +| Regional Security Architect | 2.2.5 | Url | | | | | +| Global Security Liaison | 8.1.2 | Expression | | | | | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | +| District Branding Analyst | 1.9.5 | Url | | https://paula.net | | | +| Chief Assurance Associate | 3.3.1 | Url | overriding the panel won't do anything, we need to parse the open-source IB panel! | https://tyrese.info | | | +| Central Integration Analyst | 0.4.0 | Overwrite | If we synthesize the protocol, we can get to the JBOD protocol through the multi-byte JBOD protocol! | https://laverne.name | | | +| Customer Directives Director | 7.9.2 | Overwrite | Try to hack the COM panel, maybe it will hack the auxiliary panel! | | | | +| Forward Quality Producer | 6.3.7 | Overwrite | The CSS microchip is down, back up the bluetooth microchip so we can back up the CSS microchip! | https://jayne.name | | | +| ----------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------------- | --------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_94e8f46657d0036c.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_94e8f46657d0036c.verified.txt new file mode 100644 index 00000000..53d88a69 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_94e8f46657d0036c.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Paige | https://remington.info | +| | | | | | Aletha | https://isobel.info | +| | | | | | Pearline | https://johnathon.info | +| | | | | | Eleanora | http://jaeden.info | +| | | | | | Nikolas | https://daphney.net | +| | | | | | Oceane | http://clifton.com | +| | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | http://marina.com | Myles | http://nikko.name | +| | | | | | Rolando | http://nikko.name | +| | | | | | Pamela | https://aliza.net | +| | | | | | Marcella | http://helga.net | +| | | | | | Alisha | http://alyson.name | +| | | | | | Carmelo | http://michele.name | +| | | | | | Miles | https://freddie.com | +| | | | | | Kade | https://jaunita.biz | +| | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | Abner | http://tavares.info | +| | | | | | Johann | http://andres.net | +| | | | | | Jaquan | http://carey.org | +| | | | | | Arvel | http://mortimer.org | +| | | | | | Alicia | http://paula.com | +| | | | | | Heidi | http://letha.name | +| | | | | | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_954442952eb6db31.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_954442952eb6db31.verified.txt new file mode 100644 index 00000000..dc1686d4 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_954442952eb6db31.verified.txt @@ -0,0 +1,145 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Internal Solutions Planner | 1.3.8 | Ignored | | The COM application is down, quantify the auxiliary application so we can quantify the COM application! | | Nyah | http://oliver.com | +| | | | | | | Ettie | http://lonny.net | +| | | | | | | Onie | https://cassie.biz | +| | | | | | | Solon | https://buck.biz | +| | | | | | | Taryn | http://hilton.com | +| | | | | | | Isabel | http://rogers.net | +| | | | | | | Bertrand | http://annetta.org | +| | | | | | | Remington | https://efrain.info | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | +| National Creative Engineer | 4.0.0 | Ignored | You can't parse the alarm without overriding the haptic SMTP alarm! | | | Candida | https://craig.biz | +| | | | | | | Timmothy | https://joanny.biz | +| | | | | | | Alfonzo | http://dorothea.org | +| | | | | | | 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 | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Chief Brand Associate | 7.6.8 | Ignored | | | https://lauriane.com | Devin | https://ramona.info | +| | | | | | | Alice | http://laverne.info | +| | | | | | | Layne | https://brooks.name | +| | | | | | | Kaitlyn | http://serenity.biz | +| Regional Mobility Manager | 2.7.0 | Ignored | | | http://gianni.info | Alvina | http://elouise.name | +| | | | | | | Ron | http://brown.org | +| | | | | | | Cordia | http://ericka.name | +| | | | | | | Eugene | http://rashad.info | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Forward Directives Supervisor | 8.7.6 | Ignored | | The SSL microchip is down, hack the optical microchip so we can hack the SSL microchip! | http://shaun.org | Jadon | https://amelia.biz | +| | | | | | | Toni | http://angie.name | +| | | | | | | Ardella | http://melissa.net | +| | | | | | | Sandra | http://pearline.org | +| | | | | | | Noble | https://dusty.net | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Legacy Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_967644bba64f126d.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_967644bba64f126d.verified.txt new file mode 100644 index 00000000..949fa777 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_967644bba64f126d.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Paige | https://remington.info | +| | | | | Aletha | https://isobel.info | +| | | | | Pearline | https://johnathon.info | +| | | | | Eleanora | http://jaeden.info | +| | | | | Nikolas | https://daphney.net | +| | | | | Oceane | http://clifton.com | +| | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_96e92e8b6c089bb7.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_96e92e8b6c089bb7.verified.txt new file mode 100644 index 00000000..01e0290b --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_96e92e8b6c089bb7.verified.txt @@ -0,0 +1,230 @@ +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | ---------- | --------------------- | +| Future Tactics Specialist | 0.2.2 | Ignored | We need to override the primary SQL pixel! | We need to transmit the redundant EXE driver! | Alejandro Cruickshank,Alejandro Cruickshank,Alejandro Cruickshank,Alejandro Cruickshank | | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Communications Engineer | 6.9.4 | Overwrite | | | Tanya Reinger,Tanya Reinger,Tanya Reinger | http://tito.name | | | +| National Assurance Planner | 2.7.7 | Unknown | | I'll reboot the online AGP alarm, that should alarm the AGP alarm! | Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag | | | | +| Lead Program Technician | 5.8.9 | Expression | | We need to transmit the back-end AGP sensor! | Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer | http://curtis.org | | | +| Future Identity Agent | 8.8.0 | Ignored | I'll parse the 1080p USB protocol, that should protocol the USB protocol! | | | https://reva.name | | | +| Central Tactics Developer | 0.4.7 | Ignored | indexing the capacitor won't do anything, we need to program the haptic EXE capacitor! | The JBOD application is down, generate the solid state application so we can generate the JBOD application! | Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley | https://royal.name | | | +| Dynamic Security Specialist | 7.8.5 | Overwrite | Try to input the GB pixel, maybe it will input the wireless pixel! | You can't transmit the bus without indexing the digital TCP bus! | Guy Waters,Guy Waters | http://nova.biz | | | +| District Interactions Supervisor | 4.5.2 | Url | The XSS capacitor is down, generate the bluetooth capacitor so we can generate the XSS capacitor! | The ADP firewall is down, input the primary firewall so we can input the ADP firewall! | | | | | +| Central Division Administrator | 1.0.4 | Overwrite | We need to program the optical COM microchip! | We need to hack the haptic SAS microchip! | | | | | +| Corporate Accountability Designer | 0.8.0 | Ignored | We need to hack the online FTP application! | | Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn | http://taya.info | Abelardo | http://carolina.name | +| | | | | | | | Lindsey | http://rigoberto.org | +| | | | | | | | Lou | http://darlene.biz | +| | | | | | | | Oliver | https://filomena.com | +| | | | | | | | Vincenzo | https://ulices.biz | +| | | | | | | | Florida | http://jovan.net | +| | | | | | | | Ari | https://chad.com | +| | | | | | | | Yvonne | http://jada.name | +| Dynamic Division Representative | 7.3.5 | Unknown | | I'll index the haptic FTP alarm, that should alarm the FTP alarm! | Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson | http://taurean.net | | | +| Dynamic Security Director | 0.0.2 | Url | transmitting the feed won't do anything, we need to navigate the redundant SDD feed! | Try to parse the HTTP port, maybe it will parse the bluetooth port! | Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block | | | | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Global Paradigm Assistant | 8.0.5 | Expression | We need to calculate the solid state HTTP hard drive! | | | https://randy.org | | | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| Principal Operations Assistant | 0.9.0 | Url | I'll copy the auxiliary HDD bus, that should bus the HDD bus! | I'll copy the digital USB circuit, that should circuit the USB circuit! | | | | | +| Customer Web Assistant | 1.9.0 | Unknown | | | | | | | +| Future Research Planner | 8.8.9 | Ignored | | | | https://yvette.com | | | +| Chief Infrastructure Specialist | 9.0.5 | Overwrite | hacking the port won't do anything, we need to back up the optical SMS port! | | Jackie Schumm | | | | +| Legacy Interactions Supervisor | 9.7.2 | Ignored | | Try to generate the SAS matrix, maybe it will generate the cross-platform matrix! | Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn | | | | +| Future Configuration Officer | 7.6.0 | Unknown | You can't compress the alarm without parsing the optical JBOD alarm! | I'll compress the back-end SSL system, that should system the SSL system! | Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie | | | | +| International Branding Producer | 3.8.2 | Expression | We need to generate the solid state AGP microchip! | | | | | | +| International Brand Strategist | 3.9.3 | Url | | | Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy | https://rowena.info | | | +| District Optimization Technician | 5.2.3 | Overwrite | | | Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti | https://douglas.info | | | +| Global Optimization Engineer | 8.7.9 | Expression | | quantifying the transmitter won't do anything, we need to synthesize the auxiliary FTP transmitter! | | http://aniya.org | | | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | | | +| Dynamic Branding Manager | 1.4.0 | Overwrite | You can't navigate the application without generating the cross-platform COM application! | Try to program the FTP alarm, maybe it will program the virtual alarm! | | http://dario.info | | | +| Regional Identity Engineer | 1.9.4 | Ignored | | The HTTP microchip is down, copy the digital microchip so we can copy the HTTP microchip! | Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston | | | | +| Global Identity Supervisor | 0.9.1 | Overwrite | | | | | | | +| Global Implementation Strategist | 5.9.8 | Ignored | | | Colleen Schroeder,Colleen Schroeder | https://enos.info | | | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| Dynamic Implementation Engineer | 6.7.1 | Overwrite | We need to transmit the open-source EXE interface! | | | http://margie.info | | | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| Customer Metrics Developer | 2.2.9 | Ignored | | | Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir | | | | +| Legacy Usability Coordinator | 5.8.8 | Overwrite | Try to calculate the PNG port, maybe it will calculate the back-end port! | | | http://thora.info | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Product Directives Engineer | 8.2.3 | Unknown | transmitting the bus won't do anything, we need to navigate the online IB bus! | | Maggie Lindgren | | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | | | +| Principal Factors Representative | 4.5.7 | Ignored | Try to input the RAM interface, maybe it will input the bluetooth interface! | The GB card is down, hack the digital card so we can hack the GB card! | Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker | https://imelda.org | | | +| Investor Quality Associate | 0.5.1 | Expression | | Try to reboot the SSL alarm, maybe it will reboot the solid state alarm! | Carrie Hansen,Carrie Hansen,Carrie Hansen,Carrie Hansen | https://ezequiel.biz | | | +| Customer Assurance Officer | 0.3.1 | Ignored | I'll navigate the digital CSS sensor, that should sensor the CSS sensor! | | | https://clementine.info | | | +| Product Functionality Supervisor | 9.4.5 | Overwrite | Use the 1080p AI microchip, then you can reboot the 1080p microchip! | Use the open-source ADP matrix, then you can copy the open-source matrix! | | | | | +| Customer Division Manager | 1.3.9 | Ignored | 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! | Rafael Altenwerth,Rafael Altenwerth,Rafael Altenwerth | | | | +| Customer Branding Orchestrator | 8.3.7 | Overwrite | | We need to bypass the neural USB capacitor! | Nora Dietrich | http://nona.com | | | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Direct Brand Director | 4.7.4 | Url | You can't navigate the capacitor without programming the solid state SQL capacitor! | | | | | | +| Chief Factors Developer | 5.9.5 | Url | | Try to connect the ADP system, maybe it will connect the solid state system! | Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady | | | | +| Regional Functionality Agent | 5.9.9 | Overwrite | We need to index the 1080p SAS hard drive! | I'll connect the digital JBOD application, that should application the JBOD application! | Gloria Williamson,Gloria Williamson,Gloria Williamson,Gloria Williamson | http://arthur.net | | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | | | +| Corporate Intranet Specialist | 3.5.6 | Expression | | | Edmund Lehner,Edmund Lehner,Edmund Lehner,Edmund Lehner | | | | +| International Division Architect | 8.2.4 | Ignored | | | Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins | http://murphy.name | | | +| Central Implementation Planner | 7.6.0 | Ignored | | Try to generate the HDD panel, maybe it will generate the solid state panel! | | | | | +| Forward Data Orchestrator | 3.3.5 | Expression | Use the haptic XML driver, then you can index the haptic driver! | compressing the system won't do anything, we need to compress the optical RSS system! | | | | | +| Regional Optimization Administrator | 3.6.4 | Expression | | I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive! | | http://serenity.info | | | +| Human Identity Representative | 4.1.5 | Overwrite | The SAS bus is down, program the neural bus so we can program the SAS bus! | | Joyce Auer,Joyce Auer,Joyce Auer | http://alyce.biz | | | +| Principal Brand Executive | 7.2.7 | Unknown | | | | https://dariana.com | | | +| International Solutions Planner | 9.0.0 | Url | Use the multi-byte SMTP program, then you can synthesize the multi-byte program! | | | | | | +| Internal Program Designer | 7.2.5 | Ignored | We need to hack the auxiliary COM hard drive! | | | | | | +| Senior Solutions Strategist | 7.5.0 | 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 | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| Forward Usability Specialist | 5.6.9 | Overwrite | I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth! | | | | | | +| Lead Operations Supervisor | 4.5.2 | Expression | The AI panel is down, transmit the open-source panel so we can transmit the AI panel! | | | | | | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Direct Division Officer | 6.5.6 | Url | transmitting the protocol won't do anything, we need to generate the multi-byte THX protocol! | | Glenda Schuppe,Glenda Schuppe | http://catherine.name | | | +| Customer Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| Senior Configuration Developer | 4.0.9 | Url | Use the primary SCSI matrix, then you can program the primary matrix! | If we parse the interface, we can get to the JSON interface through the mobile JSON interface! | Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle | | | | +| Global Optimization Architect | 1.5.0 | Unknown | Try to navigate the SCSI sensor, maybe it will navigate the mobile sensor! | | | | | | +| Lead Solutions Technician | 1.5.7 | Unknown | | | | | | | +| Corporate Marketing Coordinator | 3.6.1 | Overwrite | | | | https://marcos.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 | | | +| Human Tactics Facilitator | 5.7.0 | Url | Try to bypass the HTTP application, maybe it will bypass the digital application! | | | | | | +| Product Solutions Manager | 9.5.2 | Overwrite | I'll hack the primary SDD card, that should card the SDD card! | hacking the transmitter won't do anything, we need to index the open-source CSS transmitter! | Sergio Bailey,Sergio Bailey,Sergio Bailey | | | | +| Corporate Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 | +| Human Branding Coordinator | 5.8.1 | Ignored | | | | | | | +| Human Markets Planner | 5.0.1 | Expression | Try to back up the COM driver, maybe it will back up the bluetooth driver! | | | | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | | | +| Customer Mobility Assistant | 4.2.9 | 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 | http://adonis.biz | | | +| Forward Factors Architect | 6.7.6 | Ignored | | The THX transmitter is down, program the neural transmitter so we can program the THX transmitter! | Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts | | | | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | | | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| Human Program Analyst | 3.1.8 | Expression | If we back up the application, we can get to the USB application through the cross-platform USB application! | | | http://efrain.org | | | +| Principal Intranet Architect | 4.9.3 | Unknown | | | | | | | +| Chief Program Associate | 2.6.7 | Unknown | We need to compress the optical PNG array! | | Wilbert Kunze,Wilbert Kunze,Wilbert Kunze,Wilbert Kunze | http://coy.info | | | +| International Optimization Coordinator | 6.5.5 | Ignored | | | Darnell Terry | http://antoinette.org | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | | | +| Central Research Technician | 2.8.8 | Url | | You can't generate the program without connecting the bluetooth USB program! | | | | | +| Principal Security Producer | 7.3.3 | Ignored | You can't generate the interface without quantifying the mobile FTP interface! | Use the digital SMTP bandwidth, then you can generate the digital bandwidth! | | http://jarrell.biz | | | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | http://celestine.info | Clemens | https://abagail.info | +| | | | | | | | Franz | http://prudence.info | +| | | | | | | | Casper | https://alva.com | +| | | | | | | | Mario | http://alexandria.biz | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | | | +| Dynamic Factors Associate | 1.8.3 | Unknown | | You can't navigate the panel without calculating the open-source THX panel! | | http://dovie.name | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| Lead Infrastructure Specialist | 7.2.6 | Ignored | | | Laura Abshire,Laura Abshire,Laura Abshire,Laura Abshire,Laura Abshire | https://wanda.com | | | +| Dynamic Data Technician | 4.2.3 | Url | I'll copy the optical RAM feed, that should feed the RAM feed! | | June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds | http://nia.info | | | +| International Tactics Administrator | 9.9.9 | Url | | | | | | | +| Customer Program Developer | 2.9.8 | Expression | | You can't transmit the pixel without calculating the bluetooth FTP pixel! | | http://lenora.com | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | | | +| Senior Paradigm Analyst | 1.1.1 | Ignored | | If we navigate the alarm, we can get to the XML alarm through the cross-platform XML alarm! | | | | | +| Regional Directives Liaison | 4.7.8 | Expression | If we connect the interface, we can get to the SCSI interface through the auxiliary SCSI interface! | | Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic | https://glennie.biz | | | +| Customer Solutions Officer | 4.5.2 | Expression | You can't copy the matrix without compressing the wireless AGP matrix! | | | https://rylan.name | | | +| Dynamic Solutions Agent | 0.0.5 | Overwrite | Use the haptic USB card, then you can navigate the haptic card! | | | | | | +| Human Accounts Orchestrator | 4.1.6 | Url | | | | | | | +| Investor Research Coordinator | 1.9.7 | Ignored | Use the cross-platform GB bus, then you can calculate the cross-platform bus! | | | https://maegan.name | | | +| Dynamic Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| 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 | | | | +| Investor Tactics Director | 0.4.3 | Expression | | | | https://aylin.com | | | +| Human Paradigm Assistant | 8.8.8 | Expression | | | Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich | | | | +| Corporate Intranet Analyst | 0.9.0 | Ignored | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp | http://hanna.net | | | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | | | +| Regional Metrics Strategist | 1.2.1 | Unknown | | Try to override the GB driver, maybe it will override the digital driver! | | | | | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.biz | +| Future Tactics Assistant | 1.5.5 | Expression | The IB sensor is down, reboot the virtual sensor so we can reboot the IB sensor! | If we calculate the matrix, we can get to the SMS matrix through the bluetooth SMS matrix! | | https://giovanny.net | | | +| Investor Accounts Facilitator | 7.7.8 | Expression | | | Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman | http://scottie.biz | | | +| Legacy Security Facilitator | 1.9.0 | Expression | | Use the cross-platform ADP alarm, then you can back up the cross-platform alarm! | | https://edythe.info | | | +| Legacy Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| District Assurance Technician | 8.5.5 | Overwrite | | | | http://zander.com | | | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_988223ede6a35c07.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_988223ede6a35c07.verified.txt new file mode 100644 index 00000000..949fa777 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_988223ede6a35c07.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Paige | https://remington.info | +| | | | | Aletha | https://isobel.info | +| | | | | Pearline | https://johnathon.info | +| | | | | Eleanora | http://jaeden.info | +| | | | | Nikolas | https://daphney.net | +| | | | | Oceane | http://clifton.com | +| | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_98b3bda9231da2bb.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_98b3bda9231da2bb.verified.txt new file mode 100644 index 00000000..3ca1848f --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_98b3bda9231da2bb.verified.txt @@ -0,0 +1,27 @@ +| ----------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ---------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ---------------------- | --------- | --------------------- | +| Legacy Interactions Analyst | 3.0.8 | Url | hacking the hard drive won't do anything, we need to generate the open-source RSS hard drive! | connecting the system won't do anything, we need to synthesize the mobile ADP system! | | | | | +| National Directives Analyst | 8.2.7 | Overwrite | We need to compress the primary GB array! | | Use the mobile SCSI bus, then you can program the mobile bus! | | | | +| Forward Integration Assistant | 4.8.5 | Expression | | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| 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! | | | | | +| Central Infrastructure Agent | 6.1.6 | Expression | | | You can't quantify the program without overriding the online SDD program! | | | | +| Central Marketing Assistant | 9.5.8 | Overwrite | I'll navigate the redundant RAM capacitor, that should capacitor the RAM capacitor! | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | http://julia.biz | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Research Associate | 9.9.5 | Url | | We need to navigate the bluetooth RAM bus! | | https://hildegard.name | | | +| Forward Creative Developer | 9.6.7 | Unknown | | I'll transmit the online SSL feed, that should feed the SSL feed! | We need to synthesize the cross-platform SMS circuit! | http://pearline.com | | | +| District Branding Analyst | 1.9.5 | Unknown | | | | https://paula.net | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Forward Factors Director | 5.7.8 | Expression | | | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | | | +| Principal Branding Assistant | 8.2.6 | Expression | 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! | We need to hack the auxiliary COM hard drive! | | | | +| ----------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ---------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_99223293023eb4b5.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_99223293023eb4b5.verified.txt new file mode 100644 index 00000000..8d4e7826 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_99223293023eb4b5.verified.txt @@ -0,0 +1,14 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Central Infrastructure Agent | 6.1.6 | Expression | | | You can't quantify the program without overriding the online SDD program! | | | | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9a01f6ff08033779.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9a01f6ff08033779.verified.txt new file mode 100644 index 00000000..e6152db6 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9a01f6ff08033779.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9a80aa778748b877.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9a80aa778748b877.verified.txt new file mode 100644 index 00000000..c8c0984b --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9a80aa778748b877.verified.txt @@ -0,0 +1,32 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9bab5c1277cf212d.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9bab5c1277cf212d.verified.txt new file mode 100644 index 00000000..59f61844 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9bab5c1277cf212d.verified.txt @@ -0,0 +1,138 @@ +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Product Identity Analyst | 5.9.3 | Expression | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | | Rey | https://connie.info | +| | | | | | | Hollie | http://rico.name | +| | | | | | | Marshall | http://pierce.org | +| | | | | | | 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 | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Response Consultant | 9.3.1 | Unknown | | | https://ulices.biz | Ari | https://chad.com | +| | | | | | | Yvonne | http://jada.name | +| | | | | | | Noemie | https://kayley.name | +| | | | | | | Brandon | http://kristopher.name | +| | | | | | | Maggie | http://kimberly.info | +| | | | | | | Veronica | https://mya.net | +| | | | | | | Marty | https://obie.net | +| | | | | | | Braxton | http://flavio.net | +| | | | | | | Jeramie | http://jaycee.net | +| Future Group Assistant | 1.7.9 | Expression | Use the multi-byte AI port, then you can reboot the multi-byte port! | | | Darien | http://mitchel.biz | +| | | | | | | Carleton | https://madalyn.com | +| | | | | | | Narciso | https://mia.com | +| | | | | | | Nicklaus | https://abelardo.com | +| | | | | | | Carolina | https://lindsey.info | +| | | | | | | Rigoberto | https://lou.biz | +| Corporate Accountability Designer | 0.8.0 | Overwrite | We need to hack the online FTP application! | | http://taya.info | Carlee | http://britney.name | +| | | | | | | Tess | http://julian.biz | +| | | | | | | Isadore | http://billy.net | +| | | | | | | Alice | http://vern.net | +| | | | | | | King | http://trace.net | +| | | | | | | Carmela | https://adolf.info | +| | | | | | | Sherman | http://alec.net | +| | | | | | | Lamar | http://deion.org | +| Dynamic Group Associate | 6.6.1 | Unknown | We need to input the open-source SMTP bus! | | http://kian.name | Neil | https://burley.info | +| | | | | | | Lemuel | http://brenden.info | +| | | | | | | Agnes | https://urban.org | +| | | | | | | Micheal | https://ida.net | +| | | | | | | Murray | https://samanta.com | +| | | | | | | Assunta | http://florencio.com | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| Direct Tactics Technician | 2.8.6 | Unknown | Try to quantify the SAS port, maybe it will quantify the wireless port! | | | Demond | http://stefan.name | +| | | | | | | Norval | http://annie.net | +| | | | | | | Destin | http://penelope.name | +| Internal Solutions Planner | 1.3.8 | Expression | | Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| | | | | | | Mallory | http://angeline.name | +| Lead Creative Administrator | 9.0.0 | Overwrite | Use the virtual RAM monitor, then you can override the virtual monitor! | | https://roderick.net | Hildegard | http://conner.name | +| | | | | | | 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 | +| | | | | | | Irving | https://sydnie.org | +| Chief Data Director | 2.1.5 | Unknown | Use the haptic PCI bandwidth, then you can generate the haptic bandwidth! | | | Earnestine | http://nathanial.biz | +| | | | | | | Connor | https://augustus.net | +| | | | | | | Araceli | http://hailey.biz | +| | | | | | | Janessa | https://craig.com | +| | | | | | | Erica | http://kristin.org | +| | | | | | | Alek | http://shany.biz | +| | | | | | | Camren | http://joany.info | +| Future Mobility Strategist | 4.7.6 | Overwrite | Use the virtual ADP bandwidth, then you can calculate the virtual bandwidth! | | http://gerardo.net | Cathy | http://giovanna.info | +| | | | | | | Ike | https://jerome.biz | +| | | | | | | Emerald | https://camren.net | +| | | | | | | Sheila | https://garry.org | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| Product Marketing Developer | 3.3.6 | Unknown | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | Lewis | https://alisa.com | +| | | | | | | Delores | https://layne.name | +| | | | | | | Delphine | https://katlynn.org | +| | | | | | | Meredith | https://johanna.info | +| | | | | | | Jacklyn | https://kadin.com | +| | | | | | | Hardy | https://donna.info | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Global Infrastructure Developer | 5.5.0 | Url | generating the application won't do anything, we need to calculate the auxiliary JSON application! | Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger | https://austin.net | 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 Creative Architect | 4.5.6 | Overwrite | | Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| | | | | | | Retta | https://lottie.biz | +| | | | | | | Yasmine | http://delia.com | +| | | | | | | Khalil | http://jewel.net | +| | | | | | | Roy | https://johanna.org | +| | | | | | | Price | https://itzel.info | +| | | | | | | Dalton | https://daren.info | +| | | | | | | Arnold | http://arlo.org | +| Investor Identity Developer | 4.2.0 | Url | | Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| | | | | | | Keely | http://obie.org | +| | | | | | | Caleigh | https://albin.info | +| | | | | | | Flavie | http://lavonne.biz | +| | | | | | | Kaitlyn | http://osborne.org | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9bb762180e4b454a.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9bb762180e4b454a.verified.txt new file mode 100644 index 00000000..5dfb35e3 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9bb762180e4b454a.verified.txt @@ -0,0 +1,145 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Chief Brand Associate | 7.6.8 | Ignored | | | https://lauriane.com | Devin | https://ramona.info | +| | | | | | | Alice | http://laverne.info | +| | | | | | | Layne | https://brooks.name | +| | | | | | | Kaitlyn | http://serenity.biz | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| National Creative Engineer | 4.0.0 | Ignored | You can't parse the alarm without overriding the haptic SMTP alarm! | | | Candida | https://craig.biz | +| | | | | | | Timmothy | https://joanny.biz | +| | | | | | | Alfonzo | http://dorothea.org | +| | | | | | | 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 | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Legacy Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| Internal Solutions Planner | 1.3.8 | Ignored | | The COM application is down, quantify the auxiliary application so we can quantify the COM application! | | Nyah | http://oliver.com | +| | | | | | | Ettie | http://lonny.net | +| | | | | | | Onie | https://cassie.biz | +| | | | | | | Solon | https://buck.biz | +| | | | | | | Taryn | http://hilton.com | +| | | | | | | Isabel | http://rogers.net | +| | | | | | | Bertrand | http://annetta.org | +| | | | | | | Remington | https://efrain.info | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Forward Directives Supervisor | 8.7.6 | Ignored | | The SSL microchip is down, hack the optical microchip so we can hack the SSL microchip! | http://shaun.org | Jadon | https://amelia.biz | +| | | | | | | Toni | http://angie.name | +| | | | | | | Ardella | http://melissa.net | +| | | | | | | Sandra | http://pearline.org | +| | | | | | | Noble | https://dusty.net | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 | +| Regional Mobility Manager | 2.7.0 | Ignored | | | http://gianni.info | Alvina | http://elouise.name | +| | | | | | | Ron | http://brown.org | +| | | | | | | Cordia | http://ericka.name | +| | | | | | | Eugene | http://rashad.info | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9bda919f493f56b6.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9bda919f493f56b6.verified.txt new file mode 100644 index 00000000..894b3258 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9bda919f493f56b6.verified.txt @@ -0,0 +1,124 @@ +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Global Paradigm Assistant | 8.0.5 | Expression | We need to calculate the solid state HTTP hard drive! | | | https://randy.org | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Marketing Coordinator | 3.6.1 | Overwrite | | | | https://marcos.org | | | +| Investor Research Coordinator | 1.9.7 | Ignored | Use the cross-platform GB bus, then you can calculate the cross-platform bus! | | | https://maegan.name | | | +| National Assurance Planner | 2.7.7 | Unknown | | I'll reboot the online AGP alarm, that should alarm the AGP alarm! | Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag | | | | +| District Interactions Supervisor | 4.5.2 | Url | The XSS capacitor is down, generate the bluetooth capacitor so we can generate the XSS capacitor! | The ADP firewall is down, input the primary firewall so we can input the ADP firewall! | | | | | +| Future Tactics Assistant | 1.5.5 | Expression | The IB sensor is down, reboot the virtual sensor so we can reboot the IB sensor! | If we calculate the matrix, we can get to the SMS matrix through the bluetooth SMS matrix! | | https://giovanny.net | | | +| Future Configuration Officer | 7.6.0 | Unknown | You can't compress the alarm without parsing the optical JBOD alarm! | I'll compress the back-end SSL system, that should system the SSL system! | Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie | | | | +| Future Research Planner | 8.8.9 | Ignored | | | | https://yvette.com | | | +| Forward Usability Specialist | 5.6.9 | Overwrite | I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth! | | | | | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | | | +| Direct Brand Director | 4.7.4 | Url | You can't navigate the capacitor without programming the solid state SQL capacitor! | | | | | | +| Senior Configuration Developer | 4.0.9 | Url | Use the primary SCSI matrix, then you can program the primary matrix! | If we parse the interface, we can get to the JSON interface through the mobile JSON interface! | Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle | | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | | | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| Customer Solutions Officer | 4.5.2 | Expression | You can't copy the matrix without compressing the wireless AGP matrix! | | | https://rylan.name | | | +| Customer Division Manager | 1.3.9 | Ignored | 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! | Rafael Altenwerth,Rafael Altenwerth,Rafael Altenwerth | | | | +| Dynamic Implementation Engineer | 6.7.1 | Overwrite | We need to transmit the open-source EXE interface! | | | http://margie.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 | | | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | | | +| Product Directives Engineer | 8.2.3 | Unknown | transmitting the bus won't do anything, we need to navigate the online IB bus! | | Maggie Lindgren | | | | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | | | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | | | +| Human Accounts Orchestrator | 4.1.6 | Url | | | | | | | +| Direct Division Officer | 6.5.6 | Url | transmitting the protocol won't do anything, we need to generate the multi-byte THX protocol! | | Glenda Schuppe,Glenda Schuppe | http://catherine.name | | | +| Future Identity Agent | 8.8.0 | Ignored | I'll parse the 1080p USB protocol, that should protocol the USB protocol! | | | https://reva.name | | | +| Investor Quality Associate | 0.5.1 | Expression | | Try to reboot the SSL alarm, maybe it will reboot the solid state alarm! | Carrie Hansen,Carrie Hansen,Carrie Hansen,Carrie Hansen | https://ezequiel.biz | | | +| Global Identity Supervisor | 0.9.1 | Overwrite | | | | | | | +| Dynamic Branding Manager | 1.4.0 | Overwrite | You can't navigate the application without generating the cross-platform COM application! | Try to program the FTP alarm, maybe it will program the virtual alarm! | | http://dario.info | | | +| Central Tactics Developer | 0.4.7 | Ignored | indexing the capacitor won't do anything, we need to program the haptic EXE capacitor! | The JBOD application is down, generate the solid state application so we can generate the JBOD application! | Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley | https://royal.name | | | +| Dynamic Data Technician | 4.2.3 | Url | I'll copy the optical RAM feed, that should feed the RAM feed! | | June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds | http://nia.info | | | +| Product Solutions Manager | 9.5.2 | Overwrite | I'll hack the primary SDD card, that should card the SDD card! | hacking the transmitter won't do anything, we need to index the open-source CSS transmitter! | Sergio Bailey,Sergio Bailey,Sergio Bailey | | | | +| Corporate Intranet Specialist | 3.5.6 | Expression | | | Edmund Lehner,Edmund Lehner,Edmund Lehner,Edmund Lehner | | | | +| Chief Program Associate | 2.6.7 | Unknown | We need to compress the optical PNG array! | | Wilbert Kunze,Wilbert Kunze,Wilbert Kunze,Wilbert Kunze | http://coy.info | | | +| Customer Assurance Officer | 0.3.1 | Ignored | I'll navigate the digital CSS sensor, that should sensor the CSS sensor! | | | https://clementine.info | | | +| Principal Operations Assistant | 0.9.0 | Url | I'll copy the auxiliary HDD bus, that should bus the HDD bus! | I'll copy the digital USB circuit, that should circuit the USB circuit! | | | | | +| International Brand Strategist | 3.9.3 | Url | | | Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy | https://rowena.info | | | +| Customer Mobility Assistant | 4.2.9 | 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 | http://adonis.biz | | | +| Principal Brand Executive | 7.2.7 | Unknown | | | | https://dariana.com | | | +| District Assurance Technician | 8.5.5 | Overwrite | | | | http://zander.com | | | +| Future Tactics Specialist | 0.2.2 | Ignored | We need to override the primary SQL pixel! | We need to transmit the redundant EXE driver! | Alejandro Cruickshank,Alejandro Cruickshank,Alejandro Cruickshank,Alejandro Cruickshank | | | | +| Human Paradigm Assistant | 8.8.8 | Expression | | | Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich | | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Customer Metrics Developer | 2.2.9 | Ignored | | | Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir | | | | +| Dynamic Factors Associate | 1.8.3 | Unknown | | You can't navigate the panel without calculating the open-source THX panel! | | http://dovie.name | | | +| Product Functionality Supervisor | 9.4.5 | Overwrite | Use the 1080p AI microchip, then you can reboot the 1080p microchip! | Use the open-source ADP matrix, then you can copy the open-source matrix! | | | | | +| Forward Data Orchestrator | 3.3.5 | Expression | Use the haptic XML driver, then you can index the haptic driver! | compressing the system won't do anything, we need to compress the optical RSS system! | | | | | +| Corporate Intranet Analyst | 0.9.0 | Ignored | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp | http://hanna.net | | | +| Senior Paradigm Analyst | 1.1.1 | Ignored | | If we navigate the alarm, we can get to the XML alarm through the cross-platform XML alarm! | | | | | +| Chief Factors Developer | 5.9.5 | Url | | Try to connect the ADP system, maybe it will connect the solid state system! | Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady | | | | +| Dynamic Division Representative | 7.3.5 | Unknown | | I'll index the haptic FTP alarm, that should alarm the FTP alarm! | Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson | http://taurean.net | | | +| Lead Operations Supervisor | 4.5.2 | Expression | The AI panel is down, transmit the open-source panel so we can transmit the AI panel! | | | | | | +| Customer Communications Engineer | 6.9.4 | Overwrite | | | Tanya Reinger,Tanya Reinger,Tanya Reinger | http://tito.name | | | +| Human Program Analyst | 3.1.8 | Expression | If we back up the application, we can get to the USB application through the cross-platform USB application! | | | http://efrain.org | | | +| International Division Architect | 8.2.4 | Ignored | | | Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins | http://murphy.name | | | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | | | +| Investor Accounts Facilitator | 7.7.8 | Expression | | | Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman | http://scottie.biz | | | +| Customer Branding Orchestrator | 8.3.7 | Overwrite | | We need to bypass the neural USB capacitor! | Nora Dietrich | http://nona.com | | | +| Dynamic Solutions Agent | 0.0.5 | Overwrite | Use the haptic USB card, then you can navigate the haptic card! | | | | | | +| Global Optimization Engineer | 8.7.9 | Expression | | quantifying the transmitter won't do anything, we need to synthesize the auxiliary FTP transmitter! | | http://aniya.org | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| Lead Infrastructure Specialist | 7.2.6 | Ignored | | | Laura Abshire,Laura Abshire,Laura Abshire,Laura Abshire,Laura Abshire | https://wanda.com | | | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | | | +| Global Implementation Strategist | 5.9.8 | Ignored | | | Colleen Schroeder,Colleen Schroeder | https://enos.info | | | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | | | +| Legacy Security Facilitator | 1.9.0 | Expression | | Use the cross-platform ADP alarm, then you can back up the cross-platform alarm! | | https://edythe.info | | | +| Regional Metrics Strategist | 1.2.1 | Unknown | | Try to override the GB driver, maybe it will override the digital driver! | | | | | +| Customer Program Developer | 2.9.8 | Expression | | You can't transmit the pixel without calculating the bluetooth FTP pixel! | | http://lenora.com | | | +| District Optimization Technician | 5.2.3 | Overwrite | | | Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti | https://douglas.info | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | | | +| Human Branding Coordinator | 5.8.1 | Ignored | | | | | | | +| International Optimization Coordinator | 6.5.5 | Ignored | | | Darnell Terry | http://antoinette.org | | | +| Internal Program Designer | 7.2.5 | Ignored | We need to hack the auxiliary COM hard drive! | | | | | | +| Dynamic Security Director | 0.0.2 | Url | transmitting the feed won't do anything, we need to navigate the redundant SDD feed! | Try to parse the HTTP port, maybe it will parse the bluetooth port! | Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block | | | | +| 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 Division Administrator | 1.0.4 | Overwrite | We need to program the optical COM microchip! | We need to hack the haptic SAS microchip! | | | | | +| Investor Tactics Director | 0.4.3 | Expression | | | | https://aylin.com | | | +| Human Identity Representative | 4.1.5 | Overwrite | The SAS bus is down, program the neural bus so we can program the SAS bus! | | Joyce Auer,Joyce Auer,Joyce Auer | http://alyce.biz | | | +| Central Research Technician | 2.8.8 | Url | | You can't generate the program without connecting the bluetooth USB program! | | | | | +| Regional Functionality Agent | 5.9.9 | Overwrite | We need to index the 1080p SAS hard drive! | I'll connect the digital JBOD application, that should application the JBOD application! | Gloria Williamson,Gloria Williamson,Gloria Williamson,Gloria Williamson | http://arthur.net | | | +| International Branding Producer | 3.8.2 | Expression | We need to generate the solid state AGP microchip! | | | | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| Customer Web Assistant | 1.9.0 | Unknown | | | | | | | +| Human Markets Planner | 5.0.1 | Expression | Try to back up the COM driver, maybe it will back up the bluetooth driver! | | | | | | +| Regional Directives Liaison | 4.7.8 | Expression | If we connect the interface, we can get to the SCSI interface through the auxiliary SCSI interface! | | Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic | https://glennie.biz | | | +| International Solutions Planner | 9.0.0 | Url | Use the multi-byte SMTP program, then you can synthesize the multi-byte program! | | | | | | +| Legacy Interactions Supervisor | 9.7.2 | Ignored | | Try to generate the SAS matrix, maybe it will generate the cross-platform matrix! | Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn | | | | +| Lead Solutions Technician | 1.5.7 | Unknown | | | | | | | +| Lead Program Technician | 5.8.9 | Expression | | We need to transmit the back-end AGP sensor! | Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer | http://curtis.org | | | +| Regional Identity Engineer | 1.9.4 | Ignored | | The HTTP microchip is down, copy the digital microchip so we can copy the HTTP microchip! | Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston | | | | +| Regional Optimization Administrator | 3.6.4 | Expression | | I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive! | | http://serenity.info | | | +| International Tactics Administrator | 9.9.9 | Url | | | | | | | +| Human Tactics Facilitator | 5.7.0 | Url | Try to bypass the HTTP application, maybe it will bypass the digital application! | | | | | | +| Chief Infrastructure Specialist | 9.0.5 | Overwrite | hacking the port won't do anything, we need to back up the optical SMS port! | | Jackie Schumm | | | | +| Principal Factors Representative | 4.5.7 | Ignored | Try to input the RAM interface, maybe it will input the bluetooth interface! | The GB card is down, hack the digital card so we can hack the GB card! | Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker | https://imelda.org | | | +| Dynamic Security Specialist | 7.8.5 | Overwrite | Try to input the GB pixel, maybe it will input the wireless pixel! | You can't transmit the bus without indexing the digital TCP bus! | Guy Waters,Guy Waters | http://nova.biz | | | +| Principal Intranet Architect | 4.9.3 | Unknown | | | | | | | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Central Implementation Planner | 7.6.0 | Ignored | | Try to generate the HDD panel, maybe it will generate the solid state panel! | | | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | | | +| Forward Factors Architect | 6.7.6 | Ignored | | The THX transmitter is down, program the neural transmitter so we can program the THX transmitter! | Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts | | | | +| Global Optimization Architect | 1.5.0 | Unknown | Try to navigate the SCSI sensor, maybe it will navigate the mobile sensor! | | | | | | +| Principal Security Producer | 7.3.3 | Ignored | You can't generate the interface without quantifying the mobile FTP interface! | Use the digital SMTP bandwidth, then you can generate the digital bandwidth! | | http://jarrell.biz | | | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9c231a39cf9360ac.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9c231a39cf9360ac.verified.txt new file mode 100644 index 00000000..d773c03e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9c231a39cf9360ac.verified.txt @@ -0,0 +1,33 @@ +| -------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Legacy Interactions Supervisor | 9.7.2 | Ignored | | Try to generate the SAS matrix, maybe it will generate the cross-platform matrix! | Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn | | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Optimization Coordinator | 6.5.5 | Ignored | | | Darnell Terry | http://antoinette.org | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | | | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | | | +| Global Implementation Strategist | 5.9.8 | Ignored | | | Colleen Schroeder,Colleen Schroeder | https://enos.info | | | +| Internal Program Designer | 7.2.5 | Ignored | We need to hack the auxiliary COM hard drive! | | | | | | +| Customer Assurance Officer | 0.3.1 | Ignored | I'll navigate the digital CSS sensor, that should sensor the CSS sensor! | | | https://clementine.info | | | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | | | +| Customer Division Manager | 1.3.9 | Ignored | 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! | Rafael Altenwerth,Rafael Altenwerth,Rafael Altenwerth | | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Tactics Administrator | 9.9.9 | Url | | | | | | | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | | | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | | | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | | | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| -------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9c27d57d82cfddf3.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9c27d57d82cfddf3.verified.txt new file mode 100644 index 00000000..625ad140 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9c27d57d82cfddf3.verified.txt @@ -0,0 +1,165 @@ +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ---------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ---------------------- | ---------- | ---------------------- | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | | | +| Investor Intranet Producer | 5.4.1 | Ignored | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | http://hyman.org | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| National Directives Analyst | 8.2.7 | Ignored | We need to compress the primary GB array! | | | | | +| National Creative Engineer | 4.0.0 | Ignored | You can't parse the alarm without overriding the haptic SMTP alarm! | | | Candida | https://craig.biz | +| | | | | | | Timmothy | https://joanny.biz | +| | | | | | | Alfonzo | http://dorothea.org | +| | | | | | | 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 | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | | | +| Dynamic Optimization Director | 3.4.6 | Ignored | The PNG protocol is down, index the digital protocol so we can index the PNG protocol! | I'll transmit the online SSL feed, that should feed the SSL feed! | https://maximilian.org | | | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | | | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | | | +| International Data Representative | 3.5.7 | Ignored | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | http://dakota.com | | | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| Regional Mobility Manager | 2.7.0 | Ignored | | | http://gianni.info | Alvina | http://elouise.name | +| | | | | | | Ron | http://brown.org | +| | | | | | | Cordia | http://ericka.name | +| | | | | | | Eugene | http://rashad.info | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| Regional Directives Supervisor | 4.9.8 | Ignored | Try to reboot the THX hard drive, maybe it will reboot the open-source hard drive! | Use the primary GB driver, then you can generate the primary driver! | https://malcolm.net | | | +| Forward Directives Supervisor | 8.7.6 | Ignored | | The SSL microchip is down, hack the optical microchip so we can hack the SSL microchip! | http://shaun.org | Jadon | https://amelia.biz | +| | | | | | | Toni | http://angie.name | +| | | | | | | Ardella | http://melissa.net | +| | | | | | | Sandra | http://pearline.org | +| | | | | | | Noble | https://dusty.net | +| Chief Brand Associate | 7.6.8 | Ignored | | | https://lauriane.com | Devin | https://ramona.info | +| | | | | | | Alice | http://laverne.info | +| | | | | | | Layne | https://brooks.name | +| | | | | | | Kaitlyn | http://serenity.biz | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | Ignored | | The COM application is down, quantify the auxiliary application so we can quantify the COM application! | | Nyah | http://oliver.com | +| | | | | | | Ettie | http://lonny.net | +| | | | | | | Onie | https://cassie.biz | +| | | | | | | Solon | https://buck.biz | +| | | | | | | Taryn | http://hilton.com | +| | | | | | | Isabel | http://rogers.net | +| | | | | | | Bertrand | http://annetta.org | +| | | | | | | Remington | https://efrain.info | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | | | +| Legacy Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | | | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | | | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | | | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ---------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9c57c30ee2c1903c.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9c57c30ee2c1903c.verified.txt new file mode 100644 index 00000000..42162f1e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9c57c30ee2c1903c.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9d15ffbe31c12dcc.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9d15ffbe31c12dcc.verified.txt new file mode 100644 index 00000000..7a250882 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9d15ffbe31c12dcc.verified.txt @@ -0,0 +1,114 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------- | ---------- | ---------------------- | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Legacy Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9d5ed2099b4e1737.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9d5ed2099b4e1737.verified.txt new file mode 100644 index 00000000..81f456a1 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9d5ed2099b4e1737.verified.txt @@ -0,0 +1,25 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | Unknown | 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 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9d6ede8e7e03c8dd.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9d6ede8e7e03c8dd.verified.txt new file mode 100644 index 00000000..b921f5f9 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9d6ede8e7e03c8dd.verified.txt @@ -0,0 +1,127 @@ +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Product Data Liaison | 7.8.8 | Unknown | Try to calculate the GB card, maybe it will calculate the wireless card! | | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | | | Lewis | https://alisa.com | +| | | | | | | | | Delores | https://layne.name | +| | | | | | | | | Delphine | https://katlynn.org | +| | | | | | | | | Meredith | https://johanna.info | +| | | | | | | | | Jacklyn | https://kadin.com | +| | | | | | | | | Hardy | https://donna.info | +| International Research Architect | 3.7.4 | Ignored | | Try to quantify the USB application, maybe it will quantify the mobile application! | If we index the pixel, we can get to the AI pixel through the wireless AI pixel! | | | Madisen | http://raegan.biz | +| | | | | | | | | Cathy | http://giovanna.info | +| | | | | | | | | Ike | https://jerome.biz | +| Investor Division Assistant | 9.6.2 | Url | | I'll parse the primary PCI matrix, that should matrix the PCI matrix! | | | | Nya | http://sunny.biz | +| | | | | | | | | Arlo | https://cordia.info | +| | | | | | | | | Linnie | https://marcos.name | +| | | | | | | | | Luella | http://frederic.name | +| | | | | | | | | Lucinda | https://dion.name | +| | | | | | | | | Jayson | https://ryleigh.net | +| | | | | | | | | Mervin | https://lorenza.net | +| Dynamic Solutions Assistant | 5.6.4 | Ignored | navigating the alarm won't do anything, we need to copy the 1080p AGP alarm! | | | Craig Halvorson,Craig Halvorson,Craig Halvorson,Craig Halvorson | http://isabell.info | Tess | http://kailyn.info | +| | | | | | | | | Eileen | http://manley.name | +| | | | | | | | | Conor | https://glenna.name | +| | | | | | | | | Sylvester | http://gaylord.biz | +| | | | | | | | | Maxime | https://tom.com | +| National Accountability Producer | 6.9.7 | Unknown | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | https://linwood.biz | Travon | https://dedrick.name | +| | | | | | | | | Elissa | http://kaci.org | +| | | | | | | | | Brandi | https://aniyah.com | +| | | | | | | | | Tyson | https://bonita.org | +| | | | | | | | | Jazlyn | http://madonna.net | +| | | | | | | | | Deangelo | https://jess.info | +| | | | | | | | | Alvah | https://hans.net | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| Forward Tactics Agent | 6.8.8 | Url | | We need to back up the primary SMTP circuit! | The COM bandwidth is down, input the auxiliary bandwidth so we can input the COM bandwidth! | Jon Schulist,Jon Schulist | https://flo.info | Diana | http://eula.name | +| | | | | | | | | Raphael | https://zackery.info | +| | | | | | | | | Nettie | https://brayan.com | +| Global Mobility Technician | 8.6.3 | Unknown | | We need to input the haptic XML port! | | Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante | | Lonie | http://wilburn.org | +| | | | | | | | | Concepcion | http://ed.org | +| | | | | | | | | Amanda | https://sophie.net | +| | | | | | | | | Claudine | http://ofelia.biz | +| | | | | | | | | Petra | http://clare.name | +| | | | | | | | | Ozella | https://verla.name | +| | | | | | | | | Denis | http://pete.com | +| International Intranet Planner | 1.3.4 | Expression | 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 | Ahmad | https://lupe.com | +| | | | | | | | | Randi | https://jaiden.biz | +| | | | | | | | | Patience | https://marlene.name | +| | | | | | | | | Lenna | https://franco.name | +| | | | | | | | | Kyleigh | https://tevin.name | +| | | | | | | | | Sallie | https://jordane.name | +| | | | | | | | | Willy | https://daija.info | +| | | | | | | | | Jannie | https://retta.net | +| | | | | | | | | Lottie | http://yasmine.com | +| | | | | | | | | Delia | http://khalil.com | +| Investor Operations Director | 5.6.0 | Expression | Try to input the AI microchip, maybe it will input the 1080p microchip! | | If we synthesize the sensor, we can get to the AI sensor through the redundant AI sensor! | | https://alene.info | Elouise | https://ron.com | +| | | | | | | | | Brown | https://cordia.com | +| | | | | | | | | Ericka | https://eugene.com | +| | | | | | | | | Rashad | http://thomas.com | +| | | | | | | | | Antonia | https://marcelle.org | +| Product Interactions Planner | 7.4.0 | Expression | Try to navigate the PCI matrix, maybe it will navigate the haptic matrix! | | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | http://bertha.net | Rey | https://connie.info | +| | | | | | | | | Hollie | http://rico.name | +| | | | | | | | | Marshall | http://pierce.org | +| | | | | | | | | 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 | +| Principal Assurance Representative | 3.8.2 | Ignored | | | | Patsy Erdman,Patsy Erdman,Patsy Erdman,Patsy Erdman | | Jadon | https://amelia.biz | +| | | | | | | | | Toni | http://angie.name | +| | | | | | | | | Ardella | http://melissa.net | +| | | | | | | | | Sandra | http://pearline.org | +| | | | | | | | | Noble | https://dusty.net | +| Corporate Marketing Strategist | 3.8.5 | Ignored | | | Use the redundant JSON application, then you can program the redundant application! | Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch | | Naomi | http://mckenna.net | +| | | | | | | | | Jalyn | https://katharina.name | +| | | | | | | | | Kane | http://beulah.biz | +| | | | | | | | | Eleanora | http://birdie.net | +| | | | | | | | | Alvah | http://keanu.net | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Dynamic Group Associate | 6.6.1 | Ignored | We need to input the open-source SMTP bus! | | | | http://kian.name | Burley | http://lemuel.com | +| | | | | | | | | Brenden | http://agnes.net | +| | | | | | | | | Urban | https://micheal.name | +| | | | | | | | | Ida | https://murray.org | +| | | | | | | | | Samanta | http://assunta.biz | +| | | | | | | | | Florencio | http://bradford.info | +| | | | | | | | | Marcella | http://ray.net | +| | | | | | | | | Gunnar | https://elissa.net | +| | | | | | | | | Maud | https://edgar.name | +| | | | | | | | | Angelina | https://adonis.biz | +| Chief Solutions Administrator | 0.4.1 | Unknown | | 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 | Shaun | https://antwan.org | +| | | | | | | | | Hazel | https://forrest.net | +| | | | | | | | | Brianne | https://dorothea.name | +| | | | | | | | | Don | http://torey.com | +| | | | | | | | | Cedrick | https://zachariah.net | +| | | | | | | | | Marcelle | https://adah.org | +| | | | | | | | | Barney | http://erica.org | +| | | | | | | | | Jordi | https://alysha.com | +| | | | | | | | | Kristina | https://pattie.info | +| | | | | | | | | Cory | http://kailey.com | +| Global Mobility Facilitator | 8.5.9 | Url | | We need to parse the primary PCI protocol! | | Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch | https://itzel.info | Mitchel | http://carleton.name | +| | | | | | | | | Madalyn | http://narciso.net | +| | | | | | | | | Mia | http://nicklaus.net | +| | | | | | | | | Abelardo | http://carolina.name | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | Julius Abbott | http://celestine.info | Ettie | http://lonny.net | +| | | | | | | | | Onie | https://cassie.biz | +| | | | | | | | | Solon | https://buck.biz | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9da7cabd0ba7d6d8.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9da7cabd0ba7d6d8.verified.txt new file mode 100644 index 00000000..dc0eda89 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9da7cabd0ba7d6d8.verified.txt @@ -0,0 +1,8 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------- | ------- | -------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Error | Error 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 | Alyson | https://carmelo.biz | +| | | | | | Michele | https://miles.net | +| | | | | | Freddie | http://kade.net | +| | | | | | Jaunita | http://marcelina.biz | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------- | ------- | -------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9dc2719c5df803d7.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9dc2719c5df803d7.verified.txt new file mode 100644 index 00000000..4d381fcd --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9dc2719c5df803d7.verified.txt @@ -0,0 +1,91 @@ +| ----------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | --------- | --------------------- | +| Global Paradigm Assistant | 8.0.5 | Expression | We need to calculate the solid state HTTP hard drive! | | | https://randy.org | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Regional Metrics Strategist | 1.2.1 | Unknown | | Try to override the GB driver, maybe it will override the digital driver! | | | | | +| Principal Intranet Architect | 4.9.3 | Unknown | | | | | | | +| Senior Configuration Developer | 4.0.9 | Url | Use the primary SCSI matrix, then you can program the primary matrix! | If we parse the interface, we can get to the JSON interface through the mobile JSON interface! | Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle | | | | +| District Interactions Supervisor | 4.5.2 | Url | The XSS capacitor is down, generate the bluetooth capacitor so we can generate the XSS capacitor! | The ADP firewall is down, input the primary firewall so we can input the ADP firewall! | | | | | +| Future Tactics Assistant | 1.5.5 | Expression | The IB sensor is down, reboot the virtual sensor so we can reboot the IB sensor! | If we calculate the matrix, we can get to the SMS matrix through the bluetooth SMS matrix! | | https://giovanny.net | | | +| Lead Program Technician | 5.8.9 | Expression | | We need to transmit the back-end AGP sensor! | Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer | http://curtis.org | | | +| Forward Usability Specialist | 5.6.9 | Overwrite | I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth! | | | | | | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | | | +| Direct Brand Director | 4.7.4 | Url | You can't navigate the capacitor without programming the solid state SQL capacitor! | | | | | | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | | | +| Customer Solutions Officer | 4.5.2 | Expression | You can't copy the matrix without compressing the wireless AGP matrix! | | | https://rylan.name | | | +| Global Optimization Engineer | 8.7.9 | Expression | | quantifying the transmitter won't do anything, we need to synthesize the auxiliary FTP transmitter! | | http://aniya.org | | | +| National Assurance Planner | 2.7.7 | Unknown | | I'll reboot the online AGP alarm, that should alarm the AGP alarm! | Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag | | | | +| Investor Accounts Facilitator | 7.7.8 | Expression | | | Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman | http://scottie.biz | | | +| Direct Division Officer | 6.5.6 | Url | transmitting the protocol won't do anything, we need to generate the multi-byte THX protocol! | | Glenda Schuppe,Glenda Schuppe | http://catherine.name | | | +| Regional Functionality Agent | 5.9.9 | Overwrite | We need to index the 1080p SAS hard drive! | I'll connect the digital JBOD application, that should application the JBOD application! | Gloria Williamson,Gloria Williamson,Gloria Williamson,Gloria Williamson | http://arthur.net | | | +| Product Solutions Manager | 9.5.2 | Overwrite | I'll hack the primary SDD card, that should card the SDD card! | hacking the transmitter won't do anything, we need to index the open-source CSS transmitter! | Sergio Bailey,Sergio Bailey,Sergio Bailey | | | | +| Investor Quality Associate | 0.5.1 | Expression | | Try to reboot the SSL alarm, maybe it will reboot the solid state alarm! | Carrie Hansen,Carrie Hansen,Carrie Hansen,Carrie Hansen | https://ezequiel.biz | | | +| Dynamic Branding Manager | 1.4.0 | Overwrite | You can't navigate the application without generating the cross-platform COM application! | Try to program the FTP alarm, maybe it will program the virtual alarm! | | http://dario.info | | | +| Chief Factors Developer | 5.9.5 | Url | | Try to connect the ADP system, maybe it will connect the solid state system! | Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady | | | | +| Principal Operations Assistant | 0.9.0 | Url | I'll copy the auxiliary HDD bus, that should bus the HDD bus! | I'll copy the digital USB circuit, that should circuit the USB circuit! | | | | | +| Dynamic Data Technician | 4.2.3 | Url | I'll copy the optical RAM feed, that should feed the RAM feed! | | June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds | http://nia.info | | | +| Corporate Intranet Specialist | 3.5.6 | Expression | | | Edmund Lehner,Edmund Lehner,Edmund Lehner,Edmund Lehner | | | | +| Customer Communications Engineer | 6.9.4 | Overwrite | | | Tanya Reinger,Tanya Reinger,Tanya Reinger | http://tito.name | | | +| Central Division Administrator | 1.0.4 | Overwrite | We need to program the optical COM microchip! | We need to hack the haptic SAS microchip! | | | | | +| Future Configuration Officer | 7.6.0 | Unknown | You can't compress the alarm without parsing the optical JBOD alarm! | I'll compress the back-end SSL system, that should system the SSL system! | Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie | | | | +| Regional Optimization Administrator | 3.6.4 | Expression | | I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive! | | http://serenity.info | | | +| Global Optimization Architect | 1.5.0 | Unknown | Try to navigate the SCSI sensor, maybe it will navigate the mobile sensor! | | | | | | +| Customer Program Developer | 2.9.8 | Expression | | You can't transmit the pixel without calculating the bluetooth FTP pixel! | | http://lenora.com | | | +| District Assurance Technician | 8.5.5 | Overwrite | | | | http://zander.com | | | +| Central Research Technician | 2.8.8 | Url | | You can't generate the program without connecting the bluetooth USB program! | | | | | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| Human Markets Planner | 5.0.1 | Expression | Try to back up the COM driver, maybe it will back up the bluetooth driver! | | | | | | +| Corporate Marketing Coordinator | 3.6.1 | Overwrite | | | | https://marcos.org | | | +| Legacy Security Facilitator | 1.9.0 | Expression | | Use the cross-platform ADP alarm, then you can back up the cross-platform alarm! | | https://edythe.info | | | +| Human Identity Representative | 4.1.5 | Overwrite | The SAS bus is down, program the neural bus so we can program the SAS bus! | | Joyce Auer,Joyce Auer,Joyce Auer | http://alyce.biz | | | +| Principal Brand Executive | 7.2.7 | Unknown | | | | https://dariana.com | | | +| Global Identity Supervisor | 0.9.1 | Overwrite | | | | | | | +| Dynamic Division Representative | 7.3.5 | Unknown | | I'll index the haptic FTP alarm, that should alarm the FTP alarm! | Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson | http://taurean.net | | | +| Dynamic Security Director | 0.0.2 | Url | transmitting the feed won't do anything, we need to navigate the redundant SDD feed! | Try to parse the HTTP port, maybe it will parse the bluetooth port! | Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block | | | | +| Lead Solutions Technician | 1.5.7 | Unknown | | | | | | | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | | | +| Customer Branding Orchestrator | 8.3.7 | Overwrite | | We need to bypass the neural USB capacitor! | Nora Dietrich | http://nona.com | | | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | | | +| Human Tactics Facilitator | 5.7.0 | Url | Try to bypass the HTTP application, maybe it will bypass the digital application! | | | | | | +| District Optimization Technician | 5.2.3 | Overwrite | | | Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti | https://douglas.info | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | | | +| International Tactics Administrator | 9.9.9 | Url | | | | | | | +| Regional Directives Liaison | 4.7.8 | Expression | If we connect the interface, we can get to the SCSI interface through the auxiliary SCSI interface! | | Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic | https://glennie.biz | | | +| Customer Web Assistant | 1.9.0 | Unknown | | | | | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | | | +| Human Program Analyst | 3.1.8 | Expression | If we back up the application, we can get to the USB application through the cross-platform USB application! | | | http://efrain.org | | | +| Customer Mobility Assistant | 4.2.9 | 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 | http://adonis.biz | | | +| 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 | | | +| 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 | | | | +| Forward Data Orchestrator | 3.3.5 | Expression | Use the haptic XML driver, then you can index the haptic driver! | compressing the system won't do anything, we need to compress the optical RSS system! | | | | | +| Investor Tactics Director | 0.4.3 | Expression | | | | https://aylin.com | | | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | | | +| Dynamic Solutions Agent | 0.0.5 | Overwrite | Use the haptic USB card, then you can navigate the haptic card! | | | | | | +| Dynamic Factors Associate | 1.8.3 | Unknown | | You can't navigate the panel without calculating the open-source THX panel! | | http://dovie.name | | | +| Dynamic Security Specialist | 7.8.5 | Overwrite | Try to input the GB pixel, maybe it will input the wireless pixel! | You can't transmit the bus without indexing the digital TCP bus! | Guy Waters,Guy Waters | http://nova.biz | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| International Branding Producer | 3.8.2 | Expression | We need to generate the solid state AGP microchip! | | | | | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | | | +| Lead Operations Supervisor | 4.5.2 | Expression | The AI panel is down, transmit the open-source panel so we can transmit the AI panel! | | | | | | +| Chief Program Associate | 2.6.7 | Unknown | We need to compress the optical PNG array! | | Wilbert Kunze,Wilbert Kunze,Wilbert Kunze,Wilbert Kunze | http://coy.info | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Brand Strategist | 3.9.3 | Url | | | Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy | https://rowena.info | | | +| Dynamic Implementation Engineer | 6.7.1 | Overwrite | We need to transmit the open-source EXE interface! | | | http://margie.info | | | +| Chief Infrastructure Specialist | 9.0.5 | Overwrite | hacking the port won't do anything, we need to back up the optical SMS port! | | Jackie Schumm | | | | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | | | +| International Solutions Planner | 9.0.0 | Url | Use the multi-byte SMTP program, then you can synthesize the multi-byte program! | | | | | | +| Product Directives Engineer | 8.2.3 | Unknown | transmitting the bus won't do anything, we need to navigate the online IB bus! | | Maggie Lindgren | | | | +| Human Paradigm Assistant | 8.8.8 | Expression | | | Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich | | | | +| Product Functionality Supervisor | 9.4.5 | Overwrite | Use the 1080p AI microchip, then you can reboot the 1080p microchip! | Use the open-source ADP matrix, then you can copy the open-source matrix! | | | | | +| Human Accounts Orchestrator | 4.1.6 | Url | | | | | | | +| ----------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9debdc154014ea77.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9debdc154014ea77.verified.txt new file mode 100644 index 00000000..d9b9991e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_9debdc154014ea77.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | Clare | https://bobby.info | +| | | | | | | Cecil | https://kira.net | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | Ila | http://rachel.com | +| | | | | | | Catalina | http://jolie.com | +| | | | | | | Dianna | https://leda.net | +| | | | | | | Nicola | http://aleen.name | +| | | | | | | Nelda | http://delpha.net | +| | | | | | | Delores | http://rae.biz | +| | | | | | | Cynthia | https://zella.com | +| | | | | | | Greta | http://adolph.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a0104cff49621b50.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a0104cff49621b50.verified.txt new file mode 100644 index 00000000..259c791d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a0104cff49621b50.verified.txt @@ -0,0 +1,131 @@ +| ------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | -------- | ---------------------- | +| National Creative Analyst | 6.3.1 | Expression | | The SSL feed is down, back up the cross-platform feed so we can back up the SSL feed! | | | | | | +| 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Chief Markets Executive | 1.5.7 | Ignored | | | | | | | | +| Direct Applications Assistant | 3.5.8 | Unknown | The PCI pixel is down, synthesize the multi-byte pixel so we can synthesize the PCI pixel! | If we back up the driver, we can get to the TCP driver through the redundant TCP driver! | We need to back up the 1080p COM interface! | | http://consuelo.info | | | +| Human Group Agent | 3.2.2 | Url | | | generating the interface won't do anything, we need to hack the optical PCI interface! | Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser | https://vilma.com | | | +| Global Optimization Engineer | 8.7.9 | Ignored | | quantifying the transmitter won't do anything, we need to synthesize the auxiliary FTP transmitter! | If we synthesize the port, we can get to the HTTP port through the auxiliary HTTP port! | | http://aniya.org | | | +| Senior Brand Agent | 3.1.9 | Url | generating the alarm won't do anything, we need to parse the virtual XSS alarm! | | I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth! | | https://lina.info | | | +| Lead Program Engineer | 4.5.7 | Overwrite | | The PCI protocol is down, calculate the bluetooth protocol so we can calculate the PCI protocol! | | | | | | +| National Implementation Agent | 5.6.8 | Expression | | | Use the multi-byte PNG circuit, then you can navigate the multi-byte circuit! | Ira Hermiston,Ira Hermiston,Ira Hermiston,Ira Hermiston | http://rex.biz | | | +| Regional Communications Strategist | 9.3.1 | Url | overriding the matrix won't do anything, we need to back up the solid state IB matrix! | Try to index the HDD panel, maybe it will index the haptic panel! | We need to index the bluetooth JSON pixel! | | http://eloisa.biz | | | +| Dynamic Factors Producer | 5.7.1 | Url | | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | | | | | +| District Creative Designer | 1.4.6 | Url | We need to program the haptic IB panel! | | | | http://cameron.info | | | +| Internal Program Engineer | 2.9.3 | Expression | I'll input the neural SQL application, that should application the SQL application! | You can't generate the hard drive without transmitting the haptic RAM hard drive! | I'll bypass the optical AGP feed, that should feed the AGP feed! | | http://cleta.org | | | +| Dynamic Configuration Assistant | 3.2.1 | Expression | | 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 | | | | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| Forward Branding Strategist | 4.6.2 | Overwrite | | | The THX hard drive is down, compress the back-end hard drive so we can compress the THX hard drive! | | | | | +| International Optimization Supervisor | 9.5.8 | Ignored | | | | | https://roman.com | | | +| Principal Optimization Administrator | 9.6.7 | Ignored | The XML card is down, bypass the back-end card so we can bypass the XML card! | | | | https://franz.biz | | | +| Customer Markets Assistant | 5.9.9 | Ignored | The JSON hard drive is down, copy the digital hard drive so we can copy the JSON hard drive! | | | Cecilia Runolfsdottir,Cecilia Runolfsdottir,Cecilia Runolfsdottir,Cecilia Runolfsdottir,Cecilia Runolfsdottir,Cecilia Runolfsdottir,Cecilia Runolfsdottir | http://cullen.net | | | +| Customer Interactions Representative | 0.8.8 | Url | We need to quantify the digital SSL array! | | | | http://heather.name | | | +| Chief Response Strategist | 8.0.4 | Url | | The RSS alarm is down, compress the mobile alarm so we can compress the RSS alarm! | Use the 1080p PNG application, then you can calculate the 1080p application! | Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann | | | | +| District Optimization Coordinator | 0.3.2 | Ignored | | If we back up the hard drive, we can get to the SCSI hard drive through the neural SCSI hard drive! | | David Ullrich,David Ullrich,David Ullrich,David Ullrich,David Ullrich,David Ullrich,David Ullrich | | | | +| Global Usability Manager | 9.1.0 | Overwrite | | Try to back up the THX interface, maybe it will back up the auxiliary interface! | | | http://vella.com | | | +| International Paradigm Analyst | 7.0.8 | Ignored | Try to compress the USB hard drive, maybe it will compress the neural hard drive! | We need to parse the solid state TCP interface! | The COM circuit is down, override the primary circuit so we can override the COM circuit! | Wilbert Willms,Wilbert Willms,Wilbert Willms,Wilbert Willms,Wilbert Willms,Wilbert Willms,Wilbert Willms,Wilbert Willms,Wilbert Willms | https://noemie.biz | | | +| Regional Configuration Engineer | 7.3.8 | Expression | Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter! | You can't reboot the matrix without navigating the optical SDD matrix! | | | http://roman.org | | | +| Forward Usability Developer | 6.9.1 | Overwrite | | | You can't connect the protocol without overriding the redundant RSS protocol! | | | | | +| Senior Metrics Engineer | 8.3.4 | Overwrite | | Try to quantify the FTP bus, maybe it will quantify the optical bus! | | Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand | http://lou.net | | | +| Forward Tactics Planner | 5.4.6 | Url | I'll input the primary GB port, that should port the GB port! | | 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 | https://caterina.info | | | +| Principal Web Associate | 4.2.5 | Expression | | | If we index the hard drive, we can get to the XSS hard drive through the primary XSS hard drive! | Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles | | | | +| Central Factors Supervisor | 0.8.3 | Overwrite | If we transmit the monitor, we can get to the HTTP monitor through the digital HTTP monitor! | Use the optical IB transmitter, then you can navigate the optical transmitter! | If we back up the firewall, we can get to the TCP firewall through the multi-byte TCP firewall! | Kathleen Blick,Kathleen Blick,Kathleen Blick,Kathleen Blick,Kathleen Blick | http://clement.name | | | +| Principal Identity Designer | 4.7.0 | Ignored | | | compressing the sensor won't do anything, we need to index the mobile ADP sensor! | | https://brock.net | | | +| Internal Operations Producer | 5.8.9 | Overwrite | | Use the online SMTP pixel, then you can index the online pixel! | | | | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Assurance Representative | 3.8.2 | Ignored | | | | Patsy Erdman,Patsy Erdman,Patsy Erdman,Patsy Erdman | | Jadon | https://amelia.biz | +| | | | | | | | | Toni | http://angie.name | +| | | | | | | | | Ardella | http://melissa.net | +| | | | | | | | | Sandra | http://pearline.org | +| | | | | | | | | Noble | https://dusty.net | +| Future Tactics Specialist | 0.2.2 | Overwrite | We need to override the primary SQL pixel! | We need to transmit the redundant EXE driver! | You can't calculate the hard drive without hacking the multi-byte FTP hard drive! | | | | | +| Direct Applications Designer | 1.5.1 | Unknown | | We need to connect the haptic TCP panel! | If we bypass the card, we can get to the HDD card through the auxiliary HDD card! | Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling | http://tito.name | | | +| National Security Orchestrator | 3.5.6 | Expression | Try to copy the HDD array, maybe it will copy the back-end array! | 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! | Roderick Koelpin,Roderick Koelpin,Roderick Koelpin | | | | +| Senior Brand Officer | 9.3.6 | Url | If we override the system, we can get to the HDD system through the haptic HDD system! | If we parse the bus, we can get to the XML bus through the solid state XML bus! | | | http://carol.name | | | +| Corporate Program Associate | 5.2.5 | Overwrite | | | overriding the interface won't do anything, we need to override the virtual THX interface! | | | | | +| Chief Paradigm Supervisor | 4.3.3 | Url | | | We need to bypass the wireless XML pixel! | Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins | https://zion.info | | | +| Customer Branding Engineer | 7.9.7 | Ignored | Try to input the TCP sensor, maybe it will input the haptic sensor! | If we navigate the microchip, we can get to the SMS microchip through the redundant SMS microchip! | compressing the system won't do anything, we need to synthesize the redundant ADP system! | Randall Haley,Randall Haley,Randall Haley,Randall Haley,Randall Haley,Randall Haley,Randall Haley,Randall Haley,Randall Haley,Randall Haley | | | | +| Corporate Intranet Agent | 9.1.8 | Url | We need to compress the 1080p GB circuit! | | The PCI driver is down, reboot the haptic driver so we can reboot the PCI driver! | Essie Hamill,Essie Hamill | http://precious.name | | | +| Legacy Intranet Planner | 8.3.2 | Expression | Use the bluetooth AI bandwidth, then you can transmit the bluetooth bandwidth! | | | | http://nathanael.name | | | +| Dynamic Paradigm Officer | 2.3.4 | Overwrite | | | | | https://charity.biz | | | +| Investor Applications Executive | 9.9.5 | Ignored | The AI application is down, connect the open-source application so we can connect the AI application! | | Use the redundant TCP circuit, then you can calculate the redundant circuit! | | https://xander.com | | | +| Legacy Interactions Officer | 8.8.5 | Overwrite | | | Try to program the RAM bandwidth, maybe it will program the optical bandwidth! | | | | | +| Corporate Division Executive | 4.7.8 | Url | I'll index the neural SDD bus, that should bus the SDD bus! | If we reboot the program, we can get to the SSL program through the primary SSL program! | | Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros | http://wilmer.com | | | +| Global Configuration Strategist | 1.4.4 | Ignored | | | | Vickie Sipes | https://marilyne.com | | | +| Investor Usability Officer | 2.5.2 | Unknown | Try to program the XML capacitor, maybe it will program the haptic capacitor! | Use the optical SSL alarm, then you can bypass the optical alarm! | | Johnny Bernier | http://orlo.name | | | +| Human Program Technician | 2.8.4 | Overwrite | | | | Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill | http://tomasa.info | | | +| Forward Paradigm Developer | 7.9.7 | Overwrite | The GB interface is down, input the auxiliary interface so we can input the GB interface! | The XSS transmitter is down, back up the online transmitter so we can back up the XSS transmitter! | | Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter | http://maureen.name | | | +| Legacy Marketing Designer | 4.5.9 | Expression | | You can't bypass the microchip without parsing the back-end JBOD microchip! | You can't bypass the alarm without generating the back-end HTTP alarm! | | http://lexi.net | | | +| International Branding Producer | 3.8.2 | Expression | We need to generate the solid state AGP microchip! | | | | | | | +| Dynamic Configuration Administrator | 4.3.8 | Url | | | Use the redundant AGP microchip, then you can override the redundant microchip! | Roberto Deckow,Roberto Deckow,Roberto Deckow | | | | +| Corporate Optimization Agent | 2.7.0 | Ignored | | | | | http://bryce.com | | | +| Central Tactics Director | 4.6.7 | Url | backing up the system won't do anything, we need to parse the neural CSS system! | We need to transmit the back-end RSS transmitter! | | Doyle Osinski,Doyle Osinski,Doyle Osinski,Doyle Osinski | https://valentina.net | | | +| Customer Group Agent | 0.9.9 | Ignored | | If we override the sensor, we can get to the COM sensor through the 1080p COM sensor! | I'll generate the auxiliary HTTP microchip, that should microchip the HTTP microchip! | | | | | +| Forward Directives Representative | 0.5.1 | Url | | parsing the panel won't do anything, we need to calculate the digital SMTP panel! | | Theresa Heathcote,Theresa Heathcote,Theresa Heathcote,Theresa Heathcote,Theresa Heathcote,Theresa Heathcote | https://cleve.biz | | | +| Senior Quality Executive | 4.4.8 | Url | I'll quantify the solid state THX feed, that should feed the THX feed! | Use the online RAM array, then you can index the online array! | You can't reboot the transmitter without transmitting the online ADP transmitter! | | http://khalid.com | | | +| Human Accountability Developer | 6.9.0 | Unknown | If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit! | | | | | | | +| Internal Factors Facilitator | 2.6.3 | Url | | Try to copy the PNG sensor, maybe it will copy the 1080p sensor! | | Mable Kris,Mable Kris,Mable Kris,Mable Kris,Mable Kris | http://melba.name | | | +| Internal Solutions Director | 8.4.4 | Unknown | | | | | | | | +| Dynamic Tactics Facilitator | 0.7.3 | Unknown | | | The SSL port is down, bypass the haptic port so we can bypass the SSL port! | | | | | +| Lead Identity Developer | 7.1.0 | Url | | compressing the bandwidth won't do anything, we need to bypass the primary RAM bandwidth! | | | https://eve.com | | | +| Regional Factors Designer | 7.4.1 | Url | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | Use the haptic RSS port, then you can transmit the haptic port! | Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus | | | | +| Senior Operations Assistant | 2.4.2 | Expression | | If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth! | | Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva | https://hector.info | | | +| Regional Brand Associate | 4.0.9 | Expression | | | I'll program the wireless HDD pixel, that should pixel the HDD pixel! | | | | | +| District Integration Designer | 6.2.2 | Expression | | You can't connect the port without connecting the back-end COM port! | | Ignacio Hane,Ignacio Hane | https://cindy.org | | | +| Senior Research Liaison | 5.0.6 | Overwrite | If we compress the system, we can get to the AGP system through the multi-byte AGP system! | I'll hack the optical XSS monitor, that should monitor the XSS monitor! | | | http://clair.biz | | | +| Lead Optimization Analyst | 2.1.7 | Expression | Use the wireless XSS bandwidth, then you can program the wireless bandwidth! | The SDD hard drive is down, copy the virtual hard drive so we can copy the SDD hard drive! | | Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson | https://madge.info | | | +| National Factors Administrator | 8.1.4 | Unknown | | | | | http://janelle.name | | | +| Chief Functionality Planner | 5.1.2 | Unknown | | I'll calculate the 1080p HDD system, that should system the HDD system! | | Matt Mills,Matt Mills | http://myrtice.com | | | +| Lead Configuration Liaison | 1.8.9 | Expression | | connecting the transmitter won't do anything, we need to program the cross-platform XSS transmitter! | | | http://esther.biz | | | +| Investor Optimization Executive | 1.6.1 | Ignored | | | Use the auxiliary AGP matrix, then you can generate the auxiliary matrix! | Willard Abshire | http://adalberto.info | | | +| Legacy Communications Engineer | 7.8.1 | Expression | | I'll synthesize the haptic THX hard drive, that should hard drive the THX hard drive! | The ADP hard drive is down, input the back-end hard drive so we can input the ADP hard drive! | Hilda Kub,Hilda Kub,Hilda Kub,Hilda Kub,Hilda Kub | | | | +| Central Marketing Orchestrator | 3.3.1 | Ignored | | Try to parse the IB driver, maybe it will parse the 1080p driver! | We need to connect the bluetooth RSS application! | Kelly Herman,Kelly Herman,Kelly Herman,Kelly Herman,Kelly Herman,Kelly Herman,Kelly Herman,Kelly Herman,Kelly Herman | https://brice.net | | | +| Forward Communications Director | 6.0.8 | Overwrite | Try to override the AI alarm, maybe it will override the online alarm! | We need to quantify the virtual TCP card! | | Kristin Bernhard,Kristin Bernhard | | | | +| Dynamic Configuration Specialist | 3.6.8 | Overwrite | | Use the haptic AGP protocol, then you can program the haptic protocol! | | Meredith Sawayn,Meredith Sawayn,Meredith Sawayn,Meredith Sawayn,Meredith Sawayn,Meredith Sawayn | | | | +| Global Markets Administrator | 8.6.8 | Expression | 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! | The SSL application is down, reboot the bluetooth application so we can reboot the SSL application! | Julius Bernhard,Julius Bernhard,Julius Bernhard,Julius Bernhard | https://lois.biz | | | +| Customer Metrics Analyst | 6.7.1 | Unknown | | | | | | | | +| Global Solutions Administrator | 5.2.4 | Overwrite | We need to calculate the online SAS bandwidth! | If we index the bus, we can get to the CSS bus through the optical CSS bus! | | Nellie Oberbrunner | https://hailee.biz | | | +| Forward Program Officer | 4.2.4 | Url | quantifying the capacitor won't do anything, we need to override the open-source AI capacitor! | indexing the port won't do anything, we need to back up the virtual AGP port! | calculating the bus won't do anything, we need to generate the online CSS bus! | Leon Mayer,Leon Mayer | | | | +| Investor Interactions Designer | 1.9.4 | Url | | | parsing the card won't do anything, we need to synthesize the online SQL card! | Stella Barton,Stella Barton | https://octavia.name | | | +| Future Accounts Designer | 5.1.9 | Expression | We need to navigate the wireless SAS pixel! | | | | | | | +| Global Configuration Consultant | 5.9.5 | Expression | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | bypassing the bus won't do anything, we need to calculate the virtual GB bus! | | Guadalupe Littel,Guadalupe Littel,Guadalupe Littel | | | | +| National Creative Officer | 5.5.6 | Overwrite | indexing the capacitor won't do anything, we need to reboot the redundant FTP capacitor! | | The TCP array is down, bypass the mobile array so we can bypass the TCP array! | | http://orpha.name | | | +| International Marketing Officer | 2.2.1 | Overwrite | If we connect the driver, we can get to the XSS driver through the online XSS driver! | | | | https://weldon.info | | | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| Corporate Intranet Associate | 7.5.1 | Overwrite | | 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! | | | | | +| National Infrastructure Architect | 6.6.7 | Unknown | | If we bypass the hard drive, we can get to the EXE hard drive through the bluetooth EXE hard drive! | | Howard Rath,Howard Rath,Howard Rath,Howard Rath | http://darlene.net | | | +| Chief Program Director | 8.8.8 | Overwrite | If we parse the protocol, we can get to the IB protocol through the wireless IB protocol! | | Use the primary SCSI matrix, then you can program the primary matrix! | | | | | +| Forward Research Associate | 3.4.7 | Url | | You can't navigate the capacitor without programming the solid state SQL capacitor! | | | | | | +| Corporate Intranet Facilitator | 2.8.8 | Ignored | If we program the feed, we can get to the CSS feed through the solid state CSS feed! | Use the redundant GB driver, then you can connect the redundant driver! | | Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser | http://isabella.name | | | +| Legacy Solutions Architect | 7.9.3 | Url | | Try to input the AI sensor, maybe it will input the digital sensor! | If we program the array, we can get to the JBOD array through the primary JBOD array! | | | | | +| Human Program Orchestrator | 5.2.4 | Url | Use the cross-platform EXE microchip, then you can quantify the cross-platform microchip! | | bypassing the bandwidth won't do anything, we need to copy the mobile JBOD bandwidth! | | | | | +| Product Tactics Engineer | 5.6.9 | Overwrite | Use the online TCP driver, then you can navigate the online driver! | I'll transmit the open-source HTTP pixel, that should pixel the HTTP pixel! | transmitting the program won't do anything, we need to generate the multi-byte SAS program! | Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich | | | | +| International Marketing Officer | 7.2.8 | Expression | | | | Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk | | | | +| Direct Group Liaison | 3.5.1 | Overwrite | We need to parse the haptic SMS monitor! | | We need to program the auxiliary JBOD circuit! | | | | | +| International Intranet Officer | 3.6.7 | Ignored | You can't transmit the pixel without quantifying the mobile AGP pixel! | transmitting the matrix won't do anything, we need to connect the haptic SCSI matrix! | You can't generate the firewall without backing up the primary HTTP firewall! | Ramona Erdman,Ramona Erdman | http://mack.net | | | +| Corporate Infrastructure Executive | 4.8.1 | Unknown | | | Try to index the FTP transmitter, maybe it will index the bluetooth transmitter! | Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist | https://justice.info | | | +| Future Markets Architect | 7.2.2 | Overwrite | If we synthesize the port, we can get to the CSS port through the online CSS port! | synthesizing the panel won't do anything, we need to transmit the neural THX panel! | | Gerald Cruickshank,Gerald Cruickshank,Gerald Cruickshank | https://maxime.info | | | +| International Branding Associate | 4.9.4 | Url | | 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://trinity.name | | | +| Central Functionality Technician | 3.9.3 | Url | | | The AI microchip is down, override the multi-byte microchip so we can override the AI microchip! | | | | | +| National Solutions Representative | 5.6.2 | Overwrite | | | You can't synthesize the bandwidth without programming the solid state XSS bandwidth! | | | | | +| ------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a0370ff6f21a5d3e.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a0370ff6f21a5d3e.verified.txt new file mode 100644 index 00000000..a443d205 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a0370ff6f21a5d3e.verified.txt @@ -0,0 +1,129 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Ignored | 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 | Unknown | 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 | +| Internal Branding Executive | 2.0.9 | Overwrite | | The SAS sensor is down, input the auxiliary sensor so we can input the SAS sensor! | You can't bypass the application without programming the solid state COM application! | https://efrain.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 | +| International Assurance Executive | 2.8.5 | Ignored | The RSS driver is down, transmit the solid state driver so we can transmit the RSS driver! | | We need to parse the optical FTP driver! | http://antonina.com | Alvah | http://otha.name | +| | | | | | | | Natasha | https://nyah.com | +| | | | | | | | Oliver | http://ettie.biz | +| | | | | | | | Lonny | https://onie.org | +| | | | | | | | Cassie | http://solon.net | +| | | | | | | | Buck | http://taryn.com | +| | | | | | | | Hilton | http://isabel.com | +| Legacy Creative Liaison | 0.4.6 | Expression | | The SMS system is down, back up the open-source system so we can back up the SMS system! | I'll connect the optical FTP program, that should program the FTP program! | | Candice | http://linnea.com | +| | | | | | | | Everardo | http://daryl.net | +| | | | | | | | Jerrod | http://laila.com | +| | | | | | | | Caleigh | https://adolfo.com | +| | | | | | | | Daisha | http://justine.biz | +| | | | | | | | Americo | http://tessie.org | +| | | | | | | | Howard | https://luis.info | +| Regional Paradigm Assistant | 9.8.0 | Url | | If we input the transmitter, we can get to the HDD transmitter through the bluetooth HDD transmitter! | | | Jordan | https://kathryne.name | +| | | | | | | | Mayra | http://lance.name | +| | | | | | | | Jimmie | https://lorine.org | +| | | | | | | | Rebeka | https://malika.org | +| | | | | | | | Trinity | http://fritz.info | +| | | | | | | | Neha | https://marianne.name | +| | | | | | | | Colin | https://billie.biz | +| | | | | | | | Brielle | https://brennon.name | +| | | | | | | | Myriam | https://rosemary.name | +| Global Optimization Architect | 4.8.0 | Expression | | 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://gaylord.name | Vida | https://theresia.biz | +| | | | | | | | Ransom | http://isom.com | +| | | | | | | | Anastasia | http://kamryn.info | +| | | | | | | | Marlene | https://cyril.name | +| | | | | | | | Zetta | http://pete.org | +| | | | | | | | Candida | https://craig.biz | +| | | | | | | | Timmothy | https://joanny.biz | +| Lead Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Lead Integration Engineer | 8.7.4 | Unknown | | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | http://jackeline.biz | Reanna | http://buck.net | +| | | | | | | | Christine | http://demarco.name | +| | | | | | | | Marge | http://astrid.net | +| | | | | | | | Charlene | http://rod.net | +| Chief Data Orchestrator | 4.3.2 | Ignored | | | We need to back up the multi-byte SCSI transmitter! | http://gaylord.com | Taya | http://micaela.biz | +| | | | | | | | Evert | http://tomas.net | +| | | | | | | | Brett | http://virginie.net | +| Dynamic Data Director | 8.6.8 | Overwrite | | | We need to back up the primary SMTP circuit! | https://timothy.info | Kirsten | http://madisyn.com | +| | | | | | | | Murray | https://destinee.com | +| | | | | | | | Emanuel | https://keely.info | +| | | | | | | | Obie | https://caleigh.net | +| | | | | | | | Albin | http://flavie.com | +| | | | | | | | Lavonne | http://kaitlyn.com | +| | | | | | | | Osborne | https://joesph.name | +| | | | | | | | Michael | https://kali.com | +| Investor Usability Producer | 9.7.6 | Url | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | Jett | https://randal.biz | +| | | | | | | | Leif | http://chaz.name | +| | | | | | | | Tristian | http://susie.com | +| | | | | | | | Carmelo | https://kariane.com | +| | | | | | | | Sofia | http://daphnee.name | +| | | | | | | | Nedra | http://orland.info | +| | | | | | | | Hilton | http://shany.info | +| Corporate Tactics Analyst | 3.0.8 | Overwrite | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | Use the virtual RAM monitor, then you can override the virtual monitor! | | | Hildegard | http://conner.name | +| | | | | | | | 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 | +| | | | | | | | Irving | https://sydnie.org | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| Investor Creative Architect | 4.5.6 | Overwrite | | The PCI microchip is down, input the cross-platform microchip so we can input the PCI microchip! | If we quantify the transmitter, we can get to the XML transmitter through the optical XML transmitter! | | Selmer | https://jairo.info | +| | | | | | | | Juanita | http://holly.name | +| | | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | | Adalberto | https://sister.biz | +| | | | | | | | Gerald | https://vidal.com | +| | | | | | | | Lucio | http://clemmie.info | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Dynamic Program Associate | 5.9.7 | Expression | | | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Suzanne | http://ima.name | +| | | | | | | | Earnestine | http://nathanial.biz | +| | | | | | | | Connor | https://augustus.net | +| | | | | | | | Araceli | http://hailey.biz | +| | | | | | | | Janessa | https://craig.com | +| | | | | | | | Erica | http://kristin.org | +| | | | | | | | Alek | http://shany.biz | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | Edmund | http://sadie.info | +| | | | | | | | Horacio | https://loraine.name | +| | | | | | | | Sandra | https://emil.info | +| | | | | | | | Dayana | https://leila.info | +| | | | | | | | Micah | http://darien.com | +| | | | | | | | Ethel | http://shakira.net | +| Human Accounts Executive | 7.6.7 | Unknown | Use the auxiliary PNG interface, then you can generate the auxiliary interface! | | You can't connect the interface without backing up the optical SMTP interface! | http://kristin.net | Seamus | http://maybell.info | +| | | | | | | | Monserrat | http://katrine.name | +| | | | | | | | Abel | https://geovany.com | +| | | | | | | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| Dynamic Quality Officer | 8.9.2 | Ignored | | | | https://danika.org | Jadon | https://amelia.biz | +| | | | | | | | Toni | http://angie.name | +| | | | | | | | Ardella | http://melissa.net | +| | | | | | | | Sandra | http://pearline.org | +| | | | | | | | Noble | https://dusty.net | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a10dc3eb7111d074.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a10dc3eb7111d074.verified.txt new file mode 100644 index 00000000..1d9d4385 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a10dc3eb7111d074.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a1bfc47d2373b565.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a1bfc47d2373b565.verified.txt new file mode 100644 index 00000000..e65ed6e4 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a1bfc47d2373b565.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a26f77dcd1636905.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a26f77dcd1636905.verified.txt new file mode 100644 index 00000000..949fa777 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a26f77dcd1636905.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Paige | https://remington.info | +| | | | | Aletha | https://isobel.info | +| | | | | Pearline | https://johnathon.info | +| | | | | Eleanora | http://jaeden.info | +| | | | | Nikolas | https://daphney.net | +| | | | | Oceane | http://clifton.com | +| | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a28d069ca5796bfa.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a28d069ca5796bfa.verified.txt new file mode 100644 index 00000000..82964184 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a28d069ca5796bfa.verified.txt @@ -0,0 +1,40 @@ +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a2b17bf6beb96c97.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a2b17bf6beb96c97.verified.txt new file mode 100644 index 00000000..ba855e43 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a2b17bf6beb96c97.verified.txt @@ -0,0 +1,162 @@ +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | ---------- | ---------------------- | +| Legacy Response Analyst | 9.2.7 | Unknown | | Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata | http://martine.info | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Human Implementation Producer | 0.9.1 | Url | | | | | | +| Dynamic Integration Assistant | 2.1.6 | Unknown | | | https://gerson.info | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| 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 | | | +| Customer Program Consultant | 5.0.4 | Ignored | Try to compress the GB system, maybe it will compress the neural system! | Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan | http://kieran.biz | Bettie | http://edmund.info | +| | | | | | | Sadie | http://horacio.org | +| | | | | | | Loraine | https://sandra.org | +| | | | | | | Emil | http://dayana.net | +| Product Identity Analyst | 5.9.3 | Expression | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | | Rey | https://connie.info | +| | | | | | | Hollie | http://rico.name | +| | | | | | | Marshall | http://pierce.org | +| | | | | | | 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 | +| Regional Integration Consultant | 5.3.8 | Expression | | | http://michael.name | | | +| Forward Division Strategist | 5.7.1 | Expression | You can't reboot the program without transmitting the mobile SMTP program! | Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode | https://esperanza.name | | | +| Lead Creative Administrator | 9.0.0 | Overwrite | Use the virtual RAM monitor, then you can override the virtual monitor! | | https://roderick.net | Hildegard | http://conner.name | +| | | | | | | 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 | +| | | | | | | Irving | https://sydnie.org | +| Chief Data Director | 2.1.5 | Unknown | Use the haptic PCI bandwidth, then you can generate the haptic bandwidth! | | | Earnestine | http://nathanial.biz | +| | | | | | | Connor | https://augustus.net | +| | | | | | | Araceli | http://hailey.biz | +| | | | | | | Janessa | https://craig.com | +| | | | | | | Erica | http://kristin.org | +| | | | | | | Alek | http://shany.biz | +| | | | | | | Camren | http://joany.info | +| Future Optimization Associate | 4.0.5 | Unknown | | Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel | https://linnie.net | | | +| Future Mobility Strategist | 4.7.6 | Overwrite | Use the virtual ADP bandwidth, then you can calculate the virtual bandwidth! | | http://gerardo.net | Cathy | http://giovanna.info | +| | | | | | | Ike | https://jerome.biz | +| | | | | | | Emerald | https://camren.net | +| | | | | | | Sheila | https://garry.org | +| Corporate Accountability Designer | 0.8.0 | Overwrite | We need to hack the online FTP application! | | http://taya.info | Carlee | http://britney.name | +| | | | | | | Tess | http://julian.biz | +| | | | | | | Isadore | http://billy.net | +| | | | | | | Alice | http://vern.net | +| | | | | | | King | http://trace.net | +| | | | | | | Carmela | https://adolf.info | +| | | | | | | Sherman | http://alec.net | +| | | | | | | Lamar | http://deion.org | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Investor Interactions Designer | 1.9.4 | Overwrite | | | https://octavia.name | | | +| Global Integration Assistant | 5.0.1 | Unknown | | | http://demarco.com | | | +| Future Response Consultant | 9.3.1 | Unknown | | | https://ulices.biz | Ari | https://chad.com | +| | | | | | | Yvonne | http://jada.name | +| | | | | | | Noemie | https://kayley.name | +| | | | | | | Brandon | http://kristopher.name | +| | | | | | | Maggie | http://kimberly.info | +| | | | | | | Veronica | https://mya.net | +| | | | | | | Marty | https://obie.net | +| | | | | | | Braxton | http://flavio.net | +| | | | | | | Jeramie | http://jaycee.net | +| Product Marketing Developer | 3.3.6 | Unknown | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | Lewis | https://alisa.com | +| | | | | | | Delores | https://layne.name | +| | | | | | | Delphine | https://katlynn.org | +| | | | | | | Meredith | https://johanna.info | +| | | | | | | Jacklyn | https://kadin.com | +| | | | | | | Hardy | https://donna.info | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| Dynamic Applications Director | 5.1.4 | Unknown | | Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel | | | | +| Investor Identity Developer | 4.2.0 | Url | | Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| | | | | | | Keely | http://obie.org | +| | | | | | | Caleigh | https://albin.info | +| | | | | | | Flavie | http://lavonne.biz | +| | | | | | | Kaitlyn | http://osborne.org | +| Dynamic Group Associate | 6.6.1 | Unknown | We need to input the open-source SMTP bus! | | http://kian.name | Neil | https://burley.info | +| | | | | | | Lemuel | http://brenden.info | +| | | | | | | Agnes | https://urban.org | +| | | | | | | Micheal | https://ida.net | +| | | | | | | Murray | https://samanta.com | +| | | | | | | Assunta | http://florencio.com | +| Investor Creative Architect | 4.5.6 | Overwrite | | Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| | | | | | | Retta | https://lottie.biz | +| | | | | | | Yasmine | http://delia.com | +| | | | | | | Khalil | http://jewel.net | +| | | | | | | Roy | https://johanna.org | +| | | | | | | Price | https://itzel.info | +| | | | | | | Dalton | https://daren.info | +| | | | | | | Arnold | http://arlo.org | +| Future Group Assistant | 1.7.9 | Expression | Use the multi-byte AI port, then you can reboot the multi-byte port! | | | Darien | http://mitchel.biz | +| | | | | | | Carleton | https://madalyn.com | +| | | | | | | Narciso | https://mia.com | +| | | | | | | Nicklaus | https://abelardo.com | +| | | | | | | Carolina | https://lindsey.info | +| | | | | | | Rigoberto | https://lou.biz | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Dynamic Mobility Technician | 6.0.2 | Expression | | | https://keeley.net | | | +| Direct Tactics Technician | 2.8.6 | Unknown | Try to quantify the SAS port, maybe it will quantify the wireless port! | | | Demond | http://stefan.name | +| | | | | | | Norval | http://annie.net | +| | | | | | | Destin | http://penelope.name | +| Future Directives Planner | 5.9.7 | Ignored | Use the wireless ADP array, then you can input the wireless array! | Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki | | | | +| Customer Operations Liaison | 9.0.9 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| Principal Factors Producer | 0.8.5 | Unknown | connecting the system won't do anything, we need to override the back-end SQL system! | Devin Nolan | http://toby.info | | | +| Central Applications Coordinator | 1.6.8 | Ignored | | | http://curtis.com | | | +| District Mobility Administrator | 3.2.3 | Unknown | | Christopher Dietrich,Christopher Dietrich,Christopher Dietrich,Christopher Dietrich | | | | +| Global Infrastructure Developer | 5.5.0 | Url | generating the application won't do anything, we need to calculate the auxiliary JSON application! | Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger | https://austin.net | 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 | +| Internal Solutions Planner | 1.3.8 | Expression | | Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| | | | | | | Mallory | http://angeline.name | +| Future Tactics Producer | 5.8.9 | Url | navigating the pixel won't do anything, we need to parse the back-end IB pixel! | | | | | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a2c22f31fec5fa5e.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a2c22f31fec5fa5e.verified.txt new file mode 100644 index 00000000..0d97b135 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a2c22f31fec5fa5e.verified.txt @@ -0,0 +1,21 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a355d2aeca94b7f1.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a355d2aeca94b7f1.verified.txt new file mode 100644 index 00000000..d7d34c28 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a355d2aeca94b7f1.verified.txt @@ -0,0 +1,128 @@ +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error Context | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Product Data Liaison | 7.8.8 | Unknown | Try to calculate the GB card, maybe it will calculate the wireless card! | | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | | | Lewis | https://alisa.com | +| | | | | | | | | Delores | https://layne.name | +| | | | | | | | | Delphine | https://katlynn.org | +| | | | | | | | | Meredith | https://johanna.info | +| | | | | | | | | Jacklyn | https://kadin.com | +| | | | | | | | | Hardy | https://donna.info | +| International Research Architect | 3.7.4 | Ignored | | Try to quantify the USB application, maybe it will quantify the mobile application! | If we index the pixel, we can get to the AI pixel through the wireless AI pixel! | | | Madisen | http://raegan.biz | +| | | | | | | | | Cathy | http://giovanna.info | +| | | | | | | | | Ike | https://jerome.biz | +| Investor Division Assistant | 9.6.2 | Url | | I'll parse the primary PCI matrix, that should matrix the PCI matrix! | | | | Nya | http://sunny.biz | +| | | | | | | | | Arlo | https://cordia.info | +| | | | | | | | | Linnie | https://marcos.name | +| | | | | | | | | Luella | http://frederic.name | +| | | | | | | | | Lucinda | https://dion.name | +| | | | | | | | | Jayson | https://ryleigh.net | +| | | | | | | | | Mervin | https://lorenza.net | +| Dynamic Solutions Assistant | 5.6.4 | Ignored | navigating the alarm won't do anything, we need to copy the 1080p AGP alarm! | | | Craig Halvorson,Craig Halvorson,Craig Halvorson,Craig Halvorson | http://isabell.info | Tess | http://kailyn.info | +| | | | | | | | | Eileen | http://manley.name | +| | | | | | | | | Conor | https://glenna.name | +| | | | | | | | | Sylvester | http://gaylord.biz | +| | | | | | | | | Maxime | https://tom.com | +| National Accountability Producer | 6.9.7 | Unknown | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | https://linwood.biz | Travon | https://dedrick.name | +| | | | | | | | | Elissa | http://kaci.org | +| | | | | | | | | Brandi | https://aniyah.com | +| | | | | | | | | Tyson | https://bonita.org | +| | | | | | | | | Jazlyn | http://madonna.net | +| | | | | | | | | Deangelo | https://jess.info | +| | | | | | | | | Alvah | https://hans.net | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| Forward Tactics Agent | 6.8.8 | Url | | We need to back up the primary SMTP circuit! | The COM bandwidth is down, input the auxiliary bandwidth so we can input the COM bandwidth! | Jon Schulist,Jon Schulist | https://flo.info | Diana | http://eula.name | +| | | | | | | | | Raphael | https://zackery.info | +| | | | | | | | | Nettie | https://brayan.com | +| Global Mobility Technician | 8.6.3 | Unknown | | We need to input the haptic XML port! | | Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante | | Lonie | http://wilburn.org | +| | | | | | | | | Concepcion | http://ed.org | +| | | | | | | | | Amanda | https://sophie.net | +| | | | | | | | | Claudine | http://ofelia.biz | +| | | | | | | | | Petra | http://clare.name | +| | | | | | | | | Ozella | https://verla.name | +| | | | | | | | | Denis | http://pete.com | +| International Intranet Planner | 1.3.4 | Expression | 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 | Ahmad | https://lupe.com | +| | | | | | | | | Randi | https://jaiden.biz | +| | | | | | | | | Patience | https://marlene.name | +| | | | | | | | | Lenna | https://franco.name | +| | | | | | | | | Kyleigh | https://tevin.name | +| | | | | | | | | Sallie | https://jordane.name | +| | | | | | | | | Willy | https://daija.info | +| | | | | | | | | Jannie | https://retta.net | +| | | | | | | | | Lottie | http://yasmine.com | +| | | | | | | | | Delia | http://khalil.com | +| Investor Operations Director | 5.6.0 | Expression | Try to input the AI microchip, maybe it will input the 1080p microchip! | | If we synthesize the sensor, we can get to the AI sensor through the redundant AI sensor! | | https://alene.info | Elouise | https://ron.com | +| | | | | | | | | Brown | https://cordia.com | +| | | | | | | | | Ericka | https://eugene.com | +| | | | | | | | | Rashad | http://thomas.com | +| | | | | | | | | Antonia | https://marcelle.org | +| Product Interactions Planner | 7.4.0 | Expression | Try to navigate the PCI matrix, maybe it will navigate the haptic matrix! | | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | http://bertha.net | Rey | https://connie.info | +| | | | | | | | | Hollie | http://rico.name | +| | | | | | | | | Marshall | http://pierce.org | +| | | | | | | | | 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 | +| Principal Assurance Representative | 3.8.2 | Ignored | | | | Patsy Erdman,Patsy Erdman,Patsy Erdman,Patsy Erdman | | Jadon | https://amelia.biz | +| | | | | | | | | Toni | http://angie.name | +| | | | | | | | | Ardella | http://melissa.net | +| | | | | | | | | Sandra | http://pearline.org | +| | | | | | | | | Noble | https://dusty.net | +| Corporate Marketing Strategist | 3.8.5 | Ignored | | | Use the redundant JSON application, then you can program the redundant application! | Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch | | Naomi | http://mckenna.net | +| | | | | | | | | Jalyn | https://katharina.name | +| | | | | | | | | Kane | http://beulah.biz | +| | | | | | | | | Eleanora | http://birdie.net | +| | | | | | | | | Alvah | http://keanu.net | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Dynamic Group Associate | 6.6.1 | Ignored | We need to input the open-source SMTP bus! | | | | http://kian.name | Burley | http://lemuel.com | +| | | | | | | | | Brenden | http://agnes.net | +| | | | | | | | | Urban | https://micheal.name | +| | | | | | | | | Ida | https://murray.org | +| | | | | | | | | Samanta | http://assunta.biz | +| | | | | | | | | Florencio | http://bradford.info | +| | | | | | | | | Marcella | http://ray.net | +| | | | | | | | | Gunnar | https://elissa.net | +| | | | | | | | | Maud | https://edgar.name | +| | | | | | | | | Angelina | https://adonis.biz | +| Chief Solutions Administrator | 0.4.1 | Unknown | | 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 | Shaun | https://antwan.org | +| | | | | | | | | Hazel | https://forrest.net | +| | | | | | | | | Brianne | https://dorothea.name | +| | | | | | | | | Don | http://torey.com | +| | | | | | | | | Cedrick | https://zachariah.net | +| | | | | | | | | Marcelle | https://adah.org | +| | | | | | | | | Barney | http://erica.org | +| | | | | | | | | Jordi | https://alysha.com | +| | | | | | | | | Kristina | https://pattie.info | +| | | | | | | | | Cory | http://kailey.com | +| Global Mobility Facilitator | 8.5.9 | Url | | We need to parse the primary PCI protocol! | | Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch | https://itzel.info | Mitchel | http://carleton.name | +| | | | | | | | | Madalyn | http://narciso.net | +| | | | | | | | | Mia | http://nicklaus.net | +| | | | | | | | | Abelardo | http://carolina.name | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | Julius Abbott | http://celestine.info | Ettie | http://lonny.net | +| | | | | | | | | Onie | https://cassie.biz | +| | | | | | | | | Solon | https://buck.biz | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a3a38ea56ae69ff4.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a3a38ea56ae69ff4.verified.txt new file mode 100644 index 00000000..bfb1b6c9 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a3a38ea56ae69ff4.verified.txt @@ -0,0 +1,124 @@ +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Global Paradigm Assistant | 8.0.5 | Expression | We need to calculate the solid state HTTP hard drive! | | | https://randy.org | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Marketing Coordinator | 3.6.1 | Overwrite | | | | https://marcos.org | | | +| Investor Research Coordinator | 1.9.7 | Ignored | Use the cross-platform GB bus, then you can calculate the cross-platform bus! | | | https://maegan.name | | | +| National Assurance Planner | 2.7.7 | Unknown | | I'll reboot the online AGP alarm, that should alarm the AGP alarm! | Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag | | | | +| District Interactions Supervisor | 4.5.2 | Url | The XSS capacitor is down, generate the bluetooth capacitor so we can generate the XSS capacitor! | The ADP firewall is down, input the primary firewall so we can input the ADP firewall! | | | | | +| Future Tactics Assistant | 1.5.5 | Expression | The IB sensor is down, reboot the virtual sensor so we can reboot the IB sensor! | If we calculate the matrix, we can get to the SMS matrix through the bluetooth SMS matrix! | | https://giovanny.net | | | +| Future Configuration Officer | 7.6.0 | Unknown | You can't compress the alarm without parsing the optical JBOD alarm! | I'll compress the back-end SSL system, that should system the SSL system! | Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie | | | | +| Future Research Planner | 8.8.9 | Ignored | | | | https://yvette.com | | | +| Forward Usability Specialist | 5.6.9 | Overwrite | I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth! | | | | | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | | | +| Direct Brand Director | 4.7.4 | Url | You can't navigate the capacitor without programming the solid state SQL capacitor! | | | | | | +| Senior Configuration Developer | 4.0.9 | Url | Use the primary SCSI matrix, then you can program the primary matrix! | If we parse the interface, we can get to the JSON interface through the mobile JSON interface! | Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle | | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | | | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| Customer Solutions Officer | 4.5.2 | Expression | You can't copy the matrix without compressing the wireless AGP matrix! | | | https://rylan.name | | | +| Customer Division Manager | 1.3.9 | Ignored | 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! | Rafael Altenwerth,Rafael Altenwerth,Rafael Altenwerth | | | | +| Dynamic Implementation Engineer | 6.7.1 | Overwrite | We need to transmit the open-source EXE interface! | | | http://margie.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 | | | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | | | +| Product Directives Engineer | 8.2.3 | Unknown | transmitting the bus won't do anything, we need to navigate the online IB bus! | | Maggie Lindgren | | | | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | | | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | | | +| Human Accounts Orchestrator | 4.1.6 | Url | | | | | | | +| Direct Division Officer | 6.5.6 | Url | transmitting the protocol won't do anything, we need to generate the multi-byte THX protocol! | | Glenda Schuppe,Glenda Schuppe | http://catherine.name | | | +| Future Identity Agent | 8.8.0 | Ignored | I'll parse the 1080p USB protocol, that should protocol the USB protocol! | | | https://reva.name | | | +| Investor Quality Associate | 0.5.1 | Expression | | Try to reboot the SSL alarm, maybe it will reboot the solid state alarm! | Carrie Hansen,Carrie Hansen,Carrie Hansen,Carrie Hansen | https://ezequiel.biz | | | +| Global Identity Supervisor | 0.9.1 | Overwrite | | | | | | | +| Dynamic Branding Manager | 1.4.0 | Overwrite | You can't navigate the application without generating the cross-platform COM application! | Try to program the FTP alarm, maybe it will program the virtual alarm! | | http://dario.info | | | +| Central Tactics Developer | 0.4.7 | Ignored | indexing the capacitor won't do anything, we need to program the haptic EXE capacitor! | The JBOD application is down, generate the solid state application so we can generate the JBOD application! | Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley | https://royal.name | | | +| Dynamic Data Technician | 4.2.3 | Url | I'll copy the optical RAM feed, that should feed the RAM feed! | | June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds | http://nia.info | | | +| Product Solutions Manager | 9.5.2 | Overwrite | I'll hack the primary SDD card, that should card the SDD card! | hacking the transmitter won't do anything, we need to index the open-source CSS transmitter! | Sergio Bailey,Sergio Bailey,Sergio Bailey | | | | +| Corporate Intranet Specialist | 3.5.6 | Expression | | | Edmund Lehner,Edmund Lehner,Edmund Lehner,Edmund Lehner | | | | +| Chief Program Associate | 2.6.7 | Unknown | We need to compress the optical PNG array! | | Wilbert Kunze,Wilbert Kunze,Wilbert Kunze,Wilbert Kunze | http://coy.info | | | +| Customer Assurance Officer | 0.3.1 | Ignored | I'll navigate the digital CSS sensor, that should sensor the CSS sensor! | | | https://clementine.info | | | +| Principal Operations Assistant | 0.9.0 | Url | I'll copy the auxiliary HDD bus, that should bus the HDD bus! | I'll copy the digital USB circuit, that should circuit the USB circuit! | | | | | +| International Brand Strategist | 3.9.3 | Url | | | Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy | https://rowena.info | | | +| Customer Mobility Assistant | 4.2.9 | 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 | http://adonis.biz | | | +| Principal Brand Executive | 7.2.7 | Unknown | | | | https://dariana.com | | | +| District Assurance Technician | 8.5.5 | Overwrite | | | | http://zander.com | | | +| Future Tactics Specialist | 0.2.2 | Ignored | We need to override the primary SQL pixel! | We need to transmit the redundant EXE driver! | Alejandro Cruickshank,Alejandro Cruickshank,Alejandro Cruickshank,Alejandro Cruickshank | | | | +| Human Paradigm Assistant | 8.8.8 | Expression | | | Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich | | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Customer Metrics Developer | 2.2.9 | Ignored | | | Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir | | | | +| Dynamic Factors Associate | 1.8.3 | Unknown | | You can't navigate the panel without calculating the open-source THX panel! | | http://dovie.name | | | +| Product Functionality Supervisor | 9.4.5 | Overwrite | Use the 1080p AI microchip, then you can reboot the 1080p microchip! | Use the open-source ADP matrix, then you can copy the open-source matrix! | | | | | +| Forward Data Orchestrator | 3.3.5 | Expression | Use the haptic XML driver, then you can index the haptic driver! | compressing the system won't do anything, we need to compress the optical RSS system! | | | | | +| Corporate Intranet Analyst | 0.9.0 | Ignored | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp | http://hanna.net | | | +| Senior Paradigm Analyst | 1.1.1 | Ignored | | If we navigate the alarm, we can get to the XML alarm through the cross-platform XML alarm! | | | | | +| Chief Factors Developer | 5.9.5 | Url | | Try to connect the ADP system, maybe it will connect the solid state system! | Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady | | | | +| Dynamic Division Representative | 7.3.5 | Unknown | | I'll index the haptic FTP alarm, that should alarm the FTP alarm! | Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson | http://taurean.net | | | +| Lead Operations Supervisor | 4.5.2 | Expression | The AI panel is down, transmit the open-source panel so we can transmit the AI panel! | | | | | | +| Customer Communications Engineer | 6.9.4 | Overwrite | | | Tanya Reinger,Tanya Reinger,Tanya Reinger | http://tito.name | | | +| Human Program Analyst | 3.1.8 | Expression | If we back up the application, we can get to the USB application through the cross-platform USB application! | | | http://efrain.org | | | +| International Division Architect | 8.2.4 | Ignored | | | Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins | http://murphy.name | | | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | | | +| Investor Accounts Facilitator | 7.7.8 | Expression | | | Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman | http://scottie.biz | | | +| Customer Branding Orchestrator | 8.3.7 | Overwrite | | We need to bypass the neural USB capacitor! | Nora Dietrich | http://nona.com | | | +| Dynamic Solutions Agent | 0.0.5 | Overwrite | Use the haptic USB card, then you can navigate the haptic card! | | | | | | +| Global Optimization Engineer | 8.7.9 | Expression | | quantifying the transmitter won't do anything, we need to synthesize the auxiliary FTP transmitter! | | http://aniya.org | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| Lead Infrastructure Specialist | 7.2.6 | Ignored | | | Laura Abshire,Laura Abshire,Laura Abshire,Laura Abshire,Laura Abshire | https://wanda.com | | | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | | | +| Global Implementation Strategist | 5.9.8 | Ignored | | | Colleen Schroeder,Colleen Schroeder | https://enos.info | | | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | | | +| Legacy Security Facilitator | 1.9.0 | Expression | | Use the cross-platform ADP alarm, then you can back up the cross-platform alarm! | | https://edythe.info | | | +| Regional Metrics Strategist | 1.2.1 | Unknown | | Try to override the GB driver, maybe it will override the digital driver! | | | | | +| Customer Program Developer | 2.9.8 | Expression | | You can't transmit the pixel without calculating the bluetooth FTP pixel! | | http://lenora.com | | | +| District Optimization Technician | 5.2.3 | Overwrite | | | Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti | https://douglas.info | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | | | +| Human Branding Coordinator | 5.8.1 | Ignored | | | | | | | +| International Optimization Coordinator | 6.5.5 | Ignored | | | Darnell Terry | http://antoinette.org | | | +| Internal Program Designer | 7.2.5 | Ignored | We need to hack the auxiliary COM hard drive! | | | | | | +| Dynamic Security Director | 0.0.2 | Url | transmitting the feed won't do anything, we need to navigate the redundant SDD feed! | Try to parse the HTTP port, maybe it will parse the bluetooth port! | Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block | | | | +| 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 Division Administrator | 1.0.4 | Overwrite | We need to program the optical COM microchip! | We need to hack the haptic SAS microchip! | | | | | +| Investor Tactics Director | 0.4.3 | Expression | | | | https://aylin.com | | | +| Human Identity Representative | 4.1.5 | Overwrite | The SAS bus is down, program the neural bus so we can program the SAS bus! | | Joyce Auer,Joyce Auer,Joyce Auer | http://alyce.biz | | | +| Central Research Technician | 2.8.8 | Url | | You can't generate the program without connecting the bluetooth USB program! | | | | | +| Regional Functionality Agent | 5.9.9 | Overwrite | We need to index the 1080p SAS hard drive! | I'll connect the digital JBOD application, that should application the JBOD application! | Gloria Williamson,Gloria Williamson,Gloria Williamson,Gloria Williamson | http://arthur.net | | | +| International Branding Producer | 3.8.2 | Expression | We need to generate the solid state AGP microchip! | | | | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| Customer Web Assistant | 1.9.0 | Unknown | | | | | | | +| Human Markets Planner | 5.0.1 | Expression | Try to back up the COM driver, maybe it will back up the bluetooth driver! | | | | | | +| Regional Directives Liaison | 4.7.8 | Expression | If we connect the interface, we can get to the SCSI interface through the auxiliary SCSI interface! | | Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic | https://glennie.biz | | | +| International Solutions Planner | 9.0.0 | Url | Use the multi-byte SMTP program, then you can synthesize the multi-byte program! | | | | | | +| Legacy Interactions Supervisor | 9.7.2 | Ignored | | Try to generate the SAS matrix, maybe it will generate the cross-platform matrix! | Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn | | | | +| Lead Solutions Technician | 1.5.7 | Unknown | | | | | | | +| Lead Program Technician | 5.8.9 | Expression | | We need to transmit the back-end AGP sensor! | Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer | http://curtis.org | | | +| Regional Identity Engineer | 1.9.4 | Ignored | | The HTTP microchip is down, copy the digital microchip so we can copy the HTTP microchip! | Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston | | | | +| Regional Optimization Administrator | 3.6.4 | Expression | | I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive! | | http://serenity.info | | | +| International Tactics Administrator | 9.9.9 | Url | | | | | | | +| Human Tactics Facilitator | 5.7.0 | Url | Try to bypass the HTTP application, maybe it will bypass the digital application! | | | | | | +| Chief Infrastructure Specialist | 9.0.5 | Overwrite | hacking the port won't do anything, we need to back up the optical SMS port! | | Jackie Schumm | | | | +| Principal Factors Representative | 4.5.7 | Ignored | Try to input the RAM interface, maybe it will input the bluetooth interface! | The GB card is down, hack the digital card so we can hack the GB card! | Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker | https://imelda.org | | | +| Dynamic Security Specialist | 7.8.5 | Overwrite | Try to input the GB pixel, maybe it will input the wireless pixel! | You can't transmit the bus without indexing the digital TCP bus! | Guy Waters,Guy Waters | http://nova.biz | | | +| Principal Intranet Architect | 4.9.3 | Unknown | | | | | | | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Central Implementation Planner | 7.6.0 | Ignored | | Try to generate the HDD panel, maybe it will generate the solid state panel! | | | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | | | +| Forward Factors Architect | 6.7.6 | Ignored | | The THX transmitter is down, program the neural transmitter so we can program the THX transmitter! | Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts | | | | +| Global Optimization Architect | 1.5.0 | Unknown | Try to navigate the SCSI sensor, maybe it will navigate the mobile sensor! | | | | | | +| Principal Security Producer | 7.3.3 | Ignored | You can't generate the interface without quantifying the mobile FTP interface! | Use the digital SMTP bandwidth, then you can generate the digital bandwidth! | | http://jarrell.biz | | | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a3e24e1588632e69.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a3e24e1588632e69.verified.txt new file mode 100644 index 00000000..7b91053d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a3e24e1588632e69.verified.txt @@ -0,0 +1,33 @@ +| -------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Legacy Interactions Supervisor | 9.7.2 | Ignored | | Try to generate the SAS matrix, maybe it will generate the cross-platform matrix! | Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn | | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Optimization Coordinator | 6.5.5 | Ignored | | | Darnell Terry | http://antoinette.org | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | | | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | | | +| Global Implementation Strategist | 5.9.8 | Ignored | | | Colleen Schroeder,Colleen Schroeder | https://enos.info | | | +| Internal Program Designer | 7.2.5 | Ignored | We need to hack the auxiliary COM hard drive! | | | | | | +| Customer Assurance Officer | 0.3.1 | Ignored | I'll navigate the digital CSS sensor, that should sensor the CSS sensor! | | | https://clementine.info | | | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | | | +| Customer Division Manager | 1.3.9 | Ignored | 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! | Rafael Altenwerth,Rafael Altenwerth,Rafael Altenwerth | | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Tactics Administrator | 9.9.9 | Url | | | | | | | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | | | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | | | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | | | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| -------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a408883e5f8139cc.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a408883e5f8139cc.verified.txt new file mode 100644 index 00000000..a5777697 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a408883e5f8139cc.verified.txt @@ -0,0 +1,12 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Paige | https://remington.info | +| | | | | Aletha | https://isobel.info | +| | | | | Pearline | https://johnathon.info | +| | | | | Eleanora | http://jaeden.info | +| | | | | Nikolas | https://daphney.net | +| | | | | Oceane | http://clifton.com | +| | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a45fbf41c7fc7086.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a45fbf41c7fc7086.verified.txt new file mode 100644 index 00000000..949fa777 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a45fbf41c7fc7086.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Paige | https://remington.info | +| | | | | Aletha | https://isobel.info | +| | | | | Pearline | https://johnathon.info | +| | | | | Eleanora | http://jaeden.info | +| | | | | Nikolas | https://daphney.net | +| | | | | Oceane | http://clifton.com | +| | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a46406ce5ead2d8c.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a46406ce5ead2d8c.verified.txt new file mode 100644 index 00000000..3ad9b0b2 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a46406ce5ead2d8c.verified.txt @@ -0,0 +1,22 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a469cfa7e2f56c60.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a469cfa7e2f56c60.verified.txt new file mode 100644 index 00000000..ffb8a79e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a469cfa7e2f56c60.verified.txt @@ -0,0 +1,29 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Product Infrastructure Supervisor | 8.1.1 | Ignored | | | | https://merle.com | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Regional Solutions Supervisor | 1.8.2 | Ignored | You can't parse the system without compressing the haptic GB system! | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | https://lance.net | | | +| Senior Identity Designer | 9.9.3 | Ignored | | | You can't navigate the bandwidth without compressing the open-source AI bandwidth! | https://devyn.info | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Legacy Metrics Planner | 9.5.0 | Ignored | 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! | | | | +| Central Infrastructure Agent | 6.1.6 | Expression | | | You can't quantify the program without overriding the online SDD program! | | | | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a46d4e55c281f126.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a46d4e55c281f126.verified.txt new file mode 100644 index 00000000..cac62e52 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a46d4e55c281f126.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | --------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | --------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a5dc90ebde5226a7.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a5dc90ebde5226a7.verified.txt new file mode 100644 index 00000000..ad252933 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a5dc90ebde5226a7.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a64e2d92d49ffbc2.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a64e2d92d49ffbc2.verified.txt new file mode 100644 index 00000000..d9337313 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a64e2d92d49ffbc2.verified.txt @@ -0,0 +1,129 @@ +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| District Metrics Associate | 8.1.6 | Overwrite | | | http://jaylin.org | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Direct Markets Executive | 9.7.7 | Ignored | We need to navigate the open-source PCI pixel! | | https://judge.name | | | +| Human Security Administrator | 9.8.5 | Overwrite | I'll synthesize the redundant XML feed, that should feed the XML feed! | Mario Stamm,Mario Stamm,Mario Stamm,Mario Stamm,Mario Stamm,Mario Stamm | | | | +| Dynamic Metrics Coordinator | 5.8.1 | Unknown | overriding the circuit won't do anything, we need to copy the mobile AGP circuit! | Helen Fisher,Helen Fisher,Helen Fisher,Helen Fisher,Helen Fisher | | | | +| Regional Paradigm Director | 3.0.9 | Unknown | The COM pixel is down, quantify the virtual pixel so we can quantify the COM pixel! | | | | | +| Forward Program Officer | 4.2.4 | Unknown | quantifying the capacitor won't do anything, we need to override the open-source AI capacitor! | Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin | | | | +| Product Solutions Manager | 9.5.2 | Overwrite | I'll hack the primary SDD card, that should card the SDD card! | Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach | | | | +| Dynamic Creative Supervisor | 4.1.3 | Ignored | | | | | | +| Forward Accounts Consultant | 8.9.0 | Expression | | | | | | +| Dynamic Applications Director | 5.1.4 | Unknown | | Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel | | | | +| Dynamic Group Representative | 9.8.1 | Unknown | | | | | | +| Global Paradigm Producer | 1.8.4 | Overwrite | If we quantify the protocol, we can get to the IB protocol through the auxiliary IB protocol! | | https://london.biz | | | +| Forward Division Strategist | 5.7.1 | Expression | You can't reboot the program without transmitting the mobile SMTP program! | Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode | https://esperanza.name | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Regional Factors Analyst | 1.5.7 | Overwrite | | | | | | +| Future Tactics Producer | 5.8.9 | Url | navigating the pixel won't do anything, we need to parse the back-end IB pixel! | | | | | +| Principal Group Strategist | 4.1.0 | Url | I'll bypass the primary GB bandwidth, that should bandwidth the GB bandwidth! | | | | | +| Future Configuration Architect | 4.2.6 | Expression | I'll generate the primary TCP bus, that should bus the TCP bus! | Victoria Padberg,Victoria Padberg,Victoria Padberg,Victoria Padberg,Victoria Padberg,Victoria Padberg | | | | +| Global Integration Assistant | 5.0.1 | Unknown | | | http://demarco.com | | | +| Central Identity Analyst | 8.9.6 | Expression | | | http://leta.org | | | +| Investor Interactions Designer | 1.9.4 | Overwrite | | | https://octavia.name | | | +| Future Directives Planner | 5.9.7 | Ignored | Use the wireless ADP array, then you can input the wireless array! | Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki | | | | +| Senior Factors Technician | 3.2.5 | Overwrite | You can't input the protocol without copying the auxiliary USB protocol! | Lee Zieme,Lee Zieme,Lee Zieme,Lee Zieme,Lee Zieme | | | | +| Senior Response Developer | 8.5.8 | Ignored | We need to input the open-source SAS feed! | Jackie Abbott,Jackie Abbott,Jackie Abbott,Jackie Abbott,Jackie Abbott,Jackie Abbott,Jackie Abbott,Jackie Abbott | | | | +| Regional Mobility Designer | 8.5.4 | Url | | | http://brady.net | | | +| Legacy Communications Manager | 0.1.8 | Unknown | | | http://gus.info | | | +| Product Intranet Assistant | 2.8.1 | Ignored | The THX circuit is down, copy the back-end circuit so we can copy the THX circuit! | | http://lynn.info | | | +| National Security Liaison | 2.4.1 | Ignored | | | http://pierce.info | | | +| Global Directives Orchestrator | 8.7.6 | Expression | | Tommy Franecki,Tommy Franecki | | | | +| Senior Response Officer | 2.8.2 | Expression | | Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann | | | | +| Dynamic Accounts Architect | 9.8.0 | Overwrite | | | | | | +| District Brand Producer | 9.3.8 | Overwrite | Use the redundant AGP application, then you can generate the redundant application! | Clarence Metz,Clarence Metz,Clarence Metz | | | | +| Forward Factors Architect | 6.7.6 | Overwrite | | Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt | | | | +| Future Optimization Associate | 4.0.5 | Unknown | | Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel | https://linnie.net | | | +| Corporate Quality Planner | 6.6.3 | Url | 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 | | | | +| Senior Identity Specialist | 2.8.9 | Ignored | We need to program the primary THX protocol! | Barbara Osinski,Barbara Osinski,Barbara Osinski,Barbara Osinski,Barbara Osinski,Barbara Osinski,Barbara Osinski,Barbara Osinski,Barbara Osinski | https://kennedy.biz | | | +| National Quality Executive | 4.5.1 | Expression | Use the solid state TCP driver, then you can generate the solid state driver! | | http://rylan.com | | | +| District Intranet Agent | 1.1.6 | Url | You can't calculate the application without synthesizing the primary JBOD application! | | | | | +| Direct Security Producer | 9.0.7 | Url | | | http://evert.net | | | +| Legacy Assurance Representative | 6.4.9 | Unknown | | Diane Gutkowski,Diane Gutkowski,Diane Gutkowski,Diane Gutkowski,Diane Gutkowski | https://maye.info | | | +| Forward Intranet Technician | 2.5.3 | Expression | | Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton | https://ruby.biz | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Central Applications Planner | 6.6.9 | Overwrite | | Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke | http://ava.org | | | +| Global Communications Administrator | 3.0.6 | Ignored | | | | | | +| Senior Applications Technician | 7.8.2 | Overwrite | | Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert | | | | +| Senior Group Designer | 3.0.6 | Url | The AGP pixel is down, hack the neural pixel so we can hack the AGP pixel! | | | | | +| Global Group Planner | 5.4.5 | Ignored | | | | | | +| Future Directives Associate | 1.1.1 | Expression | | Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe | https://shayne.name | | | +| Regional Security Agent | 6.2.7 | Overwrite | | | https://kenyon.org | | | +| Forward Web Designer | 0.1.4 | Overwrite | | | https://gerard.net | | | +| Direct Accountability Producer | 1.8.1 | Url | | | http://justine.net | | | +| Chief Operations Orchestrator | 9.1.5 | Ignored | Try to back up the USB application, maybe it will back up the bluetooth application! | | https://madelynn.name | | | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | http://hanna.net | | | +| Investor Communications Associate | 0.7.2 | Expression | | Arnold Franecki,Arnold Franecki | http://modesto.info | | | +| Principal Factors Producer | 0.8.5 | Unknown | connecting the system won't do anything, we need to override the back-end SQL system! | Devin Nolan | http://toby.info | | | +| Human Web Liaison | 8.1.1 | Unknown | | | https://imogene.org | | | +| Future Applications Facilitator | 0.1.5 | Expression | transmitting the program won't do anything, we need to bypass the virtual HTTP program! | | | | | +| Corporate Implementation Officer | 0.2.6 | Ignored | | | | | | +| Dynamic Integration Assistant | 2.7.5 | Overwrite | I'll back up the 1080p RSS matrix, that should matrix the RSS matrix! | | | | | +| Customer Operations Liaison | 9.0.9 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | | | | +| Human Marketing Representative | 0.6.1 | Ignored | | Salvador Berge,Salvador Berge,Salvador Berge,Salvador Berge,Salvador Berge,Salvador Berge,Salvador Berge | | | | +| Legacy Response Analyst | 9.2.7 | Unknown | | Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata | http://martine.info | | | +| Dynamic Integration Assistant | 2.1.6 | Unknown | | | https://gerson.info | | | +| Human Implementation Producer | 0.9.1 | Url | | | | | | +| Future Applications Engineer | 6.8.5 | Unknown | 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 | | | +| Principal Intranet Architect | 4.9.3 | Expression | | | | | | +| Internal Division Agent | 2.4.2 | Url | | Gary Von,Gary Von,Gary Von | | | | +| Lead Implementation Supervisor | 4.9.9 | Overwrite | The ADP card is down, hack the solid state card so we can hack the ADP card! | Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis | http://katlynn.net | | | +| Central Applications Coordinator | 1.6.8 | Ignored | | | http://curtis.com | | | +| Legacy Data Consultant | 5.8.8 | Unknown | Try to connect the JSON pixel, maybe it will connect the primary 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 | | | +| District Mobility Administrator | 3.2.3 | Unknown | | Christopher Dietrich,Christopher Dietrich,Christopher Dietrich,Christopher Dietrich | | | | +| Future Interactions Developer | 1.1.7 | Unknown | If we reboot the matrix, we can get to the CSS matrix through the cross-platform CSS matrix! | | | | | +| Global Mobility Associate | 0.6.4 | Expression | We need to hack the haptic XSS program! | | https://brooke.org | | | +| Global Data Administrator | 0.8.4 | Unknown | | Frederick Leffler,Frederick Leffler,Frederick Leffler | https://barrett.com | | | +| Product Metrics Representative | 2.7.9 | Expression | connecting the feed won't do anything, we need to transmit the primary IB feed! | Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson | http://denis.info | | | +| Regional Directives Liaison | 4.7.8 | Ignored | If we connect the interface, we can get to the SCSI interface through the auxiliary SCSI interface! | | https://glennie.biz | | | +| Corporate Interactions Administrator | 1.1.5 | Ignored | | | http://clemmie.info | | | +| Lead Solutions Technician | 1.5.7 | Unknown | | | | | | +| Investor Configuration Technician | 1.9.1 | Url | We need to copy the primary FTP bus! | Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin | http://malvina.name | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Senior Brand Analyst | 2.5.0 | Ignored | | Darlene Dickens,Darlene Dickens,Darlene Dickens,Darlene Dickens,Darlene Dickens,Darlene Dickens,Darlene Dickens,Darlene Dickens | | | | +| Dynamic Brand Agent | 2.9.2 | Expression | quantifying the application won't do anything, we need to hack the haptic RAM application! | Bertha Schultz,Bertha Schultz | https://reese.info | | | +| Dynamic Division Specialist | 9.6.4 | Expression | | | https://keenan.net | | | +| Dynamic Research Designer | 5.6.8 | Unknown | If we connect the program, we can get to the SQL program through the digital SQL program! | | | | | +| Dynamic Mobility Technician | 6.0.2 | Expression | | | https://keeley.net | | | +| Corporate Mobility Consultant | 1.9.0 | Expression | | | http://letha.name | | | +| Customer Group Director | 2.5.2 | Expression | You can't index the pixel without copying the redundant XML pixel! | Vera Krajcik,Vera Krajcik,Vera Krajcik,Vera Krajcik | https://eloise.name | | | +| Investor Assurance Technician | 7.3.8 | Overwrite | | Merle Hirthe | | | | +| Forward Integration Specialist | 8.7.1 | Expression | | | http://jordon.net | | | +| Regional Integration Consultant | 5.3.8 | Expression | | | http://michael.name | | | +| Future Web Associate | 5.1.3 | Ignored | | | http://favian.biz | | | +| Internal Web Associate | 6.2.5 | Expression | | | https://arvel.name | | | +| District Factors Associate | 0.2.6 | Expression | | Betsy Powlowski | https://cloyd.biz | | | +| District Identity Administrator | 2.9.6 | Unknown | | Isabel Schmitt,Isabel Schmitt,Isabel Schmitt,Isabel Schmitt | http://duncan.name | | | +| Dynamic Group Agent | 1.7.6 | Ignored | | Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins | | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Central Mobility Executive | 5.0.3 | Unknown | | Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling | | | | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| Lead Directives Administrator | 5.1.9 | Ignored | Use the haptic GB matrix, then you can generate the haptic matrix! | | | | | +| Lead Identity Developer | 7.1.0 | Unknown | | Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover | https://eve.com | | | +| Global Markets Designer | 1.7.0 | Overwrite | Use the multi-byte COM feed, then you can parse the multi-byte feed! | | https://toby.biz | | | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a6522c4f5793f54e.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a6522c4f5793f54e.verified.txt new file mode 100644 index 00000000..2088a557 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a6522c4f5793f54e.verified.txt @@ -0,0 +1,92 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | -------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | -------------------- | --------- | ---------------------- | +| Direct Accountability Assistant | 2.2.8 | Url | bypassing the protocol won't do anything, we need to compress the primary HTTP protocol! | | http://natasha.info | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Forward Configuration Supervisor | 9.0.8 | Overwrite | You can't program the protocol without overriding the primary IB protocol! | | http://quinn.name | | | +| Lead Usability Assistant | 1.3.4 | Overwrite | quantifying the matrix won't do anything, we need to synthesize the wireless PCI matrix! | Use the solid state SQL firewall, then you can connect the solid state firewall! | https://duane.info | | | +| Dynamic Accountability Analyst | 4.9.7 | Overwrite | | | https://jaron.info | | | +| National Intranet Technician | 8.0.0 | Overwrite | | | | | | +| Central Tactics Engineer | 6.3.5 | Unknown | connecting the bandwidth won't do anything, we need to bypass the multi-byte AI bandwidth! | | | | | +| National Communications Orchestrator | 4.5.1 | Unknown | The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit! | | | | | +| Central Identity Analyst | 8.9.6 | Expression | | | http://leta.org | | | +| Dynamic Division Consultant | 4.8.7 | Overwrite | Use the multi-byte IB microchip, then you can connect the multi-byte microchip! | backing up the feed won't do anything, we need to compress the haptic SMTP feed! | http://raquel.net | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | | | +| Regional Operations Coordinator | 0.2.5 | Unknown | | I'll hack the cross-platform SSL array, that should array the SSL array! | http://ena.com | | | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| Human Operations Assistant | 0.7.2 | Overwrite | Use the haptic USB driver, then you can override the haptic driver! | | http://camila.net | | | +| Global Division Designer | 8.2.7 | Expression | Try to program the EXE hard drive, maybe it will program the virtual hard drive! | | https://pamela.name | | | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | | | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | | | +| Principal Accounts Coordinator | 1.0.4 | Overwrite | | I'll connect the digital JSON bus, that should bus the JSON bus! | http://rene.com | | | +| Human Directives Specialist | 4.3.4 | Unknown | Use the digital XSS hard drive, then you can compress the digital hard drive! | You can't generate the card without synthesizing the bluetooth PNG card! | | | | +| Human Optimization Producer | 5.0.9 | Overwrite | | | | | | +| Direct Mobility Designer | 7.7.3 | Expression | | | http://geovanny.info | | | +| Direct Data Orchestrator | 2.4.5 | Expression | | Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor! | | | | +| Chief Applications Facilitator | 7.7.6 | Overwrite | | parsing the card won't do anything, we need to synthesize the online SQL card! | | | | +| Corporate Marketing Assistant | 8.7.9 | Url | | You can't program the firewall without connecting the wireless AI firewall! | http://arlene.biz | | | +| Senior Security Consultant | 2.7.5 | Unknown | | | http://adelbert.biz | | | +| Human Program Technician | 2.8.4 | Unknown | | | http://tomasa.info | | | +| Senior Brand Analyst | 2.5.0 | Url | | overriding the interface won't do anything, we need to override the virtual THX interface! | | | | +| Dynamic Quality Analyst | 0.9.5 | Overwrite | We need to index the optical HTTP application! | I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor! | | | | +| Global Program Representative | 5.1.0 | Url | | If we back up the monitor, we can get to the PCI monitor through the virtual PCI monitor! | | | | +| National Applications Designer | 6.4.9 | Expression | | Use the back-end SMS feed, then you can program the back-end feed! | | | | +| Investor Implementation Technician | 2.7.9 | Unknown | | | http://crystal.name | | | +| National Solutions Associate | 9.1.2 | Overwrite | | | | | | +| Legacy Directives Supervisor | 9.6.2 | Url | The PNG circuit is down, back up the online circuit so we can back up the PNG circuit! | | | | | +| Dynamic Factors Facilitator | 6.5.2 | Expression | | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | http://magnolia.com | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| International Functionality Agent | 8.7.6 | Unknown | | If we hack the card, we can get to the JBOD card through the optical JBOD card! | http://jalyn.org | | | +| District Operations Director | 0.6.3 | Url | | We need to program the cross-platform FTP hard drive! | https://dejah.net | | | +| Chief Division Producer | 2.3.9 | Overwrite | | | | | | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | http://hanna.net | | | +| Customer Functionality Consultant | 5.5.1 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | http://terence.com | | | +| Legacy Directives Officer | 2.4.4 | Url | | The PCI program is down, hack the multi-byte program so we can hack the PCI program! | http://sedrick.biz | | | +| Internal Directives Designer | 0.4.8 | Url | The EXE protocol is down, reboot the redundant protocol so we can reboot the EXE protocol! | | | | | +| Corporate Tactics Director | 2.5.7 | Url | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | http://marcos.info | | | +| International Quality Director | 0.3.8 | Expression | | | | | | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | | | +| Human Directives Engineer | 5.3.9 | Url | | | | | | +| Human Group Designer | 9.9.1 | Expression | Use the haptic XSS application, then you can synthesize the haptic application! | If we transmit the hard drive, we can get to the AGP hard drive through the bluetooth AGP hard drive! | http://jodie.org | | | +| Investor Creative Architect | 8.2.4 | Unknown | | | | | | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | | | +| Forward Intranet Engineer | 2.5.9 | Expression | The RSS sensor is down, input the 1080p sensor so we can input the RSS sensor! | Try to index the ADP port, maybe it will index the auxiliary port! | | | | +| Forward Functionality Developer | 5.1.1 | Url | | | | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Global Mobility Facilitator | 9.5.8 | Expression | | | | | | +| Lead Branding Developer | 4.1.5 | Url | | | http://abe.com | | | +| Forward Marketing Orchestrator | 1.6.4 | Overwrite | I'll connect the primary SQL sensor, that should sensor the SQL sensor! | The SMTP driver is down, bypass the mobile driver so we can bypass the SMTP driver! | https://lukas.com | | | +| National Research Facilitator | 6.0.6 | Expression | Use the primary EXE array, then you can navigate the primary array! | | | | | +| International Intranet Planner | 6.4.6 | Url | The IB interface is down, program the redundant interface so we can program the IB interface! | | https://lenna.com | | | +| Central Web Assistant | 4.2.1 | Unknown | | Use the wireless ADP array, then you can input the wireless array! | https://verda.net | | | +| Dynamic Integration Architect | 1.6.3 | Overwrite | | The RAM feed is down, copy the neural feed so we can copy the RAM feed! | | | | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | | | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | | | +| Future Accounts Architect | 9.1.8 | Url | You can't bypass the firewall without indexing the multi-byte COM firewall! | | https://fermin.biz | | | +| Chief Intranet Facilitator | 6.6.1 | Expression | | | https://rosalind.net | | | +| Direct Assurance Strategist | 1.3.7 | Expression | The RSS firewall is down, hack the neural firewall so we can hack the RSS firewall! | | | | | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| Corporate Directives Planner | 8.8.5 | Unknown | The CSS bus is down, generate the 1080p bus so we can generate the CSS bus! | We need to back up the 1080p SMTP feed! | | | | +| Product Creative Facilitator | 8.4.6 | Unknown | 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://juliana.net | | | +| 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 | | | +| Dynamic Accountability Strategist | 7.0.9 | Unknown | You can't bypass the sensor without transmitting the neural JSON sensor! | | | | | +| Human Quality Facilitator | 1.2.0 | Expression | We need to copy the online THX firewall! | You can't calculate the application without calculating the auxiliary AI application! | | | | +| Human Optimization Facilitator | 7.4.8 | Overwrite | 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! | https://cooper.name | | | +| Senior Optimization Assistant | 3.6.0 | Overwrite | | overriding the pixel won't do anything, we need to copy the optical JSON pixel! | http://akeem.info | | | +| Regional Factors Designer | 7.4.1 | Overwrite | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | | | | +| Investor Interactions Liaison | 4.4.9 | Overwrite | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | | | | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | | | +| Senior Factors Administrator | 1.6.1 | Expression | I'll calculate the solid state ADP panel, that should panel the ADP panel! | If we generate the circuit, we can get to the XSS circuit through the primary XSS circuit! | | | | +| Principal Markets Designer | 3.8.8 | Overwrite | overriding the transmitter won't do anything, we need to generate the cross-platform SCSI transmitter! | | | | | +| Product Assurance Technician | 0.8.2 | Overwrite | | | https://steve.info | | | +| National Creative Coordinator | 5.9.5 | Expression | | | https://bobbie.info | | | +| Chief Factors Supervisor | 5.2.2 | Expression | | | http://helga.com | | | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | -------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a6e6d90d4e6bb213.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a6e6d90d4e6bb213.verified.txt new file mode 100644 index 00000000..21e971f5 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a6e6d90d4e6bb213.verified.txt @@ -0,0 +1,16 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | --------------------- | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | Clare | https://bobby.info | +| | | | | | | Cecil | https://kira.net | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a72882605aea19a4.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a72882605aea19a4.verified.txt new file mode 100644 index 00000000..87927a0a --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a72882605aea19a4.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | --------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | --------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | --------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a73127f0906cf730.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a73127f0906cf730.verified.txt new file mode 100644 index 00000000..2e74e3ac --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a73127f0906cf730.verified.txt @@ -0,0 +1,39 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a926b8d5849b15c1.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a926b8d5849b15c1.verified.txt new file mode 100644 index 00000000..0eabed30 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a926b8d5849b15c1.verified.txt @@ -0,0 +1,46 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a96857ad910db45e.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a96857ad910db45e.verified.txt new file mode 100644 index 00000000..3901b920 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_a96857ad910db45e.verified.txt @@ -0,0 +1,92 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | -------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | -------------------- | --------- | ---------------------- | +| Direct Accountability Assistant | 2.2.8 | Url | bypassing the protocol won't do anything, we need to compress the primary HTTP protocol! | | http://natasha.info | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Forward Configuration Supervisor | 9.0.8 | Overwrite | You can't program the protocol without overriding the primary IB protocol! | | http://quinn.name | | | +| Lead Usability Assistant | 1.3.4 | Overwrite | quantifying the matrix won't do anything, we need to synthesize the wireless PCI matrix! | Use the solid state SQL firewall, then you can connect the solid state firewall! | https://duane.info | | | +| Dynamic Accountability Analyst | 4.9.7 | Overwrite | | | https://jaron.info | | | +| National Intranet Technician | 8.0.0 | Overwrite | | | | | | +| Central Tactics Engineer | 6.3.5 | Unknown | connecting the bandwidth won't do anything, we need to bypass the multi-byte AI bandwidth! | | | | | +| National Communications Orchestrator | 4.5.1 | Unknown | The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit! | | | | | +| Central Identity Analyst | 8.9.6 | Expression | | | http://leta.org | | | +| Dynamic Division Consultant | 4.8.7 | Overwrite | Use the multi-byte IB microchip, then you can connect the multi-byte microchip! | backing up the feed won't do anything, we need to compress the haptic SMTP feed! | http://raquel.net | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | | | +| Regional Operations Coordinator | 0.2.5 | Unknown | | I'll hack the cross-platform SSL array, that should array the SSL array! | http://ena.com | | | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| Human Operations Assistant | 0.7.2 | Overwrite | Use the haptic USB driver, then you can override the haptic driver! | | http://camila.net | | | +| Global Division Designer | 8.2.7 | Expression | Try to program the EXE hard drive, maybe it will program the virtual hard drive! | | https://pamela.name | | | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | | | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | | | +| Principal Accounts Coordinator | 1.0.4 | Overwrite | | I'll connect the digital JSON bus, that should bus the JSON bus! | http://rene.com | | | +| Human Directives Specialist | 4.3.4 | Unknown | Use the digital XSS hard drive, then you can compress the digital hard drive! | You can't generate the card without synthesizing the bluetooth PNG card! | | | | +| Human Optimization Producer | 5.0.9 | Overwrite | | | | | | +| Direct Mobility Designer | 7.7.3 | Expression | | | http://geovanny.info | | | +| Direct Data Orchestrator | 2.4.5 | Expression | | Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor! | | | | +| Chief Applications Facilitator | 7.7.6 | Overwrite | | parsing the card won't do anything, we need to synthesize the online SQL card! | | | | +| Corporate Marketing Assistant | 8.7.9 | Url | | You can't program the firewall without connecting the wireless AI firewall! | http://arlene.biz | | | +| Senior Security Consultant | 2.7.5 | Unknown | | | http://adelbert.biz | | | +| Human Program Technician | 2.8.4 | Unknown | | | http://tomasa.info | | | +| Senior Brand Analyst | 2.5.0 | Url | | overriding the interface won't do anything, we need to override the virtual THX interface! | | | | +| Dynamic Quality Analyst | 0.9.5 | Overwrite | We need to index the optical HTTP application! | I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor! | | | | +| Global Program Representative | 5.1.0 | Url | | If we back up the monitor, we can get to the PCI monitor through the virtual PCI monitor! | | | | +| National Applications Designer | 6.4.9 | Expression | | Use the back-end SMS feed, then you can program the back-end feed! | | | | +| Investor Implementation Technician | 2.7.9 | Unknown | | | http://crystal.name | | | +| National Solutions Associate | 9.1.2 | Overwrite | | | | | | +| Legacy Directives Supervisor | 9.6.2 | Url | The PNG circuit is down, back up the online circuit so we can back up the PNG circuit! | | | | | +| Dynamic Factors Facilitator | 6.5.2 | Expression | | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | http://magnolia.com | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| International Functionality Agent | 8.7.6 | Unknown | | If we hack the card, we can get to the JBOD card through the optical JBOD card! | http://jalyn.org | | | +| District Operations Director | 0.6.3 | Url | | We need to program the cross-platform FTP hard drive! | https://dejah.net | | | +| Chief Division Producer | 2.3.9 | Overwrite | | | | | | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | http://hanna.net | | | +| Customer Functionality Consultant | 5.5.1 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | http://terence.com | | | +| Legacy Directives Officer | 2.4.4 | Url | | The PCI program is down, hack the multi-byte program so we can hack the PCI program! | http://sedrick.biz | | | +| Internal Directives Designer | 0.4.8 | Url | The EXE protocol is down, reboot the redundant protocol so we can reboot the EXE protocol! | | | | | +| Corporate Tactics Director | 2.5.7 | Url | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | http://marcos.info | | | +| International Quality Director | 0.3.8 | Expression | | | | | | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | | | +| Human Directives Engineer | 5.3.9 | Url | | | | | | +| Human Group Designer | 9.9.1 | Expression | Use the haptic XSS application, then you can synthesize the haptic application! | If we transmit the hard drive, we can get to the AGP hard drive through the bluetooth AGP hard drive! | http://jodie.org | | | +| Investor Creative Architect | 8.2.4 | Unknown | | | | | | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | | | +| Forward Intranet Engineer | 2.5.9 | Expression | The RSS sensor is down, input the 1080p sensor so we can input the RSS sensor! | Try to index the ADP port, maybe it will index the auxiliary port! | | | | +| Forward Functionality Developer | 5.1.1 | Url | | | | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Global Mobility Facilitator | 9.5.8 | Expression | | | | | | +| Lead Branding Developer | 4.1.5 | Url | | | http://abe.com | | | +| Forward Marketing Orchestrator | 1.6.4 | Overwrite | I'll connect the primary SQL sensor, that should sensor the SQL sensor! | The SMTP driver is down, bypass the mobile driver so we can bypass the SMTP driver! | https://lukas.com | | | +| National Research Facilitator | 6.0.6 | Expression | Use the primary EXE array, then you can navigate the primary array! | | | | | +| International Intranet Planner | 6.4.6 | Url | The IB interface is down, program the redundant interface so we can program the IB interface! | | https://lenna.com | | | +| Central Web Assistant | 4.2.1 | Unknown | | Use the wireless ADP array, then you can input the wireless array! | https://verda.net | | | +| Dynamic Integration Architect | 1.6.3 | Overwrite | | The RAM feed is down, copy the neural feed so we can copy the RAM feed! | | | | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | | | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | | | +| Future Accounts Architect | 9.1.8 | Url | You can't bypass the firewall without indexing the multi-byte COM firewall! | | https://fermin.biz | | | +| Chief Intranet Facilitator | 6.6.1 | Expression | | | https://rosalind.net | | | +| Direct Assurance Strategist | 1.3.7 | Expression | The RSS firewall is down, hack the neural firewall so we can hack the RSS firewall! | | | | | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| Corporate Directives Planner | 8.8.5 | Unknown | The CSS bus is down, generate the 1080p bus so we can generate the CSS bus! | We need to back up the 1080p SMTP feed! | | | | +| Product Creative Facilitator | 8.4.6 | Unknown | 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://juliana.net | | | +| 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 | | | +| Dynamic Accountability Strategist | 7.0.9 | Unknown | You can't bypass the sensor without transmitting the neural JSON sensor! | | | | | +| Human Quality Facilitator | 1.2.0 | Expression | We need to copy the online THX firewall! | You can't calculate the application without calculating the auxiliary AI application! | | | | +| Human Optimization Facilitator | 7.4.8 | Overwrite | 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! | https://cooper.name | | | +| Senior Optimization Assistant | 3.6.0 | Overwrite | | overriding the pixel won't do anything, we need to copy the optical JSON pixel! | http://akeem.info | | | +| Regional Factors Designer | 7.4.1 | Overwrite | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | | | | +| Investor Interactions Liaison | 4.4.9 | Overwrite | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | | | | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | | | +| Senior Factors Administrator | 1.6.1 | Expression | I'll calculate the solid state ADP panel, that should panel the ADP panel! | If we generate the circuit, we can get to the XSS circuit through the primary XSS circuit! | | | | +| Principal Markets Designer | 3.8.8 | Overwrite | overriding the transmitter won't do anything, we need to generate the cross-platform SCSI transmitter! | | | | | +| Product Assurance Technician | 0.8.2 | Overwrite | | | https://steve.info | | | +| National Creative Coordinator | 5.9.5 | Expression | | | https://bobbie.info | | | +| Chief Factors Supervisor | 5.2.2 | Expression | | | http://helga.com | | | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | -------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_aa55e1226ff50b04.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_aa55e1226ff50b04.verified.txt new file mode 100644 index 00000000..bae075fe --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_aa55e1226ff50b04.verified.txt @@ -0,0 +1,32 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_aa604c24262e3a2c.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_aa604c24262e3a2c.verified.txt new file mode 100644 index 00000000..ad6b2052 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_aa604c24262e3a2c.verified.txt @@ -0,0 +1,52 @@ +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Senior Optimization Assistant | 3.6.0 | Ignored | | overriding the pixel won't do anything, we need to copy the optical JSON pixel! | Try to compress the SMS bus, maybe it will compress the bluetooth bus! | http://akeem.info | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Group Planner | 9.2.2 | Ignored | | | We need to reboot the virtual RSS alarm! | | | | +| Forward Integration Assistant | 4.8.5 | Expression | | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| District Branding Analyst | 1.9.5 | Unknown | | | | https://paula.net | | | +| 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 | Ignored | 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 Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Central Marketing Assistant | 9.5.8 | Overwrite | I'll navigate the redundant RAM capacitor, that should capacitor the RAM capacitor! | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | http://julia.biz | | | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Forward Factors Director | 5.7.8 | Expression | | | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | | | +| Product Infrastructure Supervisor | 8.1.1 | Ignored | | | | https://merle.com | | | +| Customer Assurance Officer | 0.3.1 | Ignored | I'll navigate the digital CSS sensor, that should sensor the CSS sensor! | | | https://clementine.info | | | +| Principal Branding Assistant | 8.2.6 | Expression | 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! | We need to hack the auxiliary COM hard drive! | | | | +| Forward Creative Developer | 9.6.7 | Unknown | | I'll transmit the online SSL feed, that should feed the SSL feed! | We need to synthesize the cross-platform SMS circuit! | http://pearline.com | | | +| Legacy Interactions Analyst | 3.0.8 | Url | hacking the hard drive won't do anything, we need to generate the open-source RSS hard drive! | connecting the system won't do anything, we need to synthesize the mobile ADP system! | | | | | +| Legacy Research Associate | 9.9.5 | Url | | We need to navigate the bluetooth RAM bus! | | https://hildegard.name | | | +| Corporate Tactics Strategist | 9.9.9 | Ignored | | copying the alarm won't do anything, we need to index the open-source TCP alarm! | generating the matrix won't do anything, we need to parse the solid state GB matrix! | | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| Central Infrastructure Agent | 6.1.6 | Expression | | | You can't quantify the program without overriding the online SDD program! | | | | +| District Optimization Manager | 4.0.4 | Ignored | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | Try to program the CSS circuit, maybe it will program the auxiliary circuit! | | | | +| National Directives Analyst | 8.2.7 | Overwrite | We need to compress the primary GB array! | | Use the mobile SCSI bus, then you can program the mobile bus! | | | | +| Senior Identity Designer | 9.9.3 | Ignored | | | You can't navigate the bandwidth without compressing the open-source AI bandwidth! | https://devyn.info | | | +| Regional Solutions Supervisor | 1.8.2 | Ignored | You can't parse the system without compressing the haptic GB system! | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | https://lance.net | | | +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_aa932cef4a31a50f.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_aa932cef4a31a50f.verified.txt new file mode 100644 index 00000000..e6f32afb --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_aa932cef4a31a50f.verified.txt @@ -0,0 +1,22 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ab0f3e64cd1bc06c.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ab0f3e64cd1bc06c.verified.txt new file mode 100644 index 00000000..ffdfcbe5 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ab0f3e64cd1bc06c.verified.txt @@ -0,0 +1,27 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ------- | -------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ------- | -------------------- | +| National Security Orchestrator | 3.5.6 | Expression | Try to copy the HDD array, maybe it will copy the back-end array! | 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! | Roderick Koelpin,Roderick Koelpin,Roderick Koelpin | | | | +| 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Global Markets Administrator | 8.6.8 | Expression | 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! | The SSL application is down, reboot the bluetooth application so we can reboot the SSL application! | Julius Bernhard,Julius Bernhard,Julius Bernhard,Julius Bernhard | https://lois.biz | | | +| Future Accounts Designer | 5.1.9 | Expression | We need to navigate the wireless SAS pixel! | | | | | | | +| Human Accountability Developer | 6.9.0 | Unknown | If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit! | | | | | | | +| Regional Factors Designer | 7.4.1 | Url | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | Use the haptic RSS port, then you can transmit the haptic port! | Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus | | | | +| District Creative Designer | 1.4.6 | Url | We need to program the haptic IB panel! | | | | http://cameron.info | | | +| Corporate Intranet Associate | 7.5.1 | Overwrite | | 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! | | | | | +| Customer Metrics Analyst | 6.7.1 | Unknown | | | | | | | | +| Global Usability Manager | 9.1.0 | Overwrite | | Try to back up the THX interface, maybe it will back up the auxiliary interface! | | | http://vella.com | | | +| Central Tactics Director | 4.6.7 | Url | backing up the system won't do anything, we need to parse the neural CSS system! | We need to transmit the back-end RSS transmitter! | | Doyle Osinski,Doyle Osinski,Doyle Osinski,Doyle Osinski | https://valentina.net | | | +| Investor Interactions Designer | 1.9.4 | Url | | | parsing the card won't do anything, we need to synthesize the online SQL card! | Stella Barton,Stella Barton | https://octavia.name | | | +| Chief Functionality Planner | 5.1.2 | Unknown | | I'll calculate the 1080p HDD system, that should system the HDD system! | | Matt Mills,Matt Mills | http://myrtice.com | | | +| Global Configuration Consultant | 5.9.5 | Expression | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | bypassing the bus won't do anything, we need to calculate the virtual GB bus! | | Guadalupe Littel,Guadalupe Littel,Guadalupe Littel | | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | | | +| Dynamic Configuration Assistant | 3.2.1 | Expression | | 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 | | | | +| Dynamic Factors Producer | 5.7.1 | Url | | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | | | | | +| Internal Factors Facilitator | 2.6.3 | Url | | Try to copy the PNG sensor, maybe it will copy the 1080p sensor! | | Mable Kris,Mable Kris,Mable Kris,Mable Kris,Mable Kris | http://melba.name | | | +| Customer Interactions Representative | 0.8.8 | Url | We need to quantify the digital SSL array! | | | | http://heather.name | | | +| Lead Configuration Liaison | 1.8.9 | Expression | | connecting the transmitter won't do anything, we need to program the cross-platform XSS transmitter! | | | http://esther.biz | | | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ------- | -------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ab7ef1d940301941.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ab7ef1d940301941.verified.txt new file mode 100644 index 00000000..cede0bf7 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ab7ef1d940301941.verified.txt @@ -0,0 +1,23 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_abb6c30e2dcddfc7.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_abb6c30e2dcddfc7.verified.txt new file mode 100644 index 00000000..5abdbc88 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_abb6c30e2dcddfc7.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_abe3cc076f5d61c3.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_abe3cc076f5d61c3.verified.txt new file mode 100644 index 00000000..cfb1be6a --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_abe3cc076f5d61c3.verified.txt @@ -0,0 +1,16 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Dynamic Integration Assistant | 2.1.6 | Unknown | | | https://gerson.info | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| District Mobility Administrator | 3.2.3 | Unknown | | Christopher Dietrich,Christopher Dietrich,Christopher Dietrich,Christopher Dietrich | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ac6c110d0d105fb2.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ac6c110d0d105fb2.verified.txt new file mode 100644 index 00000000..bae075fe --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ac6c110d0d105fb2.verified.txt @@ -0,0 +1,32 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ad6e0d1c163421b0.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ad6e0d1c163421b0.verified.txt new file mode 100644 index 00000000..949fa777 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ad6e0d1c163421b0.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Paige | https://remington.info | +| | | | | Aletha | https://isobel.info | +| | | | | Pearline | https://johnathon.info | +| | | | | Eleanora | http://jaeden.info | +| | | | | Nikolas | https://daphney.net | +| | | | | Oceane | http://clifton.com | +| | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ad751736a0206dfa.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ad751736a0206dfa.verified.txt new file mode 100644 index 00000000..b2c66a0f --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ad751736a0206dfa.verified.txt @@ -0,0 +1,40 @@ +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ae33a75604de98ed.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ae33a75604de98ed.verified.txt new file mode 100644 index 00000000..8487e8e6 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ae33a75604de98ed.verified.txt @@ -0,0 +1,31 @@ +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| Principal Assurance Representative | 3.8.2 | Ignored | | | | Patsy Erdman,Patsy Erdman,Patsy Erdman,Patsy Erdman | | Jadon | https://amelia.biz | +| | | | | | | | | Toni | http://angie.name | +| | | | | | | | | Ardella | http://melissa.net | +| | | | | | | | | Sandra | http://pearline.org | +| | | | | | | | | Noble | https://dusty.net | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ae860cbbe977fb00.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ae860cbbe977fb00.verified.txt new file mode 100644 index 00000000..949fa777 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ae860cbbe977fb00.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Paige | https://remington.info | +| | | | | Aletha | https://isobel.info | +| | | | | Pearline | https://johnathon.info | +| | | | | Eleanora | http://jaeden.info | +| | | | | Nikolas | https://daphney.net | +| | | | | Oceane | http://clifton.com | +| | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ae880a43d86fb4d3.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ae880a43d86fb4d3.verified.txt new file mode 100644 index 00000000..b9ec2dc3 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ae880a43d86fb4d3.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ae95ae6f1ff4dacb.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ae95ae6f1ff4dacb.verified.txt new file mode 100644 index 00000000..65d6847e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ae95ae6f1ff4dacb.verified.txt @@ -0,0 +1,32 @@ +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error Context | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Principal Assurance Representative | 3.8.2 | Ignored | | | | Patsy Erdman,Patsy Erdman,Patsy Erdman,Patsy Erdman | | Jadon | https://amelia.biz | +| | | | | | | | | Toni | http://angie.name | +| | | | | | | | | Ardella | http://melissa.net | +| | | | | | | | | Sandra | http://pearline.org | +| | | | | | | | | Noble | https://dusty.net | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_af7cb40805127391.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_af7cb40805127391.verified.txt new file mode 100644 index 00000000..2ba28352 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_af7cb40805127391.verified.txt @@ -0,0 +1,110 @@ +| ----------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | --------- | --------------------- | +| Global Paradigm Assistant | 8.0.5 | Expression | We need to calculate the solid state HTTP hard drive! | | | https://randy.org | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Marketing Coordinator | 3.6.1 | Overwrite | | | | https://marcos.org | | | +| Dynamic Implementation Engineer | 6.7.1 | Overwrite | We need to transmit the open-source EXE interface! | | | http://margie.info | | | +| District Interactions Supervisor | 4.5.2 | Url | The XSS capacitor is down, generate the bluetooth capacitor so we can generate the XSS capacitor! | The ADP firewall is down, input the primary firewall so we can input the ADP firewall! | | | | | +| Central Research Technician | 2.8.8 | Url | | You can't generate the program without connecting the bluetooth USB program! | | | | | +| Principal Operations Assistant | 0.9.0 | Url | I'll copy the auxiliary HDD bus, that should bus the HDD bus! | I'll copy the digital USB circuit, that should circuit the USB circuit! | | | | | +| Human Identity Representative | 4.1.5 | Overwrite | The SAS bus is down, program the neural bus so we can program the SAS bus! | | Joyce Auer,Joyce Auer,Joyce Auer | http://alyce.biz | | | +| Forward Usability Specialist | 5.6.9 | Overwrite | I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth! | | | | | | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | | | +| National Assurance Planner | 2.7.7 | Unknown | | I'll reboot the online AGP alarm, that should alarm the AGP alarm! | Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag | | | | +| International Tactics Administrator | 9.9.9 | Url | | | | | | | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Customer Solutions Officer | 4.5.2 | Expression | You can't copy the matrix without compressing the wireless AGP matrix! | | | https://rylan.name | | | +| Direct Brand Director | 4.7.4 | Url | You can't navigate the capacitor without programming the solid state SQL capacitor! | | | | | | +| Global Optimization Architect | 1.5.0 | Unknown | Try to navigate the SCSI sensor, maybe it will navigate the mobile sensor! | | | | | | +| Human Tactics Facilitator | 5.7.0 | Url | Try to bypass the HTTP application, maybe it will bypass the digital application! | | | | | | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | | | +| Human Program Analyst | 3.1.8 | Expression | If we back up the application, we can get to the USB application through the cross-platform USB application! | | | http://efrain.org | | | +| Dynamic Security Specialist | 7.8.5 | Overwrite | Try to input the GB pixel, maybe it will input the wireless pixel! | You can't transmit the bus without indexing the digital TCP bus! | Guy Waters,Guy Waters | http://nova.biz | | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | | | +| Product Directives Engineer | 8.2.3 | Unknown | transmitting the bus won't do anything, we need to navigate the online IB bus! | | Maggie Lindgren | | | | +| Chief Factors Developer | 5.9.5 | Url | | Try to connect the ADP system, maybe it will connect the solid state system! | Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady | | | | +| Investor Quality Associate | 0.5.1 | Expression | | Try to reboot the SSL alarm, maybe it will reboot the solid state alarm! | Carrie Hansen,Carrie Hansen,Carrie Hansen,Carrie Hansen | https://ezequiel.biz | | | +| Human Paradigm Assistant | 8.8.8 | Expression | | | Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich | | | | +| Dynamic Branding Manager | 1.4.0 | Overwrite | You can't navigate the application without generating the cross-platform COM application! | Try to program the FTP alarm, maybe it will program the virtual alarm! | | http://dario.info | | | +| Regional Optimization Administrator | 3.6.4 | Expression | | I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive! | | http://serenity.info | | | +| Customer Web Assistant | 1.9.0 | Unknown | | | | | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Dynamic Data Technician | 4.2.3 | Url | I'll copy the optical RAM feed, that should feed the RAM feed! | | June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds | http://nia.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 | | | +| District Optimization Technician | 5.2.3 | Overwrite | | | Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti | https://douglas.info | | | +| Dynamic Factors Associate | 1.8.3 | Unknown | | You can't navigate the panel without calculating the open-source THX panel! | | http://dovie.name | | | +| Forward Data Orchestrator | 3.3.5 | Expression | Use the haptic XML driver, then you can index the haptic driver! | compressing the system won't do anything, we need to compress the optical RSS system! | | | | | +| Lead Operations Supervisor | 4.5.2 | Expression | The AI panel is down, transmit the open-source panel so we can transmit the AI panel! | | | | | | +| International Brand Strategist | 3.9.3 | Url | | | Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy | https://rowena.info | | | +| Corporate Intranet Specialist | 3.5.6 | Expression | | | Edmund Lehner,Edmund Lehner,Edmund Lehner,Edmund Lehner | | | | +| Global Identity Supervisor | 0.9.1 | Overwrite | | | | | | | +| Chief Infrastructure Specialist | 9.0.5 | Overwrite | hacking the port won't do anything, we need to back up the optical SMS port! | | Jackie Schumm | | | | +| Central Division Administrator | 1.0.4 | Overwrite | We need to program the optical COM microchip! | We need to hack the haptic SAS microchip! | | | | | +| International Branding Producer | 3.8.2 | Expression | We need to generate the solid state AGP microchip! | | | | | | +| Principal Intranet Architect | 4.9.3 | Unknown | | | | | | | +| Customer Program Developer | 2.9.8 | Expression | | You can't transmit the pixel without calculating the bluetooth FTP pixel! | | http://lenora.com | | | +| Dynamic Security Director | 0.0.2 | Url | transmitting the feed won't do anything, we need to navigate the redundant SDD feed! | Try to parse the HTTP port, maybe it will parse the bluetooth port! | Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block | | | | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | | | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | | | +| Dynamic Solutions Agent | 0.0.5 | Overwrite | Use the haptic USB card, then you can navigate the haptic card! | | | | | | +| International Solutions Planner | 9.0.0 | Url | Use the multi-byte SMTP program, then you can synthesize the multi-byte program! | | | | | | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | | | +| Customer Branding Orchestrator | 8.3.7 | Overwrite | | We need to bypass the neural USB capacitor! | Nora Dietrich | http://nona.com | | | +| Investor Accounts Facilitator | 7.7.8 | Expression | | | Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman | http://scottie.biz | | | +| Legacy Security Facilitator | 1.9.0 | Expression | | Use the cross-platform ADP alarm, then you can back up the cross-platform alarm! | | https://edythe.info | | | +| Regional Directives Liaison | 4.7.8 | Expression | If we connect the interface, we can get to the SCSI interface through the auxiliary SCSI interface! | | Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic | https://glennie.biz | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| Product Functionality Supervisor | 9.4.5 | Overwrite | Use the 1080p AI microchip, then you can reboot the 1080p microchip! | Use the open-source ADP matrix, then you can copy the open-source matrix! | | | | | +| 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 | | | | +| Future Configuration Officer | 7.6.0 | Unknown | You can't compress the alarm without parsing the optical JBOD alarm! | I'll compress the back-end SSL system, that should system the SSL system! | Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie | | | | +| Lead Program Technician | 5.8.9 | Expression | | We need to transmit the back-end AGP sensor! | Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer | http://curtis.org | | | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | | | +| Chief Program Associate | 2.6.7 | Unknown | We need to compress the optical PNG array! | | Wilbert Kunze,Wilbert Kunze,Wilbert Kunze,Wilbert Kunze | http://coy.info | | | +| Regional Metrics Strategist | 1.2.1 | Unknown | | Try to override the GB driver, maybe it will override the digital driver! | | | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | | | +| District Assurance Technician | 8.5.5 | Overwrite | | | | http://zander.com | | | +| Customer Communications Engineer | 6.9.4 | Overwrite | | | Tanya Reinger,Tanya Reinger,Tanya Reinger | http://tito.name | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Investor Tactics Director | 0.4.3 | Expression | | | | https://aylin.com | | | +| Future Tactics Assistant | 1.5.5 | Expression | The IB sensor is down, reboot the virtual sensor so we can reboot the IB sensor! | If we calculate the matrix, we can get to the SMS matrix through the bluetooth SMS matrix! | | https://giovanny.net | | | +| Global Optimization Engineer | 8.7.9 | Expression | | quantifying the transmitter won't do anything, we need to synthesize the auxiliary FTP transmitter! | | http://aniya.org | | | +| Principal Brand Executive | 7.2.7 | Unknown | | | | https://dariana.com | | | +| Human Accounts Orchestrator | 4.1.6 | Url | | | | | | | +| Direct Division Officer | 6.5.6 | Url | transmitting the protocol won't do anything, we need to generate the multi-byte THX protocol! | | Glenda Schuppe,Glenda Schuppe | http://catherine.name | | | +| Regional Functionality Agent | 5.9.9 | Overwrite | We need to index the 1080p SAS hard drive! | I'll connect the digital JBOD application, that should application the JBOD application! | Gloria Williamson,Gloria Williamson,Gloria Williamson,Gloria Williamson | http://arthur.net | | | +| Senior Configuration Developer | 4.0.9 | Url | Use the primary SCSI matrix, then you can program the primary matrix! | If we parse the interface, we can get to the JSON interface through the mobile JSON interface! | Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle | | | | +| Human Markets Planner | 5.0.1 | Expression | Try to back up the COM driver, maybe it will back up the bluetooth driver! | | | | | | +| Lead Solutions Technician | 1.5.7 | Unknown | | | | | | | +| Product Solutions Manager | 9.5.2 | Overwrite | I'll hack the primary SDD card, that should card the SDD card! | hacking the transmitter won't do anything, we need to index the open-source CSS transmitter! | Sergio Bailey,Sergio Bailey,Sergio Bailey | | | | +| Dynamic Division Representative | 7.3.5 | Unknown | | I'll index the haptic FTP alarm, that should alarm the FTP alarm! | Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson | http://taurean.net | | | +| Customer Mobility Assistant | 4.2.9 | 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 | http://adonis.biz | | | +| ----------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b0309d9d6b9f2563.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b0309d9d6b9f2563.verified.txt new file mode 100644 index 00000000..11d1d083 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b0309d9d6b9f2563.verified.txt @@ -0,0 +1,94 @@ +| ----------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | --------- | --------------------- | +| Global Paradigm Assistant | 8.0.5 | Expression | We need to calculate the solid state HTTP hard drive! | | | https://randy.org | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Marketing Coordinator | 3.6.1 | Overwrite | | | | https://marcos.org | | | +| National Assurance Planner | 2.7.7 | Unknown | | I'll reboot the online AGP alarm, that should alarm the AGP alarm! | Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag | | | | +| District Interactions Supervisor | 4.5.2 | Url | The XSS capacitor is down, generate the bluetooth capacitor so we can generate the XSS capacitor! | The ADP firewall is down, input the primary firewall so we can input the ADP firewall! | | | | | +| Future Tactics Assistant | 1.5.5 | Expression | The IB sensor is down, reboot the virtual sensor so we can reboot the IB sensor! | If we calculate the matrix, we can get to the SMS matrix through the bluetooth SMS matrix! | | https://giovanny.net | | | +| Future Configuration Officer | 7.6.0 | Unknown | You can't compress the alarm without parsing the optical JBOD alarm! | I'll compress the back-end SSL system, that should system the SSL system! | Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie | | | | +| Forward Usability Specialist | 5.6.9 | Overwrite | I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth! | | | | | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | | | +| Direct Brand Director | 4.7.4 | Url | You can't navigate the capacitor without programming the solid state SQL capacitor! | | | | | | +| Senior Configuration Developer | 4.0.9 | Url | Use the primary SCSI matrix, then you can program the primary matrix! | If we parse the interface, we can get to the JSON interface through the mobile JSON interface! | Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle | | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | | | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| Customer Solutions Officer | 4.5.2 | Expression | You can't copy the matrix without compressing the wireless AGP matrix! | | | https://rylan.name | | | +| Dynamic Implementation Engineer | 6.7.1 | Overwrite | We need to transmit the open-source EXE interface! | | | http://margie.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 | | | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | | | +| Product Directives Engineer | 8.2.3 | Unknown | transmitting the bus won't do anything, we need to navigate the online IB bus! | | Maggie Lindgren | | | | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | | | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | | | +| Human Accounts Orchestrator | 4.1.6 | Url | | | | | | | +| Direct Division Officer | 6.5.6 | Url | transmitting the protocol won't do anything, we need to generate the multi-byte THX protocol! | | Glenda Schuppe,Glenda Schuppe | http://catherine.name | | | +| Investor Quality Associate | 0.5.1 | Expression | | Try to reboot the SSL alarm, maybe it will reboot the solid state alarm! | Carrie Hansen,Carrie Hansen,Carrie Hansen,Carrie Hansen | https://ezequiel.biz | | | +| Global Identity Supervisor | 0.9.1 | Overwrite | | | | | | | +| Dynamic Branding Manager | 1.4.0 | Overwrite | You can't navigate the application without generating the cross-platform COM application! | Try to program the FTP alarm, maybe it will program the virtual alarm! | | http://dario.info | | | +| Dynamic Data Technician | 4.2.3 | Url | I'll copy the optical RAM feed, that should feed the RAM feed! | | June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds | http://nia.info | | | +| Product Solutions Manager | 9.5.2 | Overwrite | I'll hack the primary SDD card, that should card the SDD card! | hacking the transmitter won't do anything, we need to index the open-source CSS transmitter! | Sergio Bailey,Sergio Bailey,Sergio Bailey | | | | +| Corporate Intranet Specialist | 3.5.6 | Expression | | | Edmund Lehner,Edmund Lehner,Edmund Lehner,Edmund Lehner | | | | +| Chief Program Associate | 2.6.7 | Unknown | We need to compress the optical PNG array! | | Wilbert Kunze,Wilbert Kunze,Wilbert Kunze,Wilbert Kunze | http://coy.info | | | +| Principal Operations Assistant | 0.9.0 | Url | I'll copy the auxiliary HDD bus, that should bus the HDD bus! | I'll copy the digital USB circuit, that should circuit the USB circuit! | | | | | +| International Brand Strategist | 3.9.3 | Url | | | Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy | https://rowena.info | | | +| Customer Mobility Assistant | 4.2.9 | 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 | http://adonis.biz | | | +| Principal Brand Executive | 7.2.7 | Unknown | | | | https://dariana.com | | | +| District Assurance Technician | 8.5.5 | Overwrite | | | | http://zander.com | | | +| Human Paradigm Assistant | 8.8.8 | Expression | | | Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich | | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Factors Associate | 1.8.3 | Unknown | | You can't navigate the panel without calculating the open-source THX panel! | | http://dovie.name | | | +| Product Functionality Supervisor | 9.4.5 | Overwrite | Use the 1080p AI microchip, then you can reboot the 1080p microchip! | Use the open-source ADP matrix, then you can copy the open-source matrix! | | | | | +| Forward Data Orchestrator | 3.3.5 | Expression | Use the haptic XML driver, then you can index the haptic driver! | compressing the system won't do anything, we need to compress the optical RSS system! | | | | | +| Chief Factors Developer | 5.9.5 | Url | | Try to connect the ADP system, maybe it will connect the solid state system! | Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady | | | | +| Dynamic Division Representative | 7.3.5 | Unknown | | I'll index the haptic FTP alarm, that should alarm the FTP alarm! | Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson | http://taurean.net | | | +| Lead Operations Supervisor | 4.5.2 | Expression | The AI panel is down, transmit the open-source panel so we can transmit the AI panel! | | | | | | +| Customer Communications Engineer | 6.9.4 | Overwrite | | | Tanya Reinger,Tanya Reinger,Tanya Reinger | http://tito.name | | | +| Human Program Analyst | 3.1.8 | Expression | If we back up the application, we can get to the USB application through the cross-platform USB application! | | | http://efrain.org | | | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | | | +| Investor Accounts Facilitator | 7.7.8 | Expression | | | Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman | http://scottie.biz | | | +| Customer Branding Orchestrator | 8.3.7 | Overwrite | | We need to bypass the neural USB capacitor! | Nora Dietrich | http://nona.com | | | +| Dynamic Solutions Agent | 0.0.5 | Overwrite | Use the haptic USB card, then you can navigate the haptic card! | | | | | | +| Global Optimization Engineer | 8.7.9 | Expression | | quantifying the transmitter won't do anything, we need to synthesize the auxiliary FTP transmitter! | | http://aniya.org | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | | | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | | | +| Legacy Security Facilitator | 1.9.0 | Expression | | Use the cross-platform ADP alarm, then you can back up the cross-platform alarm! | | https://edythe.info | | | +| Regional Metrics Strategist | 1.2.1 | Unknown | | Try to override the GB driver, maybe it will override the digital driver! | | | | | +| Customer Program Developer | 2.9.8 | Expression | | You can't transmit the pixel without calculating the bluetooth FTP pixel! | | http://lenora.com | | | +| District Optimization Technician | 5.2.3 | Overwrite | | | Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti | https://douglas.info | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | | | +| Dynamic Security Director | 0.0.2 | Url | transmitting the feed won't do anything, we need to navigate the redundant SDD feed! | Try to parse the HTTP port, maybe it will parse the bluetooth port! | Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block | | | | +| 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 Division Administrator | 1.0.4 | Overwrite | We need to program the optical COM microchip! | We need to hack the haptic SAS microchip! | | | | | +| Investor Tactics Director | 0.4.3 | Expression | | | | https://aylin.com | | | +| Human Identity Representative | 4.1.5 | Overwrite | The SAS bus is down, program the neural bus so we can program the SAS bus! | | Joyce Auer,Joyce Auer,Joyce Auer | http://alyce.biz | | | +| Central Research Technician | 2.8.8 | Url | | You can't generate the program without connecting the bluetooth USB program! | | | | | +| Regional Functionality Agent | 5.9.9 | Overwrite | We need to index the 1080p SAS hard drive! | I'll connect the digital JBOD application, that should application the JBOD application! | Gloria Williamson,Gloria Williamson,Gloria Williamson,Gloria Williamson | http://arthur.net | | | +| International Branding Producer | 3.8.2 | Expression | We need to generate the solid state AGP microchip! | | | | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| Customer Web Assistant | 1.9.0 | Unknown | | | | | | | +| Human Markets Planner | 5.0.1 | Expression | Try to back up the COM driver, maybe it will back up the bluetooth driver! | | | | | | +| Regional Directives Liaison | 4.7.8 | Expression | If we connect the interface, we can get to the SCSI interface through the auxiliary SCSI interface! | | Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic | https://glennie.biz | | | +| International Solutions Planner | 9.0.0 | Url | Use the multi-byte SMTP program, then you can synthesize the multi-byte program! | | | | | | +| Lead Solutions Technician | 1.5.7 | Unknown | | | | | | | +| Lead Program Technician | 5.8.9 | Expression | | We need to transmit the back-end AGP sensor! | Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer | http://curtis.org | | | +| Regional Optimization Administrator | 3.6.4 | Expression | | I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive! | | http://serenity.info | | | +| International Tactics Administrator | 9.9.9 | Url | | | | | | | +| Human Tactics Facilitator | 5.7.0 | Url | Try to bypass the HTTP application, maybe it will bypass the digital application! | | | | | | +| Chief Infrastructure Specialist | 9.0.5 | Overwrite | hacking the port won't do anything, we need to back up the optical SMS port! | | Jackie Schumm | | | | +| Dynamic Security Specialist | 7.8.5 | Overwrite | Try to input the GB pixel, maybe it will input the wireless pixel! | You can't transmit the bus without indexing the digital TCP bus! | Guy Waters,Guy Waters | http://nova.biz | | | +| Principal Intranet Architect | 4.9.3 | Unknown | | | | | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | | | +| Global Optimization Architect | 1.5.0 | Unknown | Try to navigate the SCSI sensor, maybe it will navigate the mobile sensor! | | | | | | +| ----------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b04794e574ad8da7.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b04794e574ad8da7.verified.txt new file mode 100644 index 00000000..19a4b785 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b04794e574ad8da7.verified.txt @@ -0,0 +1,40 @@ +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b29c7c77abf53baa.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b29c7c77abf53baa.verified.txt new file mode 100644 index 00000000..58c6cc10 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b29c7c77abf53baa.verified.txt @@ -0,0 +1,35 @@ +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Senior Brand Developer | 4.4.1 | Ignored | If we override the system, we can get to the CSS system through the neural CSS system! | http://adelbert.net | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| | | | | | Libby | http://wade.biz | +| | | | | | Leola | https://pietro.info | +| | | | | | Arch | http://hazle.org | +| | | | | | Eldred | http://gabriel.net | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b30d66e2cbf18b87.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b30d66e2cbf18b87.verified.txt new file mode 100644 index 00000000..0d97b135 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b30d66e2cbf18b87.verified.txt @@ -0,0 +1,21 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b30e9c5ccf49b6db.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b30e9c5ccf49b6db.verified.txt new file mode 100644 index 00000000..36d1c11b --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b30e9c5ccf49b6db.verified.txt @@ -0,0 +1,142 @@ +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Response Consultant | 9.3.1 | Unknown | | | https://ulices.biz | Ari | https://chad.com | +| | | | | | | Yvonne | http://jada.name | +| | | | | | | Noemie | https://kayley.name | +| | | | | | | Brandon | http://kristopher.name | +| | | | | | | Maggie | http://kimberly.info | +| | | | | | | Veronica | https://mya.net | +| | | | | | | Marty | https://obie.net | +| | | | | | | Braxton | http://flavio.net | +| | | | | | | Jeramie | http://jaycee.net | +| Future Group Assistant | 1.7.9 | Expression | Use the multi-byte AI port, then you can reboot the multi-byte port! | | | Darien | http://mitchel.biz | +| | | | | | | Carleton | https://madalyn.com | +| | | | | | | Narciso | https://mia.com | +| | | | | | | Nicklaus | https://abelardo.com | +| | | | | | | Carolina | https://lindsey.info | +| | | | | | | Rigoberto | https://lou.biz | +| Corporate Accountability Designer | 0.8.0 | Overwrite | We need to hack the online FTP application! | | http://taya.info | Carlee | http://britney.name | +| | | | | | | Tess | http://julian.biz | +| | | | | | | Isadore | http://billy.net | +| | | | | | | Alice | http://vern.net | +| | | | | | | King | http://trace.net | +| | | | | | | Carmela | https://adolf.info | +| | | | | | | Sherman | http://alec.net | +| | | | | | | Lamar | http://deion.org | +| Direct Tactics Technician | 2.8.6 | Unknown | Try to quantify the SAS port, maybe it will quantify the wireless port! | | | Demond | http://stefan.name | +| | | | | | | Norval | http://annie.net | +| | | | | | | Destin | http://penelope.name | +| Customer Program Consultant | 5.0.4 | Ignored | Try to compress the GB system, maybe it will compress the neural system! | Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan | http://kieran.biz | Bettie | http://edmund.info | +| | | | | | | Sadie | http://horacio.org | +| | | | | | | Loraine | https://sandra.org | +| | | | | | | Emil | http://dayana.net | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| Investor Identity Developer | 4.2.0 | Url | | Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| | | | | | | Keely | http://obie.org | +| | | | | | | Caleigh | https://albin.info | +| | | | | | | Flavie | http://lavonne.biz | +| | | | | | | Kaitlyn | http://osborne.org | +| Product Identity Analyst | 5.9.3 | Expression | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | | Rey | https://connie.info | +| | | | | | | Hollie | http://rico.name | +| | | | | | | Marshall | http://pierce.org | +| | | | | | | 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 | +| Lead Creative Administrator | 9.0.0 | Overwrite | Use the virtual RAM monitor, then you can override the virtual monitor! | | https://roderick.net | Hildegard | http://conner.name | +| | | | | | | 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 | +| | | | | | | Irving | https://sydnie.org | +| Chief Data Director | 2.1.5 | Unknown | Use the haptic PCI bandwidth, then you can generate the haptic bandwidth! | | | Earnestine | http://nathanial.biz | +| | | | | | | Connor | https://augustus.net | +| | | | | | | Araceli | http://hailey.biz | +| | | | | | | Janessa | https://craig.com | +| | | | | | | Erica | http://kristin.org | +| | | | | | | Alek | http://shany.biz | +| | | | | | | Camren | http://joany.info | +| Product Marketing Developer | 3.3.6 | Unknown | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | Lewis | https://alisa.com | +| | | | | | | Delores | https://layne.name | +| | | | | | | Delphine | https://katlynn.org | +| | | | | | | Meredith | https://johanna.info | +| | | | | | | Jacklyn | https://kadin.com | +| | | | | | | Hardy | https://donna.info | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| Dynamic Group Associate | 6.6.1 | Unknown | We need to input the open-source SMTP bus! | | http://kian.name | Neil | https://burley.info | +| | | | | | | Lemuel | http://brenden.info | +| | | | | | | Agnes | https://urban.org | +| | | | | | | Micheal | https://ida.net | +| | | | | | | Murray | https://samanta.com | +| | | | | | | Assunta | http://florencio.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Mobility Strategist | 4.7.6 | Overwrite | Use the virtual ADP bandwidth, then you can calculate the virtual bandwidth! | | http://gerardo.net | Cathy | http://giovanna.info | +| | | | | | | Ike | https://jerome.biz | +| | | | | | | Emerald | https://camren.net | +| | | | | | | Sheila | https://garry.org | +| Internal Solutions Planner | 1.3.8 | Expression | | Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| | | | | | | Mallory | http://angeline.name | +| Investor Creative Architect | 4.5.6 | Overwrite | | Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| | | | | | | Retta | https://lottie.biz | +| | | | | | | Yasmine | http://delia.com | +| | | | | | | Khalil | http://jewel.net | +| | | | | | | Roy | https://johanna.org | +| | | | | | | Price | https://itzel.info | +| | | | | | | Dalton | https://daren.info | +| | | | | | | Arnold | http://arlo.org | +| Global Infrastructure Developer | 5.5.0 | Url | generating the application won't do anything, we need to calculate the auxiliary JSON application! | Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger | https://austin.net | 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 Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b3651b9eae25e00a.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b3651b9eae25e00a.verified.txt new file mode 100644 index 00000000..c85c91cf --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b3651b9eae25e00a.verified.txt @@ -0,0 +1,40 @@ +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b3a0f13ac69dbf0e.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b3a0f13ac69dbf0e.verified.txt new file mode 100644 index 00000000..0eabed30 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b3a0f13ac69dbf0e.verified.txt @@ -0,0 +1,46 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b3bfdf2289d72440.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b3bfdf2289d72440.verified.txt new file mode 100644 index 00000000..1968cf36 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b3bfdf2289d72440.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b4bc66a05db6099f.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b4bc66a05db6099f.verified.txt new file mode 100644 index 00000000..bd08e52a --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b4bc66a05db6099f.verified.txt @@ -0,0 +1,30 @@ +| ----------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | | | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | | | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | | | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | | | +| International Tactics Administrator | 9.9.9 | Url | | | | | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b5276ae16c41078d.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b5276ae16c41078d.verified.txt new file mode 100644 index 00000000..949fa777 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b5276ae16c41078d.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Paige | https://remington.info | +| | | | | Aletha | https://isobel.info | +| | | | | Pearline | https://johnathon.info | +| | | | | Eleanora | http://jaeden.info | +| | | | | Nikolas | https://daphney.net | +| | | | | Oceane | http://clifton.com | +| | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b5e9aacbdc8e59f3.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b5e9aacbdc8e59f3.verified.txt new file mode 100644 index 00000000..b8b26e1e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b5e9aacbdc8e59f3.verified.txt @@ -0,0 +1,45 @@ +| -------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Global Implementation Strategist | 5.9.8 | Ignored | | | Colleen Schroeder,Colleen Schroeder | https://enos.info | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Program Designer | 7.2.5 | Ignored | We need to hack the auxiliary COM hard drive! | | | | | | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| -------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b5fa52ef041b269b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b5fa52ef041b269b.verified.txt new file mode 100644 index 00000000..7b6e085d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b5fa52ef041b269b.verified.txt @@ -0,0 +1,122 @@ +| --------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | --------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| --------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | --------------------- | --------- | --------------------- | +| Human Implementation Designer | 8.3.7 | Unknown | Try to navigate the RSS card, maybe it will navigate the haptic card! | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Customer Configuration Manager | 1.6.8 | Unknown | I'll program the online RSS card, that should card the RSS card! | http://sylvan.net | | | +| Dynamic Communications Supervisor | 2.6.8 | Overwrite | | https://carol.biz | | | +| District Factors Producer | 1.6.6 | Unknown | If we reboot the panel, we can get to the THX panel through the solid state THX panel! | | | | +| Human Configuration Assistant | 0.1.1 | Unknown | I'll bypass the solid state SMS system, that should system the SMS system! | http://frederick.com | | | +| Regional Interactions Assistant | 8.4.1 | Ignored | I'll hack the optical COM alarm, that should alarm the COM alarm! | | | | +| Principal Implementation Director | 7.1.6 | Unknown | We need to transmit the auxiliary FTP transmitter! | http://pearlie.org | | | +| Dynamic Configuration Specialist | 8.8.8 | Overwrite | Use the 1080p XML circuit, then you can generate the 1080p circuit! | http://brown.com | | | +| Corporate Creative Liaison | 2.9.9 | Overwrite | | http://albert.org | | | +| Dynamic Security Technician | 6.8.3 | Unknown | | | | | +| Customer Security Representative | 3.7.3 | Expression | The GB circuit is down, hack the redundant circuit so we can hack the GB circuit! | https://jalon.net | | | +| Internal Accounts Consultant | 6.3.4 | Expression | Try to connect the SMS feed, maybe it will connect the mobile feed! | https://elda.info | | | +| Global Security Liaison | 8.1.2 | Expression | | | | | +| Forward Quality Producer | 6.3.7 | Overwrite | The CSS microchip is down, back up the bluetooth microchip so we can back up the CSS microchip! | https://jayne.name | | | +| Chief Implementation Assistant | 6.1.2 | Unknown | | http://cathryn.biz | | | +| Customer Operations Officer | 2.6.0 | Overwrite | Use the bluetooth USB alarm, then you can override the bluetooth alarm! | http://antonette.org | | | +| Product Quality Analyst | 3.6.5 | Overwrite | You can't parse the port without bypassing the multi-byte GB port! | https://delbert.com | | | +| Central Markets Officer | 6.8.8 | Expression | | | | | +| Customer Directives Director | 7.9.2 | Overwrite | Try to hack the COM panel, maybe it will hack the auxiliary panel! | | | | +| International Identity Planner | 4.2.1 | Expression | You can't compress the capacitor without copying the virtual USB capacitor! | | | | +| Central Interactions Manager | 7.0.9 | Expression | | | | | +| National Communications Facilitator | 3.1.0 | Url | quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter! | | | | +| Legacy Functionality Consultant | 8.0.9 | Ignored | Try to generate the SAS matrix, maybe it will generate the cross-platform matrix! | http://emie.info | | | +| Lead Tactics Executive | 6.2.9 | Unknown | | https://lowell.org | | | +| Human Accountability Analyst | 0.8.7 | Ignored | parsing the program won't do anything, we need to synthesize the haptic IB program! | | | | +| Internal Division Agent | 2.4.2 | Unknown | | | | | +| Corporate Paradigm Representative | 7.0.2 | Overwrite | You can't quantify the capacitor without hacking the neural SMS capacitor! | | | | +| Customer Integration Agent | 3.6.0 | Expression | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | | | | +| Regional Markets Supervisor | 7.7.6 | Expression | If we transmit the system, we can get to the SMTP system through the virtual SMTP system! | | | | +| District Brand Designer | 3.4.8 | Ignored | Try to quantify the PNG program, maybe it will quantify the online program! | https://josiane.org | | | +| Human Solutions Assistant | 1.9.8 | Expression | Try to parse the PNG panel, maybe it will parse the haptic panel! | http://carter.info | | | +| Legacy Data Facilitator | 0.9.0 | Overwrite | bypassing the program won't do anything, we need to bypass the optical AI program! | https://beatrice.net | | | +| Senior Identity Specialist | 2.8.9 | Ignored | We need to program the primary THX protocol! | https://kennedy.biz | | | +| Regional Solutions Supervisor | 1.8.2 | Ignored | You can't parse the system without compressing the haptic GB system! | https://lance.net | | | +| Dynamic Mobility Representative | 8.4.2 | Ignored | | http://brooks.info | | | +| Customer Implementation Director | 5.9.1 | Unknown | | | | | +| Dynamic Interactions Facilitator | 6.8.2 | Expression | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | +| Principal Optimization Representative | 0.4.8 | Overwrite | If we index the system, we can get to the XSS system through the cross-platform XSS system! | | | | +| Global Response Coordinator | 9.7.3 | Overwrite | Use the solid state SQL firewall, then you can connect the solid state firewall! | https://zelda.net | | | +| Internal Infrastructure Strategist | 7.2.2 | Overwrite | I'll transmit the optical XML sensor, that should sensor the XML sensor! | http://ahmad.com | | | +| National Tactics Architect | 6.7.8 | Url | We need to parse the auxiliary SAS capacitor! | https://margaret.net | | | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Chief Accounts Associate | 8.5.5 | Unknown | You can't generate the panel without compressing the neural SAS panel! | | | | +| Principal Web Facilitator | 5.4.5 | Overwrite | compressing the firewall won't do anything, we need to copy the bluetooth COM firewall! | http://paris.name | | | +| National Accounts Associate | 2.7.6 | Overwrite | | | | | +| Central Marketing Technician | 8.7.2 | Overwrite | Use the cross-platform GB capacitor, then you can parse the cross-platform capacitor! | http://albina.org | | | +| Internal Factors Facilitator | 2.6.3 | Overwrite | | http://melba.name | | | +| Dynamic Configuration Executive | 4.7.6 | Unknown | If we parse the transmitter, we can get to the ADP transmitter through the online ADP transmitter! | | | | +| Chief Division Director | 3.4.7 | Unknown | Try to override the CSS microchip, maybe it will override the primary microchip! | http://alejandrin.biz | | | +| Direct Directives Strategist | 7.3.1 | Ignored | | | | | +| Chief Infrastructure Consultant | 4.1.2 | Url | Use the multi-byte IB feed, then you can navigate the multi-byte feed! | https://theron.info | | | +| Internal Branding Supervisor | 6.7.4 | Url | I'll copy the auxiliary PCI panel, that should panel the PCI panel! | | | | +| Future Markets Architect | 9.0.8 | Overwrite | | | | | +| Principal Intranet Liaison | 5.1.0 | Overwrite | I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor! | http://neva.info | | | +| Central Integration Analyst | 0.4.0 | Overwrite | If we synthesize the protocol, we can get to the JBOD protocol through the multi-byte JBOD protocol! | https://laverne.name | | | +| National Identity Technician | 7.4.9 | Overwrite | Try to parse the SMTP feed, maybe it will parse the multi-byte feed! | https://benedict.org | | | +| Central Marketing Director | 3.2.5 | Overwrite | | https://anibal.net | | | +| District Web Developer | 6.1.9 | Unknown | | http://arthur.net | | | +| Dynamic Functionality Consultant | 4.9.1 | Unknown | | https://lonnie.info | | | +| Dynamic Functionality Agent | 5.9.5 | Unknown | | http://annabelle.net | | | +| District Intranet Designer | 4.5.0 | Ignored | | | | | +| National Tactics Engineer | 3.7.5 | Url | generating the matrix won't do anything, we need to override the redundant GB matrix! | https://alexys.org | | | +| District Mobility Administrator | 3.2.3 | Ignored | | | | | +| Chief Assurance Associate | 3.3.1 | Url | overriding the panel won't do anything, we need to parse the open-source IB panel! | https://tyrese.info | | | +| District Infrastructure Strategist | 9.1.5 | Ignored | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | | | | +| Global Markets Executive | 2.5.8 | Expression | | | | | +| Future Accounts Producer | 9.4.3 | Unknown | You can't override the port without indexing the neural THX port! | | | | +| Customer Quality Technician | 9.7.0 | Unknown | If we index the card, we can get to the XSS card through the neural XSS card! | | | | +| Product Applications Assistant | 2.8.4 | Overwrite | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | https://carleton.info | | | +| Investor Accountability Officer | 2.4.3 | Overwrite | | | | | +| Forward Functionality Analyst | 4.5.1 | Expression | | http://orie.name | | | +| Global Usability Representative | 3.5.9 | Url | | | | | +| Principal Markets Designer | 3.8.8 | Url | overriding the transmitter won't do anything, we need to generate the cross-platform SCSI transmitter! | | | | +| Investor Usability Officer | 2.5.2 | Ignored | Try to program the XML capacitor, maybe it will program the haptic capacitor! | http://orlo.name | | | +| Product Implementation Officer | 1.9.9 | Unknown | Try to back up the AGP system, maybe it will back up the 1080p system! | | | | +| National Solutions Associate | 9.1.2 | Expression | | | | | +| Future Interactions Specialist | 8.8.8 | Ignored | quantifying the application won't do anything, we need to hack the haptic RAM application! | | | | +| Direct Assurance Supervisor | 4.1.8 | Overwrite | | https://aniyah.org | | | +| International Research Director | 4.1.0 | Url | Try to synthesize the SDD hard drive, maybe it will synthesize the bluetooth hard drive! | | | | +| Product Identity Architect | 5.6.4 | Url | The GB bus is down, back up the redundant bus so we can back up the GB bus! | http://darian.org | | | +| Regional Security Architect | 2.2.5 | Url | | | | | +| National Creative Executive | 7.5.7 | Unknown | | http://mallory.biz | | | +| Human Usability Associate | 5.2.5 | Expression | You can't override the capacitor without overriding the mobile XML capacitor! | http://hunter.info | | | +| Human Quality Facilitator | 1.2.0 | Ignored | We need to copy the online THX firewall! | | | | +| Internal Factors Developer | 3.7.7 | Ignored | | http://santa.name | | | +| Dynamic Applications Director | 5.1.4 | Ignored | | | | | +| Human Directives Engineer | 5.3.9 | Url | | | | | +| Chief Solutions Orchestrator | 8.7.8 | Ignored | If we navigate the pixel, we can get to the SCSI pixel through the bluetooth SCSI pixel! | | | | +| Forward Identity Orchestrator | 1.3.3 | Ignored | hacking the alarm won't do anything, we need to override the neural SSL alarm! | | | | +| Chief Marketing Assistant | 7.3.5 | Expression | | | | | +| District Branding Analyst | 1.9.5 | Url | | https://paula.net | | | +| Human Creative Engineer | 7.5.1 | Unknown | | | | | +| Chief Mobility Planner | 7.1.0 | Overwrite | | | | | +| Corporate Accountability Representative | 2.3.2 | Unknown | | | | | +| Global Usability Producer | 4.9.5 | Expression | If we hack the application, we can get to the PCI application through the 1080p PCI application! | | | | +| Dynamic Brand Technician | 2.5.6 | Expression | | http://lesly.info | | | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Senior Division Liaison | 7.1.3 | Ignored | | | | | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source 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 Integration Liaison | 1.8.8 | Url | | https://sean.com | | | +| Corporate Data Strategist | 9.0.0 | Url | | http://eli.net | | | +| --------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | --------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b6aa7cdb8b8fa603.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b6aa7cdb8b8fa603.verified.txt new file mode 100644 index 00000000..7e7932d1 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b6aa7cdb8b8fa603.verified.txt @@ -0,0 +1,35 @@ +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Senior Brand Developer | 4.4.1 | Ignored | If we override the system, we can get to the CSS system through the neural CSS system! | http://adelbert.net | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| | | | | | Libby | http://wade.biz | +| | | | | | Leola | https://pietro.info | +| | | | | | Arch | http://hazle.org | +| | | | | | Eldred | http://gabriel.net | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b6e586540c40a347.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b6e586540c40a347.verified.txt new file mode 100644 index 00000000..7fdc3d9c --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b6e586540c40a347.verified.txt @@ -0,0 +1,40 @@ +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b8e915fa8507c22c.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b8e915fa8507c22c.verified.txt new file mode 100644 index 00000000..6f35c8f2 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b8e915fa8507c22c.verified.txt @@ -0,0 +1,46 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b95a61e5015599ca.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b95a61e5015599ca.verified.txt new file mode 100644 index 00000000..949fa777 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b95a61e5015599ca.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Paige | https://remington.info | +| | | | | Aletha | https://isobel.info | +| | | | | Pearline | https://johnathon.info | +| | | | | Eleanora | http://jaeden.info | +| | | | | Nikolas | https://daphney.net | +| | | | | Oceane | http://clifton.com | +| | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b98ef5adcc901463.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b98ef5adcc901463.verified.txt new file mode 100644 index 00000000..ffa28941 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b98ef5adcc901463.verified.txt @@ -0,0 +1,165 @@ +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ---------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ---------------------- | ---------- | ---------------------- | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | | | +| Investor Intranet Producer | 5.4.1 | Ignored | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | http://hyman.org | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| National Directives Analyst | 8.2.7 | Ignored | We need to compress the primary GB array! | | | | | +| National Creative Engineer | 4.0.0 | Ignored | You can't parse the alarm without overriding the haptic SMTP alarm! | | | Candida | https://craig.biz | +| | | | | | | Timmothy | https://joanny.biz | +| | | | | | | Alfonzo | http://dorothea.org | +| | | | | | | 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 | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | | | +| Dynamic Optimization Director | 3.4.6 | Ignored | The PNG protocol is down, index the digital protocol so we can index the PNG protocol! | I'll transmit the online SSL feed, that should feed the SSL feed! | https://maximilian.org | | | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | | | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | | | +| International Data Representative | 3.5.7 | Ignored | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | http://dakota.com | | | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| Regional Mobility Manager | 2.7.0 | Ignored | | | http://gianni.info | Alvina | http://elouise.name | +| | | | | | | Ron | http://brown.org | +| | | | | | | Cordia | http://ericka.name | +| | | | | | | Eugene | http://rashad.info | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| Regional Directives Supervisor | 4.9.8 | Ignored | Try to reboot the THX hard drive, maybe it will reboot the open-source hard drive! | Use the primary GB driver, then you can generate the primary driver! | https://malcolm.net | | | +| Forward Directives Supervisor | 8.7.6 | Ignored | | The SSL microchip is down, hack the optical microchip so we can hack the SSL microchip! | http://shaun.org | Jadon | https://amelia.biz | +| | | | | | | Toni | http://angie.name | +| | | | | | | Ardella | http://melissa.net | +| | | | | | | Sandra | http://pearline.org | +| | | | | | | Noble | https://dusty.net | +| Chief Brand Associate | 7.6.8 | Ignored | | | https://lauriane.com | Devin | https://ramona.info | +| | | | | | | Alice | http://laverne.info | +| | | | | | | Layne | https://brooks.name | +| | | | | | | Kaitlyn | http://serenity.biz | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | Ignored | | The COM application is down, quantify the auxiliary application so we can quantify the COM application! | | Nyah | http://oliver.com | +| | | | | | | Ettie | http://lonny.net | +| | | | | | | Onie | https://cassie.biz | +| | | | | | | Solon | https://buck.biz | +| | | | | | | Taryn | http://hilton.com | +| | | | | | | Isabel | http://rogers.net | +| | | | | | | Bertrand | http://annetta.org | +| | | | | | | Remington | https://efrain.info | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | | | +| Legacy Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | | | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | | | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | | | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ---------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b9e044b4a939e79c.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b9e044b4a939e79c.verified.txt new file mode 100644 index 00000000..29bae175 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_b9e044b4a939e79c.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bad9d6635cfb1616.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bad9d6635cfb1616.verified.txt new file mode 100644 index 00000000..949fa777 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bad9d6635cfb1616.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Paige | https://remington.info | +| | | | | Aletha | https://isobel.info | +| | | | | Pearline | https://johnathon.info | +| | | | | Eleanora | http://jaeden.info | +| | | | | Nikolas | https://daphney.net | +| | | | | Oceane | http://clifton.com | +| | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bb0b406ad5816e24.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bb0b406ad5816e24.verified.txt new file mode 100644 index 00000000..fed71ea2 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bb0b406ad5816e24.verified.txt @@ -0,0 +1,14 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bb3a5d2be01fd901.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bb3a5d2be01fd901.verified.txt new file mode 100644 index 00000000..518aa17a --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bb3a5d2be01fd901.verified.txt @@ -0,0 +1,43 @@ +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | | | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | | | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | | | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | | | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | | | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bb4ef313d84c8125.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bb4ef313d84c8125.verified.txt new file mode 100644 index 00000000..53e7dfec --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bb4ef313d84c8125.verified.txt @@ -0,0 +1,22 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bb9bf440375d0f8a.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bb9bf440375d0f8a.verified.txt new file mode 100644 index 00000000..9b80bfa9 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bb9bf440375d0f8a.verified.txt @@ -0,0 +1,32 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bcab3ccefaf092a7.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bcab3ccefaf092a7.verified.txt new file mode 100644 index 00000000..949fa777 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bcab3ccefaf092a7.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Paige | https://remington.info | +| | | | | Aletha | https://isobel.info | +| | | | | Pearline | https://johnathon.info | +| | | | | Eleanora | http://jaeden.info | +| | | | | Nikolas | https://daphney.net | +| | | | | Oceane | http://clifton.com | +| | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bd5536908178da0e.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bd5536908178da0e.verified.txt new file mode 100644 index 00000000..6dd18192 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bd5536908178da0e.verified.txt @@ -0,0 +1,34 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Investor Intranet Producer | 5.4.1 | Ignored | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | http://hyman.org | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bd876ec02f27d0ca.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bd876ec02f27d0ca.verified.txt new file mode 100644 index 00000000..949fa777 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bd876ec02f27d0ca.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Paige | https://remington.info | +| | | | | Aletha | https://isobel.info | +| | | | | Pearline | https://johnathon.info | +| | | | | Eleanora | http://jaeden.info | +| | | | | Nikolas | https://daphney.net | +| | | | | Oceane | http://clifton.com | +| | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_be09de838a5dff0c.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_be09de838a5dff0c.verified.txt new file mode 100644 index 00000000..75260811 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_be09de838a5dff0c.verified.txt @@ -0,0 +1,117 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------- | ---------- | ---------------------- | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Legacy Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bf3c336ef77cddff.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bf3c336ef77cddff.verified.txt new file mode 100644 index 00000000..a2a2f40c --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bf3c336ef77cddff.verified.txt @@ -0,0 +1,91 @@ +| --------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| District Metrics Associate | 8.1.6 | Overwrite | | | http://jaylin.org | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Principal Intranet Architect | 4.9.3 | Expression | | | | | | +| Global Paradigm Producer | 1.8.4 | Overwrite | If we quantify the protocol, we can get to the IB protocol through the auxiliary IB protocol! | | https://london.biz | | | +| Regional Paradigm Director | 3.0.9 | Unknown | The COM pixel is down, quantify the virtual pixel so we can quantify the COM pixel! | | | | | +| Forward Program Officer | 4.2.4 | Unknown | quantifying the capacitor won't do anything, we need to override the open-source AI capacitor! | Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin | | | | +| Customer Group Director | 2.5.2 | Expression | You can't index the pixel without copying the redundant XML pixel! | Vera Krajcik,Vera Krajcik,Vera Krajcik,Vera Krajcik | https://eloise.name | | | +| Forward Accounts Consultant | 8.9.0 | Expression | | | | | | +| Dynamic Group Representative | 9.8.1 | Unknown | | | | | | +| Investor Communications Associate | 0.7.2 | Expression | | Arnold Franecki,Arnold Franecki | http://modesto.info | | | +| Legacy Response Analyst | 9.2.7 | Unknown | | Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata | http://martine.info | | | +| District Mobility Administrator | 3.2.3 | Unknown | | Christopher Dietrich,Christopher Dietrich,Christopher Dietrich,Christopher Dietrich | | | | +| Regional Factors Analyst | 1.5.7 | Overwrite | | | | | | +| Dynamic Integration Assistant | 2.7.5 | Overwrite | I'll back up the 1080p RSS matrix, that should matrix the RSS matrix! | | | | | +| Dynamic Metrics Coordinator | 5.8.1 | Unknown | overriding the circuit won't do anything, we need to copy the mobile AGP circuit! | Helen Fisher,Helen Fisher,Helen Fisher,Helen Fisher,Helen Fisher | | | | +| Human Web Liaison | 8.1.1 | Unknown | | | https://imogene.org | | | +| Future Tactics Producer | 5.8.9 | Url | navigating the pixel won't do anything, we need to parse the back-end IB pixel! | | | | | +| Dynamic Mobility Technician | 6.0.2 | Expression | | | https://keeley.net | | | +| 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 | | | +| Lead Solutions Technician | 1.5.7 | Unknown | | | | | | +| Dynamic Accounts Architect | 9.8.0 | Overwrite | | | | | | +| Regional Mobility Designer | 8.5.4 | Url | | | http://brady.net | | | +| Legacy Communications Manager | 0.1.8 | Unknown | | | http://gus.info | | | +| Future Directives Associate | 1.1.1 | Expression | | Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe | https://shayne.name | | | +| Regional Security Agent | 6.2.7 | Overwrite | | | https://kenyon.org | | | +| Corporate Quality Planner | 6.6.3 | Url | 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 | | | | +| Senior Response Officer | 2.8.2 | Expression | | Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann | | | | +| District Brand Producer | 9.3.8 | Overwrite | Use the redundant AGP application, then you can generate the redundant application! | Clarence Metz,Clarence Metz,Clarence Metz | | | | +| Global Data Administrator | 0.8.4 | Unknown | | Frederick Leffler,Frederick Leffler,Frederick Leffler | https://barrett.com | | | +| Product Solutions Manager | 9.5.2 | Overwrite | I'll hack the primary SDD card, that should card the SDD card! | Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach | | | | +| Forward Integration Specialist | 8.7.1 | Expression | | | http://jordon.net | | | +| Lead Identity Developer | 7.1.0 | Unknown | | Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover | https://eve.com | | | +| Internal Division Agent | 2.4.2 | Url | | Gary Von,Gary Von,Gary Von | | | | +| Direct Security Producer | 9.0.7 | Url | | | http://evert.net | | | +| Legacy Assurance Representative | 6.4.9 | Unknown | | Diane Gutkowski,Diane Gutkowski,Diane Gutkowski,Diane Gutkowski,Diane Gutkowski | https://maye.info | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Dynamic Brand Agent | 2.9.2 | Expression | quantifying the application won't do anything, we need to hack the haptic RAM application! | Bertha Schultz,Bertha Schultz | https://reese.info | | | +| Future Applications Engineer | 6.8.5 | Unknown | 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 | | | +| Central Applications Planner | 6.6.9 | Overwrite | | Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke | http://ava.org | | | +| District Intranet Agent | 1.1.6 | Url | You can't calculate the application without synthesizing the primary JBOD application! | | | | | +| Forward Web Designer | 0.1.4 | Overwrite | | | https://gerard.net | | | +| Future Interactions Developer | 1.1.7 | Unknown | If we reboot the matrix, we can get to the CSS matrix through the cross-platform CSS matrix! | | | | | +| Corporate Mobility Consultant | 1.9.0 | Expression | | | http://letha.name | | | +| Global Integration Assistant | 5.0.1 | Unknown | | | http://demarco.com | | | +| Future Applications Facilitator | 0.1.5 | Expression | transmitting the program won't do anything, we need to bypass the virtual HTTP program! | | | | | +| Principal Factors Producer | 0.8.5 | Unknown | connecting the system won't do anything, we need to override the back-end SQL system! | Devin Nolan | http://toby.info | | | +| Central Mobility Executive | 5.0.3 | Unknown | | Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling | | | | +| Lead Implementation Supervisor | 4.9.9 | Overwrite | The ADP card is down, hack the solid state card so we can hack the ADP card! | Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis | http://katlynn.net | | | +| Regional Integration Consultant | 5.3.8 | Expression | | | http://michael.name | | | +| Dynamic Division Specialist | 9.6.4 | Expression | | | https://keenan.net | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Global Markets Designer | 1.7.0 | Overwrite | Use the multi-byte COM feed, then you can parse the multi-byte feed! | | https://toby.biz | | | +| Forward Division Strategist | 5.7.1 | Expression | You can't reboot the program without transmitting the mobile SMTP program! | Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode | https://esperanza.name | | | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | http://hanna.net | | | +| National Quality Executive | 4.5.1 | Expression | Use the solid state TCP driver, then you can generate the solid state driver! | | http://rylan.com | | | +| Legacy Data Consultant | 5.8.8 | Unknown | Try to connect the JSON pixel, maybe it will connect the primary pixel! | | | | | +| Human Security Administrator | 9.8.5 | Overwrite | I'll synthesize the redundant XML feed, that should feed the XML feed! | Mario Stamm,Mario Stamm,Mario Stamm,Mario Stamm,Mario Stamm,Mario Stamm | | | | +| Dynamic Integration Assistant | 2.1.6 | Unknown | | | https://gerson.info | | | +| Future Configuration Architect | 4.2.6 | Expression | I'll generate the primary TCP bus, that should bus the TCP bus! | Victoria Padberg,Victoria Padberg,Victoria Padberg,Victoria Padberg,Victoria Padberg,Victoria Padberg | | | | +| Global Mobility Associate | 0.6.4 | Expression | We need to hack the haptic XSS program! | | https://brooke.org | | | +| Senior Group Designer | 3.0.6 | Url | The AGP pixel is down, hack the neural pixel so we can hack the AGP pixel! | | | | | +| Product Metrics Representative | 2.7.9 | Expression | connecting the feed won't do anything, we need to transmit the primary IB feed! | Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson | http://denis.info | | | +| Human Implementation Producer | 0.9.1 | Url | | | | | | +| Future Optimization Associate | 4.0.5 | Unknown | | Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel | https://linnie.net | | | +| District Identity Administrator | 2.9.6 | Unknown | | Isabel Schmitt,Isabel Schmitt,Isabel Schmitt,Isabel Schmitt | http://duncan.name | | | +| Customer Operations Liaison | 9.0.9 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | | | | +| Investor Configuration Technician | 1.9.1 | Url | We need to copy the primary FTP bus! | Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin | http://malvina.name | | | +| District Factors Associate | 0.2.6 | Expression | | Betsy Powlowski | https://cloyd.biz | | | +| Dynamic Applications Director | 5.1.4 | Unknown | | Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel | | | | +| Direct Accountability Producer | 1.8.1 | Url | | | http://justine.net | | | +| Forward Factors Architect | 6.7.6 | Overwrite | | Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt | | | | +| Global Directives Orchestrator | 8.7.6 | Expression | | Tommy Franecki,Tommy Franecki | | | | +| Principal Group Strategist | 4.1.0 | Url | I'll bypass the primary GB bandwidth, that should bandwidth the GB bandwidth! | | | | | +| Internal Web Associate | 6.2.5 | Expression | | | https://arvel.name | | | +| Investor Interactions Designer | 1.9.4 | Overwrite | | | https://octavia.name | | | +| Dynamic Research Designer | 5.6.8 | Unknown | If we connect the program, we can get to the SQL program through the digital SQL program! | | | | | +| Central Identity Analyst | 8.9.6 | Expression | | | http://leta.org | | | +| Investor Assurance Technician | 7.3.8 | Overwrite | | Merle Hirthe | | | | +| Forward Intranet Technician | 2.5.3 | Expression | | Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton | https://ruby.biz | | | +| Senior Applications Technician | 7.8.2 | Overwrite | | Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert | | | | +| Senior Factors Technician | 3.2.5 | Overwrite | You can't input the protocol without copying the auxiliary USB protocol! | Lee Zieme,Lee Zieme,Lee Zieme,Lee Zieme,Lee Zieme | | | | +| --------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bff13170842e270d.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bff13170842e270d.verified.txt new file mode 100644 index 00000000..cd2e5a5d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_bff13170842e270d.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c0059d77d0f50c86.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c0059d77d0f50c86.verified.txt new file mode 100644 index 00000000..1158f1b2 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c0059d77d0f50c86.verified.txt @@ -0,0 +1,234 @@ +| --------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| --------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Internal Infrastructure Strategist | 7.2.2 | Overwrite | I'll transmit the optical XML sensor, that should sensor the XML sensor! | http://ahmad.com | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Internal Branding Supervisor | 6.7.4 | Url | I'll copy the auxiliary PCI panel, that should panel the PCI panel! | | | | +| District Factors Producer | 1.6.6 | Unknown | If we reboot the panel, we can get to the THX panel through the solid state THX panel! | | | | +| Chief Solutions Orchestrator | 8.7.8 | Ignored | If we navigate the pixel, we can get to the SCSI pixel through the bluetooth SCSI pixel! | | | | +| Human Accountability Analyst | 0.8.7 | Ignored | parsing the program won't do anything, we need to synthesize the haptic IB program! | | | | +| Regional Markets Supervisor | 7.7.6 | Expression | If we transmit the system, we can get to the SMTP system through the virtual SMTP system! | | | | +| Global Usability Producer | 4.9.5 | Expression | If we hack the application, we can get to the PCI application through the 1080p PCI application! | | | | +| Human Configuration Assistant | 0.1.1 | Unknown | I'll bypass the solid state SMS system, that should system the SMS system! | http://frederick.com | | | +| Product Implementation Officer | 1.9.9 | Unknown | Try to back up the AGP system, maybe it will back up the 1080p system! | | | | +| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| | | | | | Monserrat | http://katrine.name | +| | | | | | Abel | https://geovany.com | +| | | | | | Diana | http://eula.name | +| | | | | | Raphael | https://zackery.info | +| Direct Directives Strategist | 7.3.1 | Ignored | | | | | +| Principal Markets Designer | 3.8.8 | Url | overriding the transmitter won't do anything, we need to generate the cross-platform SCSI transmitter! | | | | +| Forward Quality Producer | 6.3.7 | Overwrite | The CSS microchip is down, back up the bluetooth microchip so we can back up the CSS microchip! | https://jayne.name | | | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Human Implementation Designer | 8.3.7 | Unknown | Try to navigate the RSS card, maybe it will navigate the haptic card! | | | | +| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| | | | | | Tyson | https://bonita.org | +| | | | | | Jazlyn | http://madonna.net | +| | | | | | Deangelo | https://jess.info | +| | | | | | Alvah | https://hans.net | +| | | | | | Payton | http://shanna.name | +| | | | | | Providenci | https://tyra.org | +| | | | | | Flo | http://isidro.net | +| | | | | | Dawn | https://anika.org | +| | | | | | Silas | http://zane.name | +| Dynamic Mobility Representative | 8.4.2 | Ignored | | http://brooks.info | | | +| National Creative Executive | 7.5.7 | Unknown | | http://mallory.biz | | | +| Dynamic Configuration Specialist | 8.8.8 | Overwrite | Use the 1080p XML circuit, then you can generate the 1080p circuit! | http://brown.com | | | +| Chief Mobility Planner | 7.1.0 | Overwrite | | | | | +| Dynamic Applications Director | 5.1.4 | Ignored | | | | | +| Principal Implementation Director | 7.1.6 | Unknown | We need to transmit the auxiliary FTP transmitter! | http://pearlie.org | | | +| Product Identity Architect | 5.6.4 | Url | The GB bus is down, back up the redundant bus so we can back up the GB bus! | http://darian.org | | | +| Customer Implementation Director | 5.9.1 | Unknown | | | | | +| Customer Quality Technician | 9.7.0 | Unknown | If we index the card, we can get to the XSS card through the neural XSS card! | | | | +| Dynamic Functionality Consultant | 4.9.1 | Unknown | | https://lonnie.info | | | +| Chief Assurance Associate | 3.3.1 | Url | overriding the panel won't do anything, we need to parse the open-source IB panel! | https://tyrese.info | | | +| Customer Integration Agent | 3.6.0 | Expression | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | | | | +| Forward Identity Orchestrator | 1.3.3 | Ignored | hacking the alarm won't do anything, we need to override the neural SSL alarm! | | | | +| Corporate Paradigm Representative | 7.0.2 | Overwrite | You can't quantify the capacitor without hacking the neural SMS capacitor! | | | | +| District Mobility Administrator | 3.2.3 | Ignored | | | | | +| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| | | | | | Jody | http://jakob.org | +| | | | | | Anjali | https://valentin.info | +| Product Quality Analyst | 3.6.5 | Overwrite | You can't parse the port without bypassing the multi-byte GB port! | https://delbert.com | | | +| Dynamic Marketing Consultant | 2.4.9 | Overwrite | | | Angie | https://ardella.info | +| | | | | | Melissa | https://sandra.biz | +| | | | | | Pearline | https://noble.net | +| | | | | | Dusty | https://verlie.com | +| Chief Accounts Associate | 8.5.5 | Unknown | You can't generate the panel without compressing the neural SAS panel! | | | | +| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| | | | | | Ursula | https://werner.net | +| | | | | | Linwood | http://rebekah.org | +| | | | | | Cleve | https://claudie.net | +| | | | | | Theodora | http://faye.info | +| International Identity Planner | 4.2.1 | Expression | You can't compress the capacitor without copying the virtual USB capacitor! | | | | +| Global Security Liaison | 8.1.2 | Expression | | | | | +| Corporate Accountability Representative | 2.3.2 | Unknown | | | | | +| Internal Division Agent | 2.4.2 | Unknown | | | | | +| Regional Solutions Supervisor | 1.8.2 | Ignored | You can't parse the system without compressing the haptic GB system! | https://lance.net | | | +| National Accounts Associate | 2.7.6 | Overwrite | | | | | +| Customer Operations Officer | 2.6.0 | Overwrite | Use the bluetooth USB alarm, then you can override the bluetooth alarm! | http://antonette.org | | | +| Central Marketing Director | 3.2.5 | Overwrite | | https://anibal.net | | | +| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| | | | | | Caleigh | https://albin.info | +| | | | | | Flavie | http://lavonne.biz | +| | | | | | Kaitlyn | http://osborne.org | +| | | | | | Joesph | https://michael.name | +| | | | | | Kali | http://shyanne.net | +| | | | | | Austin | https://marty.net | +| | | | | | Theresia | http://kristin.net | +| | | | | | Lester | https://paige.com | +| Customer Security Representative | 3.7.3 | Expression | The GB circuit is down, hack the redundant circuit so we can hack the GB circuit! | https://jalon.net | | | +| Chief Division Director | 3.4.7 | Unknown | Try to override the CSS microchip, maybe it will override the primary microchip! | http://alejandrin.biz | | | +| International Research Director | 4.1.0 | Url | Try to synthesize the SDD hard drive, maybe it will synthesize the bluetooth hard drive! | | | | +| Dynamic Security Technician | 6.8.3 | Unknown | | | | | +| Legacy Data Facilitator | 0.9.0 | Overwrite | bypassing the program won't do anything, we need to bypass the optical AI program! | https://beatrice.net | | | +| Principal Intranet Liaison | 5.1.0 | Overwrite | I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor! | http://neva.info | | | +| Senior Division Liaison | 7.1.3 | Ignored | | | | | +| Central Marketing Technician | 8.7.2 | Overwrite | Use the cross-platform GB capacitor, then you can parse the cross-platform capacitor! | http://albina.org | | | +| Chief Marketing Assistant | 7.3.5 | Expression | | | | | +| Future Interactions Specialist | 8.8.8 | Ignored | quantifying the application won't do anything, we need to hack the haptic RAM application! | | | | +| Principal Optimization Representative | 0.4.8 | Overwrite | If we index the system, we can get to the XSS system through the cross-platform XSS system! | | | | +| Internal Factors Developer | 3.7.7 | Ignored | | http://santa.name | | | +| Global Usability Representative | 3.5.9 | Url | | | | | +| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| | | | | | Braeden | https://sunny.name | +| | | | | | Leslie | http://bettie.info | +| | | | | | Edmund | http://sadie.info | +| | | | | | Horacio | https://loraine.name | +| Global Response Associate | 1.9.8 | Overwrite | The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth! | | Sandra | http://antonina.com | +| | | | | | Willow | https://jason.org | +| | | | | | Orland | http://rigoberto.com | +| | | | | | Laney | http://eryn.org | +| | | | | | Amari | http://viviane.net | +| | | | | | Kelley | http://doris.net | +| | | | | | Kennedy | https://milo.net | +| Corporate Creative Liaison | 2.9.9 | Overwrite | | http://albert.org | | | +| Chief Infrastructure Consultant | 4.1.2 | Url | Use the multi-byte IB feed, then you can navigate the multi-byte feed! | https://theron.info | | | +| Senior Brand Developer | 4.4.1 | Ignored | If we override the system, we can get to the CSS system through the neural CSS system! | http://adelbert.net | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| | | | | | Libby | http://wade.biz | +| | | | | | Leola | https://pietro.info | +| | | | | | Arch | http://hazle.org | +| | | | | | Eldred | http://gabriel.net | +| Lead Tactics Executive | 6.2.9 | Unknown | | https://lowell.org | | | +| National Accounts Liaison | 7.2.6 | Overwrite | | | Cedrick | https://zachariah.net | +| | | | | | Marcelle | https://adah.org | +| | | | | | Barney | http://erica.org | +| Internal Accounts Consultant | 6.3.4 | Expression | Try to connect the SMS feed, maybe it will connect the mobile feed! | https://elda.info | | | +| Lead Integration Liaison | 1.8.8 | Url | | https://sean.com | | | +| Human Directives Engineer | 5.3.9 | Url | | | | | +| Customer Configuration Manager | 1.6.8 | Unknown | I'll program the online RSS card, that should card the RSS card! | http://sylvan.net | | | +| Central Markets Officer | 6.8.8 | Expression | | | | | +| Human Creative Engineer | 7.5.1 | Unknown | | | | | +| Human Solutions Assistant | 1.9.8 | Expression | Try to parse the PNG panel, maybe it will parse the haptic panel! | http://carter.info | | | +| Direct Accounts Associate | 3.2.6 | Overwrite | | https://vesta.com | Buck | http://taryn.com | +| | | | | | Hilton | http://isabel.com | +| | | | | | Rogers | https://bertrand.biz | +| | | | | | Annetta | https://remington.org | +| | | | | | Efrain | http://davion.org | +| | | | | | Merle | https://abigayle.org | +| | | | | | Jerod | https://vicenta.info | +| | | | | | Kayli | https://shaun.net | +| | | | | | Antwan | https://hazel.net | +| Investor Accountability Officer | 2.4.3 | Overwrite | | | | | +| Human Usability Associate | 5.2.5 | Expression | You can't override the capacitor without overriding the mobile XML capacitor! | http://hunter.info | | | +| Regional Security Architect | 2.2.5 | Url | | | | | +| National Communications Facilitator | 3.1.0 | Url | quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter! | | | | +| Dynamic Interactions Facilitator | 6.8.2 | Expression | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | +| National Communications Orchestrator | 4.5.1 | Unknown | The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit! | | | | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| National Tactics Engineer | 3.7.5 | Url | generating the matrix won't do anything, we need to override the redundant GB matrix! | https://alexys.org | | | +| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| | | | | | Clarissa | https://audreanne.name | +| | | | | | Vida | https://theresia.biz | +| | | | | | Ransom | http://isom.com | +| | | | | | Anastasia | http://kamryn.info | +| | | | | | Marlene | https://cyril.name | +| | | | | | Zetta | http://pete.org | +| | | | | | Candida | https://craig.biz | +| | | | | | Timmothy | https://joanny.biz | +| | | | | | Alfonzo | http://dorothea.org | +| Future Markets Architect | 9.0.8 | Overwrite | | | | | +| Dynamic Brand Technician | 2.5.6 | Expression | | http://lesly.info | | | +| Senior Identity Specialist | 2.8.9 | Ignored | We need to program the primary THX protocol! | https://kennedy.biz | | | +| Forward Functionality Analyst | 4.5.1 | Expression | | http://orie.name | | | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | +| Direct Assurance Supervisor | 4.1.8 | Overwrite | | https://aniyah.org | | | +| Corporate Data Strategist | 9.0.0 | Url | | http://eli.net | | | +| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| | | | | | Princess | http://haylie.biz | +| | | | | | Jordane | https://gregorio.com | +| | | | | | Opal | http://abbie.org | +| | | | | | Pablo | https://maxime.biz | +| | | | | | Shaun | https://concepcion.net | +| | | | | | Moises | http://rupert.info | +| Central Interactions Manager | 7.0.9 | Expression | | | | | +| Principal Web Facilitator | 5.4.5 | Overwrite | compressing the firewall won't do anything, we need to copy the bluetooth COM firewall! | http://paris.name | | | +| Dynamic Functionality Agent | 5.9.5 | Unknown | | http://annabelle.net | | | +| District Intranet Designer | 4.5.0 | Ignored | | | | | +| District Brand Designer | 3.4.8 | Ignored | Try to quantify the PNG program, maybe it will quantify the online program! | https://josiane.org | | | +| District Branding Analyst | 1.9.5 | Url | | https://paula.net | | | +| Future Accounts Producer | 9.4.3 | Unknown | You can't override the port without indexing the neural THX port! | | | | +| Product Applications Assistant | 2.8.4 | Overwrite | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | https://carleton.info | | | +| Dynamic Configuration Executive | 4.7.6 | Unknown | If we parse the transmitter, we can get to the ADP transmitter through the online ADP transmitter! | | | | +| Human Quality Facilitator | 1.2.0 | Ignored | We need to copy the online THX firewall! | | | | +| Chief Implementation Assistant | 6.1.2 | Unknown | | http://cathryn.biz | | | +| District Web Developer | 6.1.9 | Unknown | | http://arthur.net | | | +| Legacy Functionality Consultant | 8.0.9 | Ignored | Try to generate the SAS matrix, maybe it will generate the cross-platform matrix! | http://emie.info | | | +| Dynamic Communications Supervisor | 2.6.8 | Overwrite | | https://carol.biz | | | +| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| | | | | | Earnestine | http://nathanial.biz | +| | | | | | Connor | https://augustus.net | +| | | | | | Araceli | http://hailey.biz | +| | | | | | Janessa | https://craig.com | +| | | | | | Erica | http://kristin.org | +| | | | | | Alek | http://shany.biz | +| Investor Usability Officer | 2.5.2 | Ignored | Try to program the XML capacitor, maybe it will program the haptic capacitor! | http://orlo.name | | | +| National Solutions Associate | 9.1.2 | Expression | | | | | +| National Tactics Architect | 6.7.8 | Url | We need to parse the auxiliary SAS capacitor! | https://margaret.net | | | +| Internal Factors Facilitator | 2.6.3 | Overwrite | | http://melba.name | | | +| Customer Directives Director | 7.9.2 | Overwrite | Try to hack the COM panel, maybe it will hack the auxiliary panel! | | | | +| Global Markets Executive | 2.5.8 | Expression | | | | | +| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| | | | | | Clemmie | http://shanny.net | +| | | | | | Hildegard | http://conner.name | +| | | | | | Isabella | https://kennith.com | +| | | | | | Johanna | https://ara.org | +| | | | | | Demarco | https://rae.biz | +| | | | | | Viviane | http://christine.info | +| Regional Interactions Assistant | 8.4.1 | Ignored | I'll hack the optical COM alarm, that should alarm the COM alarm! | | | | +| National Identity Technician | 7.4.9 | Overwrite | Try to parse the SMTP feed, maybe it will parse the multi-byte feed! | https://benedict.org | | | +| District Infrastructure Strategist | 9.1.5 | Ignored | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | | | | +| Legacy Creative Liaison | 0.4.6 | Overwrite | | | Mervin | http://celestine.info | +| | | | | | Amalia | https://shanelle.info | +| | | | | | Sheila | http://darrell.info | +| | | | | | Alec | https://candice.biz | +| | | | | | Linnea | http://everardo.info | +| | | | | | Daryl | https://jerrod.com | +| | | | | | Laila | http://caleigh.net | +| | | | | | Adolfo | http://daisha.biz | +| Global Response Coordinator | 9.7.3 | Overwrite | Use the solid state SQL firewall, then you can connect the solid state firewall! | https://zelda.net | | | +| Central Integration Analyst | 0.4.0 | Overwrite | If we synthesize the protocol, we can get to the JBOD protocol through the multi-byte JBOD protocol! | https://laverne.name | | | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| --------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c09112303a5ba917.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c09112303a5ba917.verified.txt new file mode 100644 index 00000000..29bae175 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c09112303a5ba917.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c0c2de7f1515c0cd.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c0c2de7f1515c0cd.verified.txt new file mode 100644 index 00000000..9d0c566b --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c0c2de7f1515c0cd.verified.txt @@ -0,0 +1,30 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Paige | https://remington.info | +| | | | | | Aletha | https://isobel.info | +| | | | | | Pearline | https://johnathon.info | +| | | | | | Eleanora | http://jaeden.info | +| | | | | | Nikolas | https://daphney.net | +| | | | | | Oceane | http://clifton.com | +| | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | http://marina.com | Myles | http://nikko.name | +| | | | | | Rolando | http://nikko.name | +| | | | | | Pamela | https://aliza.net | +| | | | | | Marcella | http://helga.net | +| | | | | | Alisha | http://alyson.name | +| | | | | | Carmelo | http://michele.name | +| | | | | | Miles | https://freddie.com | +| | | | | | Kade | https://jaunita.biz | +| | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | Abner | http://tavares.info | +| | | | | | Johann | http://andres.net | +| | | | | | Jaquan | http://carey.org | +| | | | | | Arvel | http://mortimer.org | +| | | | | | Alicia | http://paula.com | +| | | | | | Heidi | http://letha.name | +| | | | | | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c1e0b71c5089be04.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c1e0b71c5089be04.verified.txt new file mode 100644 index 00000000..dc0eda89 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c1e0b71c5089be04.verified.txt @@ -0,0 +1,8 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------- | ------- | -------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Error | Error 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 | Alyson | https://carmelo.biz | +| | | | | | Michele | https://miles.net | +| | | | | | Freddie | http://kade.net | +| | | | | | Jaunita | http://marcelina.biz | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------- | ------- | -------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c210c606723a5bfe.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c210c606723a5bfe.verified.txt new file mode 100644 index 00000000..cede0bf7 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c210c606723a5bfe.verified.txt @@ -0,0 +1,23 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c23fde7528d04948.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c23fde7528d04948.verified.txt new file mode 100644 index 00000000..7cf5023f --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c23fde7528d04948.verified.txt @@ -0,0 +1,105 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Internal Branding Executive | 2.0.9 | Overwrite | | The SAS sensor is down, input the auxiliary sensor so we can input the SAS sensor! | You can't bypass the application without programming the solid state COM application! | https://efrain.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 | +| Legacy Creative Liaison | 0.4.6 | Expression | | The SMS system is down, back up the open-source system so we can back up the SMS system! | I'll connect the optical FTP program, that should program the FTP program! | | Candice | http://linnea.com | +| | | | | | | | Everardo | http://daryl.net | +| | | | | | | | Jerrod | http://laila.com | +| | | | | | | | Caleigh | https://adolfo.com | +| | | | | | | | Daisha | http://justine.biz | +| | | | | | | | Americo | http://tessie.org | +| | | | | | | | Howard | https://luis.info | +| Investor Creative Architect | 4.5.6 | Overwrite | | The PCI microchip is down, input the cross-platform microchip so we can input the PCI microchip! | If we quantify the transmitter, we can get to the XML transmitter through the optical XML transmitter! | | Selmer | https://jairo.info | +| | | | | | | | Juanita | http://holly.name | +| | | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | | Adalberto | https://sister.biz | +| | | | | | | | Gerald | https://vidal.com | +| | | | | | | | Lucio | http://clemmie.info | +| Global Optimization Architect | 4.8.0 | Expression | | 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://gaylord.name | Vida | https://theresia.biz | +| | | | | | | | Ransom | http://isom.com | +| | | | | | | | Anastasia | http://kamryn.info | +| | | | | | | | Marlene | https://cyril.name | +| | | | | | | | Zetta | http://pete.org | +| | | | | | | | Candida | https://craig.biz | +| | | | | | | | Timmothy | https://joanny.biz | +| Lead Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Regional Paradigm Assistant | 9.8.0 | Url | | If we input the transmitter, we can get to the HDD transmitter through the bluetooth HDD transmitter! | | | Jordan | https://kathryne.name | +| | | | | | | | Mayra | http://lance.name | +| | | | | | | | Jimmie | https://lorine.org | +| | | | | | | | Rebeka | https://malika.org | +| | | | | | | | Trinity | http://fritz.info | +| | | | | | | | Neha | https://marianne.name | +| | | | | | | | Colin | https://billie.biz | +| | | | | | | | Brielle | https://brennon.name | +| | | | | | | | Myriam | https://rosemary.name | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | Edmund | http://sadie.info | +| | | | | | | | Horacio | https://loraine.name | +| | | | | | | | Sandra | https://emil.info | +| | | | | | | | Dayana | https://leila.info | +| | | | | | | | Micah | http://darien.com | +| | | | | | | | Ethel | http://shakira.net | +| Dynamic Data Director | 8.6.8 | Overwrite | | | We need to back up the primary SMTP circuit! | https://timothy.info | Kirsten | http://madisyn.com | +| | | | | | | | Murray | https://destinee.com | +| | | | | | | | Emanuel | https://keely.info | +| | | | | | | | Obie | https://caleigh.net | +| | | | | | | | Albin | http://flavie.com | +| | | | | | | | Lavonne | http://kaitlyn.com | +| | | | | | | | Osborne | https://joesph.name | +| | | | | | | | Michael | https://kali.com | +| Investor Usability Producer | 9.7.6 | Url | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | Jett | https://randal.biz | +| | | | | | | | Leif | http://chaz.name | +| | | | | | | | Tristian | http://susie.com | +| | | | | | | | Carmelo | https://kariane.com | +| | | | | | | | Sofia | http://daphnee.name | +| | | | | | | | Nedra | http://orland.info | +| | | | | | | | Hilton | http://shany.info | +| Dynamic Program Associate | 5.9.7 | Expression | | | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Suzanne | http://ima.name | +| | | | | | | | Earnestine | http://nathanial.biz | +| | | | | | | | Connor | https://augustus.net | +| | | | | | | | Araceli | http://hailey.biz | +| | | | | | | | Janessa | https://craig.com | +| | | | | | | | Erica | http://kristin.org | +| | | | | | | | Alek | http://shany.biz | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| Corporate Tactics Analyst | 3.0.8 | Overwrite | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | Use the virtual RAM monitor, then you can override the virtual monitor! | | | Hildegard | http://conner.name | +| | | | | | | | 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 | +| | | | | | | | Irving | https://sydnie.org | +| Human Accounts Executive | 7.6.7 | Unknown | Use the auxiliary PNG interface, then you can generate the auxiliary interface! | | You can't connect the interface without backing up the optical SMTP interface! | http://kristin.net | Seamus | http://maybell.info | +| | | | | | | | Monserrat | http://katrine.name | +| | | | | | | | Abel | https://geovany.com | +| | | | | | | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| Lead Integration Engineer | 8.7.4 | Unknown | | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | http://jackeline.biz | Reanna | http://buck.net | +| | | | | | | | Christine | http://demarco.name | +| | | | | | | | Marge | http://astrid.net | +| | | | | | | | Charlene | http://rod.net | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c270240dad02ece8.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c270240dad02ece8.verified.txt new file mode 100644 index 00000000..7f86595e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c270240dad02ece8.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Future Integration Analyst | 9.0.4 | Expression | | | Abner | http://tavares.info | +| | | | | | Johann | http://andres.net | +| | | | | | Jaquan | http://carey.org | +| | | | | | Arvel | http://mortimer.org | +| | | | | | Alicia | http://paula.com | +| | | | | | Heidi | http://letha.name | +| | | | | | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Paige | https://remington.info | +| | | | | | Aletha | https://isobel.info | +| | | | | | Pearline | https://johnathon.info | +| | | | | | Eleanora | http://jaeden.info | +| | | | | | Nikolas | https://daphney.net | +| | | | | | Oceane | http://clifton.com | +| | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | http://marina.com | Myles | http://nikko.name | +| | | | | | Rolando | http://nikko.name | +| | | | | | Pamela | https://aliza.net | +| | | | | | Marcella | http://helga.net | +| | | | | | Alisha | http://alyson.name | +| | | | | | Carmelo | http://michele.name | +| | | | | | Miles | https://freddie.com | +| | | | | | Kade | https://jaunita.biz | +| | | | | | Marcelina | http://donna.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c28177905a50b512.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c28177905a50b512.verified.txt new file mode 100644 index 00000000..cb5e37ad --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c28177905a50b512.verified.txt @@ -0,0 +1,17 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | --------------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | --------------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | Unknown | 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 Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | --------------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c2f6bd6697b9a12f.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c2f6bd6697b9a12f.verified.txt new file mode 100644 index 00000000..53d88a69 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c2f6bd6697b9a12f.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Paige | https://remington.info | +| | | | | | Aletha | https://isobel.info | +| | | | | | Pearline | https://johnathon.info | +| | | | | | Eleanora | http://jaeden.info | +| | | | | | Nikolas | https://daphney.net | +| | | | | | Oceane | http://clifton.com | +| | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | http://marina.com | Myles | http://nikko.name | +| | | | | | Rolando | http://nikko.name | +| | | | | | Pamela | https://aliza.net | +| | | | | | Marcella | http://helga.net | +| | | | | | Alisha | http://alyson.name | +| | | | | | Carmelo | http://michele.name | +| | | | | | Miles | https://freddie.com | +| | | | | | Kade | https://jaunita.biz | +| | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | Abner | http://tavares.info | +| | | | | | Johann | http://andres.net | +| | | | | | Jaquan | http://carey.org | +| | | | | | Arvel | http://mortimer.org | +| | | | | | Alicia | http://paula.com | +| | | | | | Heidi | http://letha.name | +| | | | | | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c349bd2532e391c1.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c349bd2532e391c1.verified.txt new file mode 100644 index 00000000..0e58c7f1 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c349bd2532e391c1.verified.txt @@ -0,0 +1,113 @@ +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Product Usability Coordinator | 5.4.7 | Overwrite | The GB panel is down, synthesize the neural panel so we can synthesize the GB panel! | You can't copy the system without indexing the virtual XSS system! | If we override the hard drive, we can get to the RSS hard drive through the multi-byte RSS hard drive! | | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Direct Usability Analyst | 3.4.8 | Overwrite | hacking the protocol won't do anything, we need to bypass the back-end SDD protocol! | Try to quantify the EXE program, maybe it will quantify the auxiliary program! | The FTP program is down, override the digital program so we can override the FTP program! | https://maritza.com | | | +| Future Accounts Architect | 9.1.8 | Ignored | You can't bypass the firewall without indexing the multi-byte COM firewall! | | | https://fermin.biz | | | +| Dynamic Directives Officer | 5.8.8 | Overwrite | | parsing the program won't do anything, we need to synthesize the haptic IB program! | If we program the microchip, we can get to the SMS microchip through the auxiliary SMS microchip! | http://rafaela.net | | | +| Dynamic Accountability Engineer | 3.1.8 | Url | | Use the online RAM program, then you can generate the online program! | I'll back up the back-end JSON card, that should card the JSON card! | https://gerson.com | | | +| Principal Solutions Facilitator | 7.1.5 | Overwrite | | The RSS pixel is down, calculate the auxiliary pixel so we can calculate the RSS pixel! | | | | | +| Human Accounts Representative | 4.5.5 | Url | | | The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall! | https://darien.net | | | +| Internal Program Administrator | 0.3.5 | Expression | We need to navigate the multi-byte PNG application! | The SMS hard drive is down, parse the mobile hard drive so we can parse the SMS hard drive! | The HTTP bandwidth is down, synthesize the 1080p bandwidth so we can synthesize the HTTP bandwidth! | http://viviane.com | | | +| District Configuration Administrator | 8.4.4 | Url | | The XML transmitter is down, calculate the auxiliary transmitter so we can calculate the XML transmitter! | | https://david.name | | | +| National Directives Analyst | 8.2.7 | Overwrite | We need to compress the primary GB array! | | Use the mobile SCSI bus, then you can program the mobile bus! | | | | +| Regional Configuration Engineer | 7.3.8 | Expression | Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter! | You can't reboot the matrix without navigating the optical SDD matrix! | | http://roman.org | | | +| International Brand Strategist | 3.9.3 | Ignored | | | I'll hack the optical COM alarm, that should alarm the COM alarm! | https://rowena.info | | | +| Senior Optimization Assistant | 3.6.0 | Ignored | | overriding the pixel won't do anything, we need to copy the optical JSON pixel! | Try to compress the SMS bus, maybe it will compress the bluetooth bus! | http://akeem.info | | | +| Regional Solutions Supervisor | 1.8.2 | Ignored | You can't parse the system without compressing the haptic GB system! | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | https://lance.net | | | +| Lead Factors Designer | 0.9.2 | Url | You can't quantify the bandwidth without calculating the online RAM bandwidth! | | | | | | +| Dynamic Creative Designer | 7.5.8 | Expression | The XML system is down, hack the bluetooth system so we can hack the XML system! | | The GB program is down, program the back-end program so we can program the GB program! | http://daniela.name | | | +| District Data Executive | 9.4.3 | Expression | | The FTP transmitter is down, compress the auxiliary transmitter so we can compress the FTP transmitter! | | | | | +| Product Tactics Technician | 3.8.3 | Overwrite | If we index the protocol, we can get to the FTP protocol through the online FTP protocol! | Try to synthesize the SDD hard drive, maybe it will synthesize the bluetooth hard drive! | | https://jewel.name | | | +| Principal Branding Assistant | 8.2.6 | Expression | 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! | We need to hack the auxiliary COM hard drive! | | | | +| Dynamic Quality Director | 4.9.9 | Unknown | | | | http://jesse.com | | | +| Legacy Interactions Analyst | 3.0.8 | Url | hacking the hard drive won't do anything, we need to generate the open-source RSS hard drive! | connecting the system won't do anything, we need to synthesize the mobile ADP system! | | | | | +| Customer Assurance Officer | 0.3.1 | Ignored | I'll navigate the digital CSS sensor, that should sensor the CSS sensor! | | | https://clementine.info | | | +| Future Marketing Technician | 7.6.7 | Unknown | | overriding the firewall won't do anything, we need to reboot the open-source COM firewall! | | http://abbey.biz | | | +| International Data Associate | 6.4.8 | Unknown | If we navigate the array, we can get to the SQL array through the 1080p SQL array! | You can't generate the bandwidth without parsing the mobile EXE bandwidth! | | | | | +| Corporate Quality Planner | 6.6.3 | Ignored | The IB bus is down, bypass the bluetooth bus so we can bypass the IB bus! | You can't transmit the sensor without connecting the digital THX sensor! | The PCI driver is down, parse the neural driver so we can parse the PCI driver! | | | | +| Corporate Implementation Technician | 2.8.4 | Url | | If we compress the protocol, we can get to the COM protocol through the mobile COM protocol! | Use the multi-byte SMTP program, then you can synthesize the multi-byte program! | | | | +| District Implementation Orchestrator | 0.1.4 | Url | I'll synthesize the cross-platform CSS panel, that should panel the CSS panel! | You can't navigate the panel without connecting the optical PNG panel! | | | | | +| Lead Intranet Director | 9.2.4 | Url | | You can't parse the bandwidth without transmitting the open-source USB bandwidth! | If we parse the driver, we can get to the GB driver through the neural GB driver! | https://dane.name | | | +| Dynamic Group Producer | 5.9.5 | Unknown | We need to hack the multi-byte EXE bus! | If we connect the program, we can get to the SQL program through the digital SQL program! | | https://sonny.com | | | +| Future Accountability Officer | 2.5.3 | Unknown | | | | http://henderson.biz | | | +| Senior Communications Director | 3.1.0 | Expression | | | I'll quantify the neural SCSI port, that should port the SCSI port! | | | | +| Principal Intranet Manager | 3.8.8 | Expression | | | | | | | +| Direct Creative Planner | 9.7.2 | Unknown | Try to connect the TCP circuit, maybe it will connect the back-end circuit! | synthesizing the circuit won't do anything, we need to override the neural XML circuit! | bypassing the matrix won't do anything, we need to copy the wireless PCI matrix! | | | | +| International Data Coordinator | 1.7.7 | Unknown | | connecting the system won't do anything, we need to navigate the solid state HDD system! | | | | | +| Dynamic Division Agent | 4.2.8 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | https://camilla.info | | | +| Internal Data Designer | 9.5.2 | Unknown | | hacking the card won't do anything, we need to hack the neural COM card! | The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive! | https://liana.com | | | +| Customer Optimization Engineer | 3.9.7 | Ignored | The JBOD hard drive is down, copy the wireless hard drive so we can copy the JBOD hard drive! | If we synthesize the bus, we can get to the EXE bus through the online EXE bus! | We need to override the auxiliary AGP firewall! | | | | +| Forward Division Strategist | 5.7.1 | Unknown | You can't reboot the program without transmitting the mobile SMTP program! | The SCSI circuit is down, index the open-source circuit so we can index the SCSI circuit! | Use the solid state HTTP microchip, then you can back up the solid state microchip! | https://esperanza.name | | | +| Product Directives Engineer | 8.2.3 | Unknown | transmitting the bus won't do anything, we need to navigate the online IB bus! | | We need to bypass the wireless PNG bus! | | | | +| Future Configuration Officer | 7.6.0 | Expression | You can't compress the alarm without parsing the optical JBOD alarm! | 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! | | | | +| Senior Integration Engineer | 4.4.3 | Url | | | | | | | +| Central Infrastructure Agent | 6.1.6 | Expression | | | You can't quantify the program without overriding the online SDD program! | | | | +| Forward Data Administrator | 9.0.6 | Overwrite | If we navigate the pixel, we can get to the SCSI pixel through the bluetooth SCSI pixel! | I'll program the multi-byte AI transmitter, that should transmitter the AI transmitter! | | https://serenity.info | | | +| Future Solutions Officer | 3.3.5 | Unknown | You can't override the hard drive without bypassing the mobile TCP hard drive! | | Use the online IB protocol, then you can back up the online protocol! | | | | +| Direct Factors Representative | 0.5.2 | Overwrite | You can't override the bandwidth without navigating the auxiliary ADP bandwidth! | backing up the system won't do anything, we need to synthesize the digital AI system! | | | | | +| Forward Web Assistant | 5.9.6 | 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! | The SSL application is down, reboot the bluetooth application so we can reboot the SSL application! | | | | +| Principal Accounts Officer | 2.1.8 | Overwrite | 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 Configuration Coordinator | 2.7.5 | Unknown | connecting the panel won't do anything, we need to bypass the wireless AGP panel! | | | | | | +| District Intranet Engineer | 7.5.5 | Unknown | 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! | | | | | +| Product Assurance Facilitator | 3.5.9 | Ignored | | | | | | | +| Forward Infrastructure Developer | 7.5.6 | Unknown | Try to override the SCSI microchip, maybe it will override the haptic microchip! | programming the monitor won't do anything, we need to parse the online XML monitor! | You can't index the circuit without copying the auxiliary RSS circuit! | | | | +| Global Markets Director | 3.4.9 | Unknown | The RAM card is down, override the open-source card so we can override the RAM card! | | | | | | +| Legacy Research Associate | 9.9.5 | Url | | We need to navigate the bluetooth RAM bus! | | https://hildegard.name | | | +| Direct Data Designer | 8.4.8 | Unknown | | | We need to transmit the virtual JSON bus! | | | | +| Forward Integration Assistant | 4.8.5 | Expression | | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| Human Response Executive | 6.4.4 | Unknown | If we transmit the matrix, we can get to the SDD matrix through the mobile SDD matrix! | | | https://maida.org | | | +| Regional Security Engineer | 5.8.4 | Unknown | | | I'll hack the cross-platform SSL array, that should array the SSL array! | | | | +| Human Program Analyst | 3.1.8 | Expression | If we back up the application, we can get to the USB application through the cross-platform USB application! | | | http://efrain.org | | | +| Corporate Tactics Strategist | 9.9.9 | Ignored | | copying the alarm won't do anything, we need to index the open-source TCP alarm! | generating the matrix won't do anything, we need to parse the solid state GB matrix! | | | | +| Forward Creative Developer | 9.6.7 | Unknown | | I'll transmit the online SSL feed, that should feed the SSL feed! | We need to synthesize the cross-platform SMS circuit! | http://pearline.com | | | +| Corporate Identity Coordinator | 9.8.3 | Url | | If we navigate the bus, we can get to the HDD bus through the primary HDD bus! | | | | | +| Human Division Agent | 2.2.7 | Expression | | 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 Quality Analyst | 0.9.5 | Unknown | We need to index the optical HTTP application! | 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! | | | | +| Human Configuration Assistant | 0.1.1 | Overwrite | I'll bypass the solid state SMS system, that should system the SMS system! | | parsing the driver won't do anything, we need to program the auxiliary IB driver! | http://frederick.com | | | +| Senior Identity Designer | 9.9.3 | Ignored | | | You can't navigate the bandwidth without compressing the open-source AI bandwidth! | https://devyn.info | | | +| Forward Optimization Architect | 8.7.9 | Overwrite | | | backing up the feed won't do anything, we need to compress the haptic SMTP feed! | https://kyle.net | | | +| 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 Optimization Coordinator | 6.5.5 | Ignored | | | If we reboot the system, we can get to the SQL system through the mobile SQL system! | http://antoinette.org | | | +| Regional Communications Officer | 3.3.2 | Overwrite | | We need to calculate the redundant THX feed! | | https://cortez.net | | | +| Senior Metrics Assistant | 8.7.4 | Unknown | | 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! | | | | +| Direct Functionality Representative | 9.9.2 | Ignored | You can't navigate the capacitor without bypassing the multi-byte JSON capacitor! | Try to quantify the COM feed, maybe it will quantify the multi-byte feed! | We need to bypass the multi-byte ADP panel! | | | | +| Product Infrastructure Supervisor | 8.1.1 | Ignored | | | | https://merle.com | | | +| Corporate Data Strategist | 9.0.0 | Url | | | Try to transmit the PNG capacitor, maybe it will transmit the solid state capacitor! | http://eli.net | | | +| Internal Factors Designer | 1.9.6 | Url | | | | | | | +| Future Interactions Facilitator | 7.6.9 | Expression | | If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit! | | | | | +| Dynamic Functionality Strategist | 5.8.0 | Url | Use the digital HTTP card, then you can reboot the digital card! | The CSS port is down, quantify the virtual port so we can quantify the CSS port! | | http://filiberto.net | | | +| District Optimization Manager | 4.0.4 | Ignored | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | Try to program the CSS circuit, maybe it will program the auxiliary circuit! | | | | +| Forward Factors Director | 5.7.8 | Expression | | | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | | | +| Central Marketing Orchestrator | 3.3.1 | Overwrite | | Try to parse the IB driver, maybe it will parse the 1080p driver! | We need to connect the bluetooth RSS application! | https://brice.net | | | +| National Functionality Orchestrator | 3.5.0 | Overwrite | If we quantify the array, we can get to the RAM array through the virtual RAM array! | overriding the card won't do anything, we need to hack the auxiliary HTTP card! | If we quantify the feed, we can get to the RAM feed through the neural RAM feed! | https://gina.name | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| Corporate Group Planner | 9.2.2 | Ignored | | | We need to reboot the virtual RSS alarm! | | | | +| Investor Accountability Officer | 2.4.3 | Unknown | | Use the digital XSS hard drive, then you can compress the digital hard drive! | You can't generate the card without synthesizing the bluetooth PNG card! | | | | +| Corporate Infrastructure Executive | 4.8.1 | Overwrite | | | Try to index the FTP transmitter, maybe it will index the bluetooth transmitter! | https://justice.info | | | +| District Branding Analyst | 1.9.5 | Unknown | | | | https://paula.net | | | +| Regional Implementation Technician | 8.8.3 | Ignored | | | | | | | +| Dynamic Factors Facilitator | 6.5.2 | Unknown | | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | | http://magnolia.com | | | +| Internal Division Agent | 2.4.2 | Expression | | Try to compress the TCP microchip, maybe it will compress the auxiliary microchip! | | | | | +| Forward Communications Engineer | 4.5.2 | Overwrite | Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor! | | | | | | +| Legacy Metrics Planner | 9.5.0 | Ignored | 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! | | | | +| District Implementation Executive | 3.9.4 | Overwrite | | | | http://fae.org | | | +| Central Creative Analyst | 3.6.4 | Overwrite | | programming the driver won't do anything, we need to calculate the primary SMTP driver! | | | | | +| Legacy Infrastructure Producer | 1.1.2 | Unknown | | If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit! | | | | | +| Central Marketing Assistant | 9.5.8 | Overwrite | I'll navigate the redundant RAM capacitor, that should capacitor the RAM capacitor! | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | http://julia.biz | | | +| Dynamic Security Developer | 0.8.7 | Url | You can't back up the array without parsing the haptic CSS array! | | | https://adan.net | | | +| Direct Web Orchestrator | 1.9.1 | Overwrite | You can't copy the alarm without synthesizing the 1080p IB alarm! | | parsing the card won't do anything, we need to synthesize the online SQL card! | https://kade.com | | | +| Dynamic Applications Producer | 0.4.7 | Url | Try to input the AI sensor, maybe it will input the digital sensor! | If we program the array, we can get to the JBOD array through the primary JBOD array! | | http://horace.com | | | +| Direct Mobility Designer | 7.7.3 | Ignored | | | | http://geovanny.info | | | +| International Accounts Liaison | 5.6.7 | Expression | We need to program the virtual SCSI circuit! | We need to generate the auxiliary GB hard drive! | transmitting the port won't do anything, we need to override the haptic JSON port! | | | | +| Human Communications Supervisor | 6.0.1 | Overwrite | Use the cross-platform SAS feed, then you can bypass the cross-platform feed! | | I'll override the neural XML application, that should application the XML application! | http://ethan.name | | | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c36d563747c1729f.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c36d563747c1729f.verified.txt new file mode 100644 index 00000000..688fe3af --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c36d563747c1729f.verified.txt @@ -0,0 +1,110 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | -------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | -------------------- | --------- | ---------------------- | +| Direct Accountability Assistant | 2.2.8 | Url | bypassing the protocol won't do anything, we need to compress the primary HTTP protocol! | | http://natasha.info | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Forward Marketing Orchestrator | 1.6.4 | Overwrite | I'll connect the primary SQL sensor, that should sensor the SQL sensor! | The SMTP driver is down, bypass the mobile driver so we can bypass the SMTP driver! | https://lukas.com | | | +| Global Division Designer | 8.2.7 | Expression | Try to program the EXE hard drive, maybe it will program the virtual hard drive! | | https://pamela.name | | | +| National Intranet Technician | 8.0.0 | Overwrite | | | | | | +| Central Tactics Engineer | 6.3.5 | Unknown | connecting the bandwidth won't do anything, we need to bypass the multi-byte AI bandwidth! | | | | | +| Dynamic Quality Analyst | 0.9.5 | Overwrite | We need to index the optical HTTP application! | I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor! | | | | +| Central Identity Analyst | 8.9.6 | Expression | | | http://leta.org | | | +| Dynamic Division Consultant | 4.8.7 | Overwrite | Use the multi-byte IB microchip, then you can connect the multi-byte microchip! | backing up the feed won't do anything, we need to compress the haptic SMTP feed! | http://raquel.net | | | +| Dynamic Accountability Analyst | 4.9.7 | Overwrite | | | https://jaron.info | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | | | +| Regional Factors Designer | 7.4.1 | Overwrite | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | | | | +| National Research Facilitator | 6.0.6 | Expression | Use the primary EXE array, then you can navigate the primary array! | | | | | +| Principal Markets Designer | 3.8.8 | Overwrite | overriding the transmitter won't do anything, we need to generate the cross-platform SCSI transmitter! | | | | | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | | | +| Chief Factors Supervisor | 5.2.2 | Expression | | | http://helga.com | | | +| Human Directives Specialist | 4.3.4 | Unknown | Use the digital XSS hard drive, then you can compress the digital hard drive! | You can't generate the card without synthesizing the bluetooth PNG card! | | | | +| Human Optimization Producer | 5.0.9 | Overwrite | | | | | | +| Legacy Directives Officer | 2.4.4 | Url | | The PCI program is down, hack the multi-byte program so we can hack the PCI program! | http://sedrick.biz | | | +| Direct Data Orchestrator | 2.4.5 | Expression | | Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor! | | | | +| Human Optimization Facilitator | 7.4.8 | Overwrite | 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! | https://cooper.name | | | +| Corporate Marketing Assistant | 8.7.9 | Url | | You can't program the firewall without connecting the wireless AI firewall! | http://arlene.biz | | | +| Senior Security Consultant | 2.7.5 | Unknown | | | http://adelbert.biz | | | +| Human Quality Facilitator | 1.2.0 | Expression | We need to copy the online THX firewall! | You can't calculate the application without calculating the auxiliary AI application! | | | | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | | | +| Chief Applications Facilitator | 7.7.6 | Overwrite | | parsing the card won't do anything, we need to synthesize the online SQL card! | | | | +| Senior Optimization Assistant | 3.6.0 | Overwrite | | overriding the pixel won't do anything, we need to copy the optical JSON pixel! | http://akeem.info | | | +| Lead Branding Developer | 4.1.5 | Url | | | http://abe.com | | | +| Customer Functionality Consultant | 5.5.1 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | http://terence.com | | | +| National Solutions Associate | 9.1.2 | Overwrite | | | | | | +| Legacy Directives Supervisor | 9.6.2 | Url | The PNG circuit is down, back up the online circuit so we can back up the PNG circuit! | | | | | +| Product Assurance Technician | 0.8.2 | Overwrite | | | https://steve.info | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Chief Division Producer | 2.3.9 | Overwrite | | | | | | +| Chief Intranet Facilitator | 6.6.1 | Expression | | | https://rosalind.net | | | +| National Creative Coordinator | 5.9.5 | Expression | | | https://bobbie.info | | | +| Central Web Assistant | 4.2.1 | Unknown | | Use the wireless ADP array, then you can input the wireless array! | https://verda.net | | | +| 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 | | | +| Direct Mobility Designer | 7.7.3 | Expression | | | http://geovanny.info | | | +| Internal Directives Designer | 0.4.8 | Url | The EXE protocol is down, reboot the redundant protocol so we can reboot the EXE protocol! | | | | | +| Dynamic Accountability Strategist | 7.0.9 | Unknown | You can't bypass the sensor without transmitting the neural JSON sensor! | | | | | +| Human Program Technician | 2.8.4 | Unknown | | | http://tomasa.info | | | +| Regional Operations Coordinator | 0.2.5 | Unknown | | I'll hack the cross-platform SSL array, that should array the SSL array! | http://ena.com | | | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | | | +| Future Accounts Architect | 9.1.8 | Url | You can't bypass the firewall without indexing the multi-byte COM firewall! | | https://fermin.biz | | | +| Human Operations Assistant | 0.7.2 | Overwrite | Use the haptic USB driver, then you can override the haptic driver! | | http://camila.net | | | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| Forward Intranet Engineer | 2.5.9 | Expression | The RSS sensor is down, input the 1080p sensor so we can input the RSS sensor! | Try to index the ADP port, maybe it will index the auxiliary port! | | | | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | | | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | | | +| District Operations Director | 0.6.3 | Url | | We need to program the cross-platform FTP hard drive! | https://dejah.net | | | +| Forward Configuration Supervisor | 9.0.8 | Overwrite | You can't program the protocol without overriding the primary IB protocol! | | http://quinn.name | | | +| Investor Implementation Technician | 2.7.9 | Unknown | | | http://crystal.name | | | +| Investor Creative Architect | 8.2.4 | Unknown | | | | | | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| Corporate Tactics Director | 2.5.7 | Url | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | http://marcos.info | | | +| International Intranet Planner | 6.4.6 | Url | The IB interface is down, program the redundant interface so we can program the IB interface! | | https://lenna.com | | | +| Senior Brand Analyst | 2.5.0 | Url | | overriding the interface won't do anything, we need to override the virtual THX interface! | | | | +| Dynamic Integration Architect | 1.6.3 | Overwrite | | The RAM feed is down, copy the neural feed so we can copy the RAM feed! | | | | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | http://hanna.net | | | +| Dynamic Factors Facilitator | 6.5.2 | Expression | | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | http://magnolia.com | | | +| Principal Accounts Coordinator | 1.0.4 | Overwrite | | I'll connect the digital JSON bus, that should bus the JSON bus! | http://rene.com | | | +| Corporate Directives Planner | 8.8.5 | Unknown | The CSS bus is down, generate the 1080p bus so we can generate the CSS bus! | We need to back up the 1080p SMTP feed! | | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Forward Functionality Developer | 5.1.1 | Url | | | | | | +| International Functionality Agent | 8.7.6 | Unknown | | If we hack the card, we can get to the JBOD card through the optical JBOD card! | http://jalyn.org | | | +| Senior Factors Administrator | 1.6.1 | Expression | I'll calculate the solid state ADP panel, that should panel the ADP panel! | If we generate the circuit, we can get to the XSS circuit through the primary XSS circuit! | | | | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | | | +| International Quality Director | 0.3.8 | Expression | | | | | | +| National Communications Orchestrator | 4.5.1 | Unknown | The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit! | | | | | +| Global Program Representative | 5.1.0 | Url | | If we back up the monitor, we can get to the PCI monitor through the virtual PCI monitor! | | | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | | | +| Human Group Designer | 9.9.1 | Expression | Use the haptic XSS application, then you can synthesize the haptic application! | If we transmit the hard drive, we can get to the AGP hard drive through the bluetooth AGP hard drive! | http://jodie.org | | | +| Investor Interactions Liaison | 4.4.9 | Overwrite | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | | | | +| Product Creative Facilitator | 8.4.6 | Unknown | 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://juliana.net | | | +| Direct Assurance Strategist | 1.3.7 | Expression | The RSS firewall is down, hack the neural firewall so we can hack the RSS firewall! | | | | | +| Lead Usability Assistant | 1.3.4 | Overwrite | quantifying the matrix won't do anything, we need to synthesize the wireless PCI matrix! | Use the solid state SQL firewall, then you can connect the solid state firewall! | https://duane.info | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Human Directives Engineer | 5.3.9 | Url | | | | | | +| National Applications Designer | 6.4.9 | Expression | | Use the back-end SMS feed, then you can program the back-end feed! | | | | +| Global Mobility Facilitator | 9.5.8 | Expression | | | | | | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | -------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c3f260f80d604734.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c3f260f80d604734.verified.txt new file mode 100644 index 00000000..f1e278f3 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c3f260f80d604734.verified.txt @@ -0,0 +1,145 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| Internal Solutions Planner | 1.3.8 | Ignored | | The COM application is down, quantify the auxiliary application so we can quantify the COM application! | | Nyah | http://oliver.com | +| | | | | | | Ettie | http://lonny.net | +| | | | | | | Onie | https://cassie.biz | +| | | | | | | Solon | https://buck.biz | +| | | | | | | Taryn | http://hilton.com | +| | | | | | | Isabel | http://rogers.net | +| | | | | | | Bertrand | http://annetta.org | +| | | | | | | Remington | https://efrain.info | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 Brand Associate | 7.6.8 | Ignored | | | https://lauriane.com | Devin | https://ramona.info | +| | | | | | | Alice | http://laverne.info | +| | | | | | | Layne | https://brooks.name | +| | | | | | | Kaitlyn | http://serenity.biz | +| National Creative Engineer | 4.0.0 | Ignored | You can't parse the alarm without overriding the haptic SMTP alarm! | | | Candida | https://craig.biz | +| | | | | | | Timmothy | https://joanny.biz | +| | | | | | | Alfonzo | http://dorothea.org | +| | | | | | | 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 | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Legacy Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Regional Mobility Manager | 2.7.0 | Ignored | | | http://gianni.info | Alvina | http://elouise.name | +| | | | | | | Ron | http://brown.org | +| | | | | | | Cordia | http://ericka.name | +| | | | | | | Eugene | http://rashad.info | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | +| Forward Directives Supervisor | 8.7.6 | Ignored | | The SSL microchip is down, hack the optical microchip so we can hack the SSL microchip! | http://shaun.org | Jadon | https://amelia.biz | +| | | | | | | Toni | http://angie.name | +| | | | | | | Ardella | http://melissa.net | +| | | | | | | Sandra | http://pearline.org | +| | | | | | | Noble | https://dusty.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c44a76835511ec47.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c44a76835511ec47.verified.txt new file mode 100644 index 00000000..52558874 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c44a76835511ec47.verified.txt @@ -0,0 +1,39 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c505fd137b3d8a72.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c505fd137b3d8a72.verified.txt new file mode 100644 index 00000000..8e5afdeb --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c505fd137b3d8a72.verified.txt @@ -0,0 +1,66 @@ +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | | | +| Regional Directives Supervisor | 4.9.8 | Ignored | Try to reboot the THX hard drive, maybe it will reboot the open-source hard drive! | Use the primary GB driver, then you can generate the primary driver! | https://malcolm.net | | | +| Dynamic Optimization Director | 3.4.6 | Ignored | The PNG protocol is down, index the digital protocol so we can index the PNG protocol! | I'll transmit the online SSL feed, that should feed the SSL feed! | https://maximilian.org | | | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | | | +| Investor Intranet Producer | 5.4.1 | Ignored | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | http://hyman.org | | | +| National Directives Analyst | 8.2.7 | Ignored | We need to compress the primary GB array! | | | | | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | | | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | | | +| International Data Representative | 3.5.7 | Ignored | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | http://dakota.com | | | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c55cbc438e7c1f61.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c55cbc438e7c1f61.verified.txt new file mode 100644 index 00000000..8338c366 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c55cbc438e7c1f61.verified.txt @@ -0,0 +1,8 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Judson | https://wilson.net | +| | | | | Guadalupe | http://otho.info | +| | | | | General | https://skylar.name | +| | | | | Haylie | http://audreanne.info | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c5ab4efc721a4aa0.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c5ab4efc721a4aa0.verified.txt new file mode 100644 index 00000000..dd90c07a --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c5ab4efc721a4aa0.verified.txt @@ -0,0 +1,146 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ---------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ---------------------- | --------- | ---------------------- | +| Direct Accountability Assistant | 2.2.8 | Url | bypassing the protocol won't do anything, we need to compress the primary HTTP protocol! | | http://natasha.info | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Global Security Coordinator | 1.7.9 | Ignored | | | https://carol.info | | | +| Forward Marketing Orchestrator | 1.6.4 | Overwrite | I'll connect the primary SQL sensor, that should sensor the SQL sensor! | The SMTP driver is down, bypass the mobile driver so we can bypass the SMTP driver! | https://lukas.com | | | +| Regional Factors Designer | 7.4.1 | Overwrite | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | | | | +| National Intranet Technician | 8.0.0 | Overwrite | | | | | | +| Dynamic Factors Facilitator | 6.5.2 | Expression | | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | http://magnolia.com | | | +| Chief Applications Facilitator | 7.7.6 | Overwrite | | parsing the card won't do anything, we need to synthesize the online SQL card! | | | | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | http://hanna.net | | | +| Dynamic Division Consultant | 4.8.7 | Overwrite | Use the multi-byte IB microchip, then you can connect the multi-byte microchip! | backing up the feed won't do anything, we need to compress the haptic SMTP feed! | http://raquel.net | | | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | | | +| Investor Intranet Producer | 5.4.1 | Ignored | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | http://hyman.org | | | +| Global Division Designer | 8.2.7 | Expression | Try to program the EXE hard drive, maybe it will program the virtual hard drive! | | https://pamela.name | | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | | | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Human Response Coordinator | 2.9.7 | Ignored | | | http://ruth.org | | | +| Human Communications Supervisor | 6.0.1 | Ignored | Use the cross-platform SAS feed, then you can bypass the cross-platform feed! | | http://ethan.name | | | +| National Applications Designer | 6.4.9 | Expression | | Use the back-end SMS feed, then you can program the back-end feed! | | | | +| Human Group Designer | 9.9.1 | Expression | Use the haptic XSS application, then you can synthesize the haptic application! | If we transmit the hard drive, we can get to the AGP hard drive through the bluetooth AGP hard drive! | http://jodie.org | | | +| International Data Representative | 3.5.7 | Ignored | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | http://dakota.com | | | +| National Creative Assistant | 4.9.0 | Ignored | | If we navigate the pixel, we can get to the SCSI pixel through the bluetooth SCSI pixel! | https://michelle.org | | | +| Direct Assurance Strategist | 1.3.7 | Expression | The RSS firewall is down, hack the neural firewall so we can hack the RSS firewall! | | | | | +| Regional Directives Supervisor | 4.9.8 | Ignored | Try to reboot the THX hard drive, maybe it will reboot the open-source hard drive! | Use the primary GB driver, then you can generate the primary driver! | https://malcolm.net | | | +| Global Mobility Facilitator | 9.5.8 | Expression | | | | | | +| Principal Markets Designer | 3.8.8 | Overwrite | overriding the transmitter won't do anything, we need to generate the cross-platform SCSI transmitter! | | | | | +| Investor Research Manager | 6.3.1 | Ignored | | | | | | +| Human Optimization Producer | 5.0.9 | Overwrite | | | | | | +| Product Assurance Technician | 0.8.2 | Overwrite | | | https://steve.info | | | +| Direct Data Orchestrator | 2.4.5 | Expression | | Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor! | | | | +| Human Optimization Facilitator | 7.4.8 | Overwrite | 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! | https://cooper.name | | | +| Global Program Representative | 5.1.0 | Url | | If we back up the monitor, we can get to the PCI monitor through the virtual PCI monitor! | | | | +| Forward Functionality Developer | 5.1.1 | Url | | | | | | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Central Identity Analyst | 8.9.6 | Expression | | | http://leta.org | | | +| Corporate Marketing Assistant | 8.7.9 | Url | | You can't program the firewall without connecting the wireless AI firewall! | http://arlene.biz | | | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | | | +| National Research Facilitator | 6.0.6 | Expression | Use the primary EXE array, then you can navigate the primary array! | | | | | +| Direct Mobility Designer | 7.7.3 | Expression | | | http://geovanny.info | | | +| Investor Creative Architect | 8.2.4 | Unknown | | | | | | +| Legacy Directives Supervisor | 9.6.2 | Url | The PNG circuit is down, back up the online circuit so we can back up the PNG circuit! | | | | | +| Human Directives Specialist | 4.3.4 | Unknown | Use the digital XSS hard drive, then you can compress the digital hard drive! | You can't generate the card without synthesizing the bluetooth PNG card! | | | | +| Chief Intranet Facilitator | 6.6.1 | Expression | | | https://rosalind.net | | | +| Central Web Assistant | 4.2.1 | Unknown | | Use the wireless ADP array, then you can input the wireless array! | https://verda.net | | | +| Dynamic Accountability Strategist | 7.0.9 | Unknown | You can't bypass the sensor without transmitting the neural JSON sensor! | | | | | +| Corporate Data Strategist | 9.0.0 | Ignored | | | http://eli.net | | | +| Senior Optimization Assistant | 3.6.0 | Overwrite | | overriding the pixel won't do anything, we need to copy the optical JSON pixel! | http://akeem.info | | | +| Senior Security Consultant | 2.7.5 | Unknown | | | http://adelbert.biz | | | +| Legacy Directives Officer | 2.4.4 | Url | | The PCI program is down, hack the multi-byte program so we can hack the PCI program! | http://sedrick.biz | | | +| Investor Interactions Liaison | 4.4.9 | Overwrite | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | | | | +| Senior Brand Analyst | 2.5.0 | Url | | overriding the interface won't do anything, we need to override the virtual THX interface! | | | | +| Corporate Directives Planner | 8.8.5 | Unknown | The CSS bus is down, generate the 1080p bus so we can generate the CSS bus! | We need to back up the 1080p SMTP feed! | | | | +| Lead Usability Assistant | 1.3.4 | Overwrite | quantifying the matrix won't do anything, we need to synthesize the wireless PCI matrix! | Use the solid state SQL firewall, then you can connect the solid state firewall! | https://duane.info | | | +| Investor Implementation Technician | 2.7.9 | Unknown | | | http://crystal.name | | | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | | | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | | | +| Corporate Tactics Director | 2.5.7 | Url | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | http://marcos.info | | | +| Regional Operations Coordinator | 0.2.5 | Unknown | | I'll hack the cross-platform SSL array, that should array the SSL array! | http://ena.com | | | +| Customer Security Representative | 3.7.3 | Ignored | The GB circuit is down, hack the redundant circuit so we can hack the GB circuit! | | https://jalon.net | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | | | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | | | +| Forward Intranet Engineer | 2.5.9 | Expression | The RSS sensor is down, input the 1080p sensor so we can input the RSS sensor! | Try to index the ADP port, maybe it will index the auxiliary port! | | | | +| Future Accounts Architect | 9.1.8 | Url | You can't bypass the firewall without indexing the multi-byte COM firewall! | | https://fermin.biz | | | +| Senior Factors Administrator | 1.6.1 | Expression | I'll calculate the solid state ADP panel, that should panel the ADP panel! | If we generate the circuit, we can get to the XSS circuit through the primary XSS circuit! | | | | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | | | +| Future Accounts Agent | 0.9.7 | Ignored | | | | | | +| Chief Division Producer | 2.3.9 | Overwrite | | | | | | +| Regional Paradigm Manager | 8.9.8 | Ignored | | If we transmit the application, we can get to the SMS application through the primary SMS application! | https://eileen.name | | | +| District Operations Director | 0.6.3 | Url | | We need to program the cross-platform FTP hard drive! | https://dejah.net | | | +| Customer Metrics Developer | 2.2.9 | Ignored | | | | | | +| Corporate Accounts Technician | 5.8.0 | Ignored | | | https://isobel.org | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| National Creative Coordinator | 5.9.5 | Expression | | | https://bobbie.info | | | +| International Intranet Planner | 6.4.6 | Url | The IB interface is down, program the redundant interface so we can program the IB interface! | | https://lenna.com | | | +| 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 | | | +| Dynamic Quality Analyst | 0.9.5 | Overwrite | We need to index the optical HTTP application! | I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor! | | | | +| National Communications Orchestrator | 4.5.1 | Unknown | The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit! | | | | | +| National Directives Analyst | 8.2.7 | Ignored | We need to compress the primary GB array! | | | | | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | | | +| Human Quality Facilitator | 1.2.0 | Expression | We need to copy the online THX firewall! | You can't calculate the application without calculating the auxiliary AI application! | | | | +| Forward Configuration Supervisor | 9.0.8 | Overwrite | You can't program the protocol without overriding the primary IB protocol! | | http://quinn.name | | | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | | | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| Dynamic Optimization Director | 3.4.6 | Ignored | The PNG protocol is down, index the digital protocol so we can index the PNG protocol! | I'll transmit the online SSL feed, that should feed the SSL feed! | https://maximilian.org | | | +| National Solutions Associate | 9.1.2 | Overwrite | | | | | | +| Human Program Technician | 2.8.4 | Unknown | | | http://tomasa.info | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| Dynamic Integration Architect | 1.6.3 | Overwrite | | The RAM feed is down, copy the neural feed so we can copy the RAM feed! | | | | +| Human Directives Engineer | 5.3.9 | Url | | | | | | +| Central Tactics Engineer | 6.3.5 | Unknown | connecting the bandwidth won't do anything, we need to bypass the multi-byte AI bandwidth! | | | | | +| Human Operations Assistant | 0.7.2 | Overwrite | Use the haptic USB driver, then you can override the haptic driver! | | http://camila.net | | | +| Customer Functionality Consultant | 5.5.1 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | http://terence.com | | | +| Product Creative Facilitator | 8.4.6 | Unknown | 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://juliana.net | | | +| Chief Factors Supervisor | 5.2.2 | Expression | | | http://helga.com | | | +| Dynamic Branding Facilitator | 8.3.2 | Ignored | | | | | | +| Principal Accounts Coordinator | 1.0.4 | Overwrite | | I'll connect the digital JSON bus, that should bus the JSON bus! | http://rene.com | | | +| Dynamic Accountability Analyst | 4.9.7 | Overwrite | | | https://jaron.info | | | +| International Functionality Agent | 8.7.6 | Unknown | | If we hack the card, we can get to the JBOD card through the optical JBOD card! | http://jalyn.org | | | +| International Quality Director | 0.3.8 | Expression | | | | | | +| Forward Division Strategist | 5.7.1 | Ignored | You can't reboot the program without transmitting the mobile SMTP program! | The SCSI circuit is down, index the open-source circuit so we can index the SCSI circuit! | https://esperanza.name | | | +| Internal Directives Designer | 0.4.8 | Url | The EXE protocol is down, reboot the redundant protocol so we can reboot the EXE protocol! | | | | | +| Lead Branding Developer | 4.1.5 | Url | | | http://abe.com | | | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ---------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c6ae407b909d9dcd.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c6ae407b909d9dcd.verified.txt new file mode 100644 index 00000000..526a4877 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c6ae407b909d9dcd.verified.txt @@ -0,0 +1,129 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ---------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ---------------------- | --------- | ---------------------- | +| Direct Accountability Assistant | 2.2.8 | Url | bypassing the protocol won't do anything, we need to compress the primary HTTP protocol! | | http://natasha.info | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Global Security Coordinator | 1.7.9 | Ignored | | | https://carol.info | | | +| Forward Marketing Orchestrator | 1.6.4 | Overwrite | I'll connect the primary SQL sensor, that should sensor the SQL sensor! | The SMTP driver is down, bypass the mobile driver so we can bypass the SMTP driver! | https://lukas.com | | | +| Global Division Designer | 8.2.7 | Expression | Try to program the EXE hard drive, maybe it will program the virtual hard drive! | | https://pamela.name | | | +| National Intranet Technician | 8.0.0 | Overwrite | | | | | | +| Central Tactics Engineer | 6.3.5 | Unknown | connecting the bandwidth won't do anything, we need to bypass the multi-byte AI bandwidth! | | | | | +| Dynamic Quality Analyst | 0.9.5 | Overwrite | We need to index the optical HTTP application! | I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor! | | | | +| Central Identity Analyst | 8.9.6 | Expression | | | http://leta.org | | | +| Dynamic Division Consultant | 4.8.7 | Overwrite | Use the multi-byte IB microchip, then you can connect the multi-byte microchip! | backing up the feed won't do anything, we need to compress the haptic SMTP feed! | http://raquel.net | | | +| Regional Directives Supervisor | 4.9.8 | Ignored | Try to reboot the THX hard drive, maybe it will reboot the open-source hard drive! | Use the primary GB driver, then you can generate the primary driver! | https://malcolm.net | | | +| Human Communications Supervisor | 6.0.1 | Ignored | Use the cross-platform SAS feed, then you can bypass the cross-platform feed! | | http://ethan.name | | | +| Dynamic Accountability Analyst | 4.9.7 | Overwrite | | | https://jaron.info | | | +| Dynamic Optimization Director | 3.4.6 | Ignored | The PNG protocol is down, index the digital protocol so we can index the PNG protocol! | I'll transmit the online SSL feed, that should feed the SSL feed! | https://maximilian.org | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Human Response Coordinator | 2.9.7 | Ignored | | | http://ruth.org | | | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | | | +| Regional Factors Designer | 7.4.1 | Overwrite | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | | | | +| National Research Facilitator | 6.0.6 | Expression | Use the primary EXE array, then you can navigate the primary array! | | | | | +| International Data Representative | 3.5.7 | Ignored | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | http://dakota.com | | | +| Principal Markets Designer | 3.8.8 | Overwrite | overriding the transmitter won't do anything, we need to generate the cross-platform SCSI transmitter! | | | | | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | | | +| Chief Factors Supervisor | 5.2.2 | Expression | | | http://helga.com | | | +| Dynamic Branding Facilitator | 8.3.2 | Ignored | | | | | | +| Human Directives Specialist | 4.3.4 | Unknown | Use the digital XSS hard drive, then you can compress the digital hard drive! | You can't generate the card without synthesizing the bluetooth PNG card! | | | | +| Human Optimization Producer | 5.0.9 | Overwrite | | | | | | +| Legacy Directives Officer | 2.4.4 | Url | | The PCI program is down, hack the multi-byte program so we can hack the PCI program! | http://sedrick.biz | | | +| Direct Data Orchestrator | 2.4.5 | Expression | | Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor! | | | | +| Human Optimization Facilitator | 7.4.8 | Overwrite | 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! | https://cooper.name | | | +| Corporate Marketing Assistant | 8.7.9 | Url | | You can't program the firewall without connecting the wireless AI firewall! | http://arlene.biz | | | +| Forward Division Strategist | 5.7.1 | Ignored | You can't reboot the program without transmitting the mobile SMTP program! | The SCSI circuit is down, index the open-source circuit so we can index the SCSI circuit! | https://esperanza.name | | | +| Senior Security Consultant | 2.7.5 | Unknown | | | http://adelbert.biz | | | +| Human Quality Facilitator | 1.2.0 | Expression | We need to copy the online THX firewall! | You can't calculate the application without calculating the auxiliary AI application! | | | | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | | | +| Chief Applications Facilitator | 7.7.6 | Overwrite | | parsing the card won't do anything, we need to synthesize the online SQL card! | | | | +| Senior Optimization Assistant | 3.6.0 | Overwrite | | overriding the pixel won't do anything, we need to copy the optical JSON pixel! | http://akeem.info | | | +| Lead Branding Developer | 4.1.5 | Url | | | http://abe.com | | | +| Customer Functionality Consultant | 5.5.1 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | http://terence.com | | | +| National Solutions Associate | 9.1.2 | Overwrite | | | | | | +| Legacy Directives Supervisor | 9.6.2 | Url | The PNG circuit is down, back up the online circuit so we can back up the PNG circuit! | | | | | +| Product Assurance Technician | 0.8.2 | Overwrite | | | https://steve.info | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Chief Division Producer | 2.3.9 | Overwrite | | | | | | +| Chief Intranet Facilitator | 6.6.1 | Expression | | | https://rosalind.net | | | +| National Creative Coordinator | 5.9.5 | Expression | | | https://bobbie.info | | | +| Central Web Assistant | 4.2.1 | Unknown | | Use the wireless ADP array, then you can input the wireless array! | https://verda.net | | | +| 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 | | | +| Direct Mobility Designer | 7.7.3 | Expression | | | http://geovanny.info | | | +| Investor Research Manager | 6.3.1 | Ignored | | | | | | +| Internal Directives Designer | 0.4.8 | Url | The EXE protocol is down, reboot the redundant protocol so we can reboot the EXE protocol! | | | | | +| Dynamic Accountability Strategist | 7.0.9 | Unknown | You can't bypass the sensor without transmitting the neural JSON sensor! | | | | | +| Human Program Technician | 2.8.4 | Unknown | | | http://tomasa.info | | | +| National Creative Assistant | 4.9.0 | Ignored | | If we navigate the pixel, we can get to the SCSI pixel through the bluetooth SCSI pixel! | https://michelle.org | | | +| Regional Operations Coordinator | 0.2.5 | Unknown | | I'll hack the cross-platform SSL array, that should array the SSL array! | http://ena.com | | | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | | | +| Regional Paradigm Manager | 8.9.8 | Ignored | | If we transmit the application, we can get to the SMS application through the primary SMS application! | https://eileen.name | | | +| Future Accounts Agent | 0.9.7 | Ignored | | | | | | +| Future Accounts Architect | 9.1.8 | Url | You can't bypass the firewall without indexing the multi-byte COM firewall! | | https://fermin.biz | | | +| Human Operations Assistant | 0.7.2 | Overwrite | Use the haptic USB driver, then you can override the haptic driver! | | http://camila.net | | | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| Forward Intranet Engineer | 2.5.9 | Expression | The RSS sensor is down, input the 1080p sensor so we can input the RSS sensor! | Try to index the ADP port, maybe it will index the auxiliary port! | | | | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | | | +| Investor Intranet Producer | 5.4.1 | Ignored | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | http://hyman.org | | | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | | | +| District Operations Director | 0.6.3 | Url | | We need to program the cross-platform FTP hard drive! | https://dejah.net | | | +| Forward Configuration Supervisor | 9.0.8 | Overwrite | You can't program the protocol without overriding the primary IB protocol! | | http://quinn.name | | | +| Investor Implementation Technician | 2.7.9 | Unknown | | | http://crystal.name | | | +| Investor Creative Architect | 8.2.4 | Unknown | | | | | | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | | | +| Corporate Accounts Technician | 5.8.0 | Ignored | | | https://isobel.org | | | +| National Directives Analyst | 8.2.7 | Ignored | We need to compress the primary GB array! | | | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| Corporate Tactics Director | 2.5.7 | Url | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | http://marcos.info | | | +| International Intranet Planner | 6.4.6 | Url | The IB interface is down, program the redundant interface so we can program the IB interface! | | https://lenna.com | | | +| Senior Brand Analyst | 2.5.0 | Url | | overriding the interface won't do anything, we need to override the virtual THX interface! | | | | +| Dynamic Integration Architect | 1.6.3 | Overwrite | | The RAM feed is down, copy the neural feed so we can copy the RAM feed! | | | | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | http://hanna.net | | | +| Dynamic Factors Facilitator | 6.5.2 | Expression | | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | http://magnolia.com | | | +| Principal Accounts Coordinator | 1.0.4 | Overwrite | | I'll connect the digital JSON bus, that should bus the JSON bus! | http://rene.com | | | +| Corporate Directives Planner | 8.8.5 | Unknown | The CSS bus is down, generate the 1080p bus so we can generate the CSS bus! | We need to back up the 1080p SMTP feed! | | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Forward Functionality Developer | 5.1.1 | Url | | | | | | +| International Functionality Agent | 8.7.6 | Unknown | | If we hack the card, we can get to the JBOD card through the optical JBOD card! | http://jalyn.org | | | +| Customer Metrics Developer | 2.2.9 | Ignored | | | | | | +| Senior Factors Administrator | 1.6.1 | Expression | I'll calculate the solid state ADP panel, that should panel the ADP panel! | If we generate the circuit, we can get to the XSS circuit through the primary XSS circuit! | | | | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | | | +| International Quality Director | 0.3.8 | Expression | | | | | | +| National Communications Orchestrator | 4.5.1 | Unknown | The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit! | | | | | +| Customer Security Representative | 3.7.3 | Ignored | The GB circuit is down, hack the redundant circuit so we can hack the GB circuit! | | https://jalon.net | | | +| Global Program Representative | 5.1.0 | Url | | If we back up the monitor, we can get to the PCI monitor through the virtual PCI monitor! | | | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | | | +| Human Group Designer | 9.9.1 | Expression | Use the haptic XSS application, then you can synthesize the haptic application! | If we transmit the hard drive, we can get to the AGP hard drive through the bluetooth AGP hard drive! | http://jodie.org | | | +| Investor Interactions Liaison | 4.4.9 | Overwrite | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | | | | +| Product Creative Facilitator | 8.4.6 | Unknown | 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://juliana.net | | | +| Direct Assurance Strategist | 1.3.7 | Expression | The RSS firewall is down, hack the neural firewall so we can hack the RSS firewall! | | | | | +| Lead Usability Assistant | 1.3.4 | Overwrite | quantifying the matrix won't do anything, we need to synthesize the wireless PCI matrix! | Use the solid state SQL firewall, then you can connect the solid state firewall! | https://duane.info | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Human Directives Engineer | 5.3.9 | Url | | | | | | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| Corporate Data Strategist | 9.0.0 | Ignored | | | http://eli.net | | | +| National Applications Designer | 6.4.9 | Expression | | Use the back-end SMS feed, then you can program the back-end feed! | | | | +| Global Mobility Facilitator | 9.5.8 | Expression | | | | | | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ---------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c709e97a586cd871.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c709e97a586cd871.verified.txt new file mode 100644 index 00000000..0f2ebff4 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c709e97a586cd871.verified.txt @@ -0,0 +1,59 @@ +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| Legacy Response Analyst | 9.2.7 | Unknown | | Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata | http://martine.info | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Customer Operations Liaison | 9.0.9 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | | | | +| Principal Factors Producer | 0.8.5 | Unknown | connecting the system won't do anything, we need to override the back-end SQL system! | Devin Nolan | http://toby.info | | | +| Dynamic Applications Director | 5.1.4 | Unknown | | Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel | | | | +| Forward Division Strategist | 5.7.1 | Expression | You can't reboot the program without transmitting the mobile SMTP program! | Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode | https://esperanza.name | | | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| Investor Interactions Designer | 1.9.4 | Overwrite | | | https://octavia.name | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Optimization Associate | 4.0.5 | Unknown | | Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel | https://linnie.net | | | +| Dynamic Integration Assistant | 2.1.6 | Unknown | | | https://gerson.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 | | | +| Future Tactics Producer | 5.8.9 | Url | navigating the pixel won't do anything, we need to parse the back-end IB pixel! | | | | | +| Regional Integration Consultant | 5.3.8 | Expression | | | http://michael.name | | | +| Dynamic Mobility Technician | 6.0.2 | Expression | | | https://keeley.net | | | +| Global Integration Assistant | 5.0.1 | Unknown | | | http://demarco.com | | | +| Central Applications Coordinator | 1.6.8 | Ignored | | | http://curtis.com | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Human Implementation Producer | 0.9.1 | Url | | | | | | +| Future Directives Planner | 5.9.7 | Ignored | Use the wireless ADP array, then you can input the wireless array! | Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki | | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| District Mobility Administrator | 3.2.3 | Unknown | | Christopher Dietrich,Christopher Dietrich,Christopher Dietrich,Christopher Dietrich | | | | +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c774ee810b53c74e.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c774ee810b53c74e.verified.txt new file mode 100644 index 00000000..884ab88f --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c774ee810b53c74e.verified.txt @@ -0,0 +1,40 @@ +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c77e2c850f59f841.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c77e2c850f59f841.verified.txt new file mode 100644 index 00000000..22bfd49d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c77e2c850f59f841.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c809b56539a1291f.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c809b56539a1291f.verified.txt new file mode 100644 index 00000000..881dad04 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c809b56539a1291f.verified.txt @@ -0,0 +1,139 @@ +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Global Usability Representative | 3.5.9 | Url | | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| National Accounts Liaison | 7.2.6 | Overwrite | | | Cedrick | https://zachariah.net | +| | | | | | Marcelle | https://adah.org | +| | | | | | Barney | http://erica.org | +| Global Response Associate | 1.9.8 | Overwrite | The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth! | | Sandra | http://antonina.com | +| | | | | | Willow | https://jason.org | +| | | | | | Orland | http://rigoberto.com | +| | | | | | Laney | http://eryn.org | +| | | | | | Amari | http://viviane.net | +| | | | | | Kelley | http://doris.net | +| | | | | | Kennedy | https://milo.net | +| Legacy Creative Liaison | 0.4.6 | Overwrite | | | Mervin | http://celestine.info | +| | | | | | Amalia | https://shanelle.info | +| | | | | | Sheila | http://darrell.info | +| | | | | | Alec | https://candice.biz | +| | | | | | Linnea | http://everardo.info | +| | | | | | Daryl | https://jerrod.com | +| | | | | | Laila | http://caleigh.net | +| | | | | | Adolfo | http://daisha.biz | +| Forward Quality Producer | 6.3.7 | Overwrite | The CSS microchip is down, back up the bluetooth microchip so we can back up the CSS microchip! | https://jayne.name | | | +| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| | | | | | Jody | http://jakob.org | +| | | | | | Anjali | https://valentin.info | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Regional Security Architect | 2.2.5 | Url | | | | | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| | | | | | Ursula | https://werner.net | +| | | | | | Linwood | http://rebekah.org | +| | | | | | Cleve | https://claudie.net | +| | | | | | Theodora | http://faye.info | +| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| | | | | | Braeden | https://sunny.name | +| | | | | | Leslie | http://bettie.info | +| | | | | | Edmund | http://sadie.info | +| | | | | | Horacio | https://loraine.name | +| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| | | | | | Earnestine | http://nathanial.biz | +| | | | | | Connor | https://augustus.net | +| | | | | | Araceli | http://hailey.biz | +| | | | | | Janessa | https://craig.com | +| | | | | | Erica | http://kristin.org | +| | | | | | Alek | http://shany.biz | +| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| | | | | | Monserrat | http://katrine.name | +| | | | | | Abel | https://geovany.com | +| | | | | | Diana | http://eula.name | +| | | | | | Raphael | https://zackery.info | +| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| | | | | | Clemmie | http://shanny.net | +| | | | | | Hildegard | http://conner.name | +| | | | | | Isabella | https://kennith.com | +| | | | | | Johanna | https://ara.org | +| | | | | | Demarco | https://rae.biz | +| | | | | | Viviane | http://christine.info | +| District Mobility Administrator | 3.2.3 | Ignored | | | | | +| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| | | | | | Tyson | https://bonita.org | +| | | | | | Jazlyn | http://madonna.net | +| | | | | | Deangelo | https://jess.info | +| | | | | | Alvah | https://hans.net | +| | | | | | Payton | http://shanna.name | +| | | | | | Providenci | https://tyra.org | +| | | | | | Flo | http://isidro.net | +| | | | | | Dawn | https://anika.org | +| | | | | | Silas | http://zane.name | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Senior Brand Developer | 4.4.1 | Ignored | If we override the system, we can get to the CSS system through the neural CSS system! | http://adelbert.net | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| | | | | | Libby | http://wade.biz | +| | | | | | Leola | https://pietro.info | +| | | | | | Arch | http://hazle.org | +| | | | | | Eldred | http://gabriel.net | +| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| | | | | | Clarissa | https://audreanne.name | +| | | | | | Vida | https://theresia.biz | +| | | | | | Ransom | http://isom.com | +| | | | | | Anastasia | http://kamryn.info | +| | | | | | Marlene | https://cyril.name | +| | | | | | Zetta | http://pete.org | +| | | | | | Candida | https://craig.biz | +| | | | | | Timmothy | https://joanny.biz | +| | | | | | Alfonzo | http://dorothea.org | +| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| | | | | | Caleigh | https://albin.info | +| | | | | | Flavie | http://lavonne.biz | +| | | | | | Kaitlyn | http://osborne.org | +| | | | | | Joesph | https://michael.name | +| | | | | | Kali | http://shyanne.net | +| | | | | | Austin | https://marty.net | +| | | | | | Theresia | http://kristin.net | +| | | | | | Lester | https://paige.com | +| Direct Accounts Associate | 3.2.6 | Overwrite | | https://vesta.com | Buck | http://taryn.com | +| | | | | | Hilton | http://isabel.com | +| | | | | | Rogers | https://bertrand.biz | +| | | | | | Annetta | https://remington.org | +| | | | | | Efrain | http://davion.org | +| | | | | | Merle | https://abigayle.org | +| | | | | | Jerod | https://vicenta.info | +| | | | | | Kayli | https://shaun.net | +| | | | | | Antwan | https://hazel.net | +| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| | | | | | Princess | http://haylie.biz | +| | | | | | Jordane | https://gregorio.com | +| | | | | | Opal | http://abbie.org | +| | | | | | Pablo | https://maxime.biz | +| | | | | | Shaun | https://concepcion.net | +| | | | | | Moises | http://rupert.info | +| Dynamic Marketing Consultant | 2.4.9 | Overwrite | | | Angie | https://ardella.info | +| | | | | | Melissa | https://sandra.biz | +| | | | | | Pearline | https://noble.net | +| | | | | | Dusty | https://verlie.com | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c80e407fa62ad8d3.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c80e407fa62ad8d3.verified.txt new file mode 100644 index 00000000..c4cd4c82 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c80e407fa62ad8d3.verified.txt @@ -0,0 +1,32 @@ +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ----------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ----------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ----------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c86541a94d26b389.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c86541a94d26b389.verified.txt new file mode 100644 index 00000000..dc0eda89 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c86541a94d26b389.verified.txt @@ -0,0 +1,8 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------- | ------- | -------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Error | Error 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 | Alyson | https://carmelo.biz | +| | | | | | Michele | https://miles.net | +| | | | | | Freddie | http://kade.net | +| | | | | | Jaunita | http://marcelina.biz | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------- | ------- | -------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c8b04f2ca58bfda6.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c8b04f2ca58bfda6.verified.txt new file mode 100644 index 00000000..5abdbc88 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c8b04f2ca58bfda6.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c8db80e12cef9264.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c8db80e12cef9264.verified.txt new file mode 100644 index 00000000..1b3f333e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c8db80e12cef9264.verified.txt @@ -0,0 +1,130 @@ +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.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 | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Senior Solutions Strategist | 7.5.0 | 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 | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Legacy Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| Corporate Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| Customer Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| Corporate Accountability Designer | 0.8.0 | Ignored | We need to hack the online FTP application! | | Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn | http://taya.info | Abelardo | http://carolina.name | +| | | | | | | | Lindsey | http://rigoberto.org | +| | | | | | | | Lou | http://darlene.biz | +| | | | | | | | Oliver | https://filomena.com | +| | | | | | | | Vincenzo | https://ulices.biz | +| | | | | | | | Florida | http://jovan.net | +| | | | | | | | Ari | https://chad.com | +| | | | | | | | Yvonne | http://jada.name | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | http://celestine.info | Clemens | https://abagail.info | +| | | | | | | | Franz | http://prudence.info | +| | | | | | | | Casper | https://alva.com | +| | | | | | | | Mario | http://alexandria.biz | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c91e5ed3ab28d6af.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c91e5ed3ab28d6af.verified.txt new file mode 100644 index 00000000..7f86595e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c91e5ed3ab28d6af.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Future Integration Analyst | 9.0.4 | Expression | | | Abner | http://tavares.info | +| | | | | | Johann | http://andres.net | +| | | | | | Jaquan | http://carey.org | +| | | | | | Arvel | http://mortimer.org | +| | | | | | Alicia | http://paula.com | +| | | | | | Heidi | http://letha.name | +| | | | | | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Paige | https://remington.info | +| | | | | | Aletha | https://isobel.info | +| | | | | | Pearline | https://johnathon.info | +| | | | | | Eleanora | http://jaeden.info | +| | | | | | Nikolas | https://daphney.net | +| | | | | | Oceane | http://clifton.com | +| | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | http://marina.com | Myles | http://nikko.name | +| | | | | | Rolando | http://nikko.name | +| | | | | | Pamela | https://aliza.net | +| | | | | | Marcella | http://helga.net | +| | | | | | Alisha | http://alyson.name | +| | | | | | Carmelo | http://michele.name | +| | | | | | Miles | https://freddie.com | +| | | | | | Kade | https://jaunita.biz | +| | | | | | Marcelina | http://donna.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c9297c8524265d06.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c9297c8524265d06.verified.txt new file mode 100644 index 00000000..949fa777 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c9297c8524265d06.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Paige | https://remington.info | +| | | | | Aletha | https://isobel.info | +| | | | | Pearline | https://johnathon.info | +| | | | | Eleanora | http://jaeden.info | +| | | | | Nikolas | https://daphney.net | +| | | | | Oceane | http://clifton.com | +| | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c988c4d2cd907c20.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c988c4d2cd907c20.verified.txt new file mode 100644 index 00000000..b2c83179 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c988c4d2cd907c20.verified.txt @@ -0,0 +1,140 @@ +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Global Paradigm Assistant | 8.0.5 | Expression | We need to calculate the solid state HTTP hard drive! | | | https://randy.org | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Marketing Coordinator | 3.6.1 | Overwrite | | | | https://marcos.org | | | +| Investor Research Coordinator | 1.9.7 | Ignored | Use the cross-platform GB bus, then you can calculate the cross-platform bus! | | | https://maegan.name | | | +| Dynamic Implementation Engineer | 6.7.1 | Overwrite | We need to transmit the open-source EXE interface! | | | http://margie.info | | | +| District Interactions Supervisor | 4.5.2 | Url | The XSS capacitor is down, generate the bluetooth capacitor so we can generate the XSS capacitor! | The ADP firewall is down, input the primary firewall so we can input the ADP firewall! | | | | | +| Central Research Technician | 2.8.8 | Url | | You can't generate the program without connecting the bluetooth USB program! | | | | | +| Principal Operations Assistant | 0.9.0 | Url | I'll copy the auxiliary HDD bus, that should bus the HDD bus! | I'll copy the digital USB circuit, that should circuit the USB circuit! | | | | | +| Human Identity Representative | 4.1.5 | Overwrite | The SAS bus is down, program the neural bus so we can program the SAS bus! | | Joyce Auer,Joyce Auer,Joyce Auer | http://alyce.biz | | | +| Forward Usability Specialist | 5.6.9 | Overwrite | I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth! | | | | | | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | | | +| Global Implementation Strategist | 5.9.8 | Ignored | | | Colleen Schroeder,Colleen Schroeder | https://enos.info | | | +| National Assurance Planner | 2.7.7 | Unknown | | I'll reboot the online AGP alarm, that should alarm the AGP alarm! | Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag | | | | +| International Tactics Administrator | 9.9.9 | Url | | | | | | | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Customer Solutions Officer | 4.5.2 | Expression | You can't copy the matrix without compressing the wireless AGP matrix! | | | https://rylan.name | | | +| Direct Brand Director | 4.7.4 | Url | You can't navigate the capacitor without programming the solid state SQL capacitor! | | | | | | +| Global Optimization Architect | 1.5.0 | Unknown | Try to navigate the SCSI sensor, maybe it will navigate the mobile sensor! | | | | | | +| Human Tactics Facilitator | 5.7.0 | Url | Try to bypass the HTTP application, maybe it will bypass the digital application! | | | | | | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | | | +| Human Program Analyst | 3.1.8 | Expression | If we back up the application, we can get to the USB application through the cross-platform USB application! | | | http://efrain.org | | | +| Dynamic Security Specialist | 7.8.5 | Overwrite | Try to input the GB pixel, maybe it will input the wireless pixel! | You can't transmit the bus without indexing the digital TCP bus! | Guy Waters,Guy Waters | http://nova.biz | | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | | | +| Principal Security Producer | 7.3.3 | Ignored | You can't generate the interface without quantifying the mobile FTP interface! | Use the digital SMTP bandwidth, then you can generate the digital bandwidth! | | http://jarrell.biz | | | +| Product Directives Engineer | 8.2.3 | Unknown | transmitting the bus won't do anything, we need to navigate the online IB bus! | | Maggie Lindgren | | | | +| Chief Factors Developer | 5.9.5 | Url | | Try to connect the ADP system, maybe it will connect the solid state system! | Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady | | | | +| Investor Quality Associate | 0.5.1 | Expression | | Try to reboot the SSL alarm, maybe it will reboot the solid state alarm! | Carrie Hansen,Carrie Hansen,Carrie Hansen,Carrie Hansen | https://ezequiel.biz | | | +| Human Paradigm Assistant | 8.8.8 | Expression | | | Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich | | | | +| Dynamic Branding Manager | 1.4.0 | Overwrite | You can't navigate the application without generating the cross-platform COM application! | Try to program the FTP alarm, maybe it will program the virtual alarm! | | http://dario.info | | | +| Central Tactics Developer | 0.4.7 | Ignored | indexing the capacitor won't do anything, we need to program the haptic EXE capacitor! | The JBOD application is down, generate the solid state application so we can generate the JBOD application! | Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley | https://royal.name | | | +| Regional Optimization Administrator | 3.6.4 | Expression | | I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive! | | http://serenity.info | | | +| Customer Web Assistant | 1.9.0 | Unknown | | | | | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Future Research Planner | 8.8.9 | Ignored | | | | https://yvette.com | | | +| Dynamic Data Technician | 4.2.3 | Url | I'll copy the optical RAM feed, that should feed the RAM feed! | | June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds | http://nia.info | | | +| Legacy Interactions Supervisor | 9.7.2 | Ignored | | Try to generate the SAS matrix, maybe it will generate the cross-platform matrix! | Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn | | | | +| 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 | | | +| Senior Paradigm Analyst | 1.1.1 | Ignored | | If we navigate the alarm, we can get to the XML alarm through the cross-platform XML alarm! | | | | | +| District Optimization Technician | 5.2.3 | Overwrite | | | Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti | https://douglas.info | | | +| Future Tactics Specialist | 0.2.2 | Ignored | We need to override the primary SQL pixel! | We need to transmit the redundant EXE driver! | Alejandro Cruickshank,Alejandro Cruickshank,Alejandro Cruickshank,Alejandro Cruickshank | | | | +| Future Identity Agent | 8.8.0 | Ignored | I'll parse the 1080p USB protocol, that should protocol the USB protocol! | | | https://reva.name | | | +| Dynamic Factors Associate | 1.8.3 | Unknown | | You can't navigate the panel without calculating the open-source THX panel! | | http://dovie.name | | | +| Forward Data Orchestrator | 3.3.5 | Expression | Use the haptic XML driver, then you can index the haptic driver! | compressing the system won't do anything, we need to compress the optical RSS system! | | | | | +| Lead Operations Supervisor | 4.5.2 | Expression | The AI panel is down, transmit the open-source panel so we can transmit the AI panel! | | | | | | +| Forward Factors Architect | 6.7.6 | Ignored | | The THX transmitter is down, program the neural transmitter so we can program the THX transmitter! | Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts | | | | +| International Brand Strategist | 3.9.3 | Url | | | Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy | https://rowena.info | | | +| Corporate Intranet Specialist | 3.5.6 | Expression | | | Edmund Lehner,Edmund Lehner,Edmund Lehner,Edmund Lehner | | | | +| Global Identity Supervisor | 0.9.1 | Overwrite | | | | | | | +| Chief Infrastructure Specialist | 9.0.5 | Overwrite | hacking the port won't do anything, we need to back up the optical SMS port! | | Jackie Schumm | | | | +| Central Division Administrator | 1.0.4 | Overwrite | We need to program the optical COM microchip! | We need to hack the haptic SAS microchip! | | | | | +| International Branding Producer | 3.8.2 | Expression | We need to generate the solid state AGP microchip! | | | | | | +| Principal Intranet Architect | 4.9.3 | Unknown | | | | | | | +| Customer Program Developer | 2.9.8 | Expression | | You can't transmit the pixel without calculating the bluetooth FTP pixel! | | http://lenora.com | | | +| Customer Assurance Officer | 0.3.1 | Ignored | I'll navigate the digital CSS sensor, that should sensor the CSS sensor! | | | https://clementine.info | | | +| Customer Division Manager | 1.3.9 | Ignored | 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! | Rafael Altenwerth,Rafael Altenwerth,Rafael Altenwerth | | | | +| Dynamic Security Director | 0.0.2 | Url | transmitting the feed won't do anything, we need to navigate the redundant SDD feed! | Try to parse the HTTP port, maybe it will parse the bluetooth port! | Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block | | | | +| International Division Architect | 8.2.4 | Ignored | | | Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins | http://murphy.name | | | +| Regional Identity Engineer | 1.9.4 | Ignored | | The HTTP microchip is down, copy the digital microchip so we can copy the HTTP microchip! | Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston | | | | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | | | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | | | +| Lead Infrastructure Specialist | 7.2.6 | Ignored | | | Laura Abshire,Laura Abshire,Laura Abshire,Laura Abshire,Laura Abshire | https://wanda.com | | | +| Dynamic Solutions Agent | 0.0.5 | Overwrite | Use the haptic USB card, then you can navigate the haptic card! | | | | | | +| International Solutions Planner | 9.0.0 | Url | Use the multi-byte SMTP program, then you can synthesize the multi-byte program! | | | | | | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | | | +| Customer Branding Orchestrator | 8.3.7 | Overwrite | | We need to bypass the neural USB capacitor! | Nora Dietrich | http://nona.com | | | +| Customer Metrics Developer | 2.2.9 | Ignored | | | Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir | | | | +| Investor Accounts Facilitator | 7.7.8 | Expression | | | Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman | http://scottie.biz | | | +| Legacy Security Facilitator | 1.9.0 | Expression | | Use the cross-platform ADP alarm, then you can back up the cross-platform alarm! | | https://edythe.info | | | +| Regional Directives Liaison | 4.7.8 | Expression | If we connect the interface, we can get to the SCSI interface through the auxiliary SCSI interface! | | Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic | https://glennie.biz | | | +| Human Branding Coordinator | 5.8.1 | Ignored | | | | | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| Product Functionality Supervisor | 9.4.5 | Overwrite | Use the 1080p AI microchip, then you can reboot the 1080p microchip! | Use the open-source ADP matrix, then you can copy the open-source matrix! | | | | | +| 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 | | | | +| Corporate Intranet Analyst | 0.9.0 | Ignored | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp | http://hanna.net | | | +| Future Configuration Officer | 7.6.0 | Unknown | You can't compress the alarm without parsing the optical JBOD alarm! | I'll compress the back-end SSL system, that should system the SSL system! | Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie | | | | +| Lead Program Technician | 5.8.9 | Expression | | We need to transmit the back-end AGP sensor! | Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer | http://curtis.org | | | +| International Optimization Coordinator | 6.5.5 | Ignored | | | Darnell Terry | http://antoinette.org | | | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | | | +| Chief Program Associate | 2.6.7 | Unknown | We need to compress the optical PNG array! | | Wilbert Kunze,Wilbert Kunze,Wilbert Kunze,Wilbert Kunze | http://coy.info | | | +| Regional Metrics Strategist | 1.2.1 | Unknown | | Try to override the GB driver, maybe it will override the digital driver! | | | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | | | +| District Assurance Technician | 8.5.5 | Overwrite | | | | http://zander.com | | | +| Customer Communications Engineer | 6.9.4 | Overwrite | | | Tanya Reinger,Tanya Reinger,Tanya Reinger | http://tito.name | | | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Internal Program Designer | 7.2.5 | Ignored | We need to hack the auxiliary COM hard drive! | | | | | | +| Investor Tactics Director | 0.4.3 | Expression | | | | https://aylin.com | | | +| Central Implementation Planner | 7.6.0 | Ignored | | Try to generate the HDD panel, maybe it will generate the solid state panel! | | | | | +| Future Tactics Assistant | 1.5.5 | Expression | The IB sensor is down, reboot the virtual sensor so we can reboot the IB sensor! | If we calculate the matrix, we can get to the SMS matrix through the bluetooth SMS matrix! | | https://giovanny.net | | | +| Global Optimization Engineer | 8.7.9 | Expression | | quantifying the transmitter won't do anything, we need to synthesize the auxiliary FTP transmitter! | | http://aniya.org | | | +| Principal Brand Executive | 7.2.7 | Unknown | | | | https://dariana.com | | | +| Principal Factors Representative | 4.5.7 | Ignored | Try to input the RAM interface, maybe it will input the bluetooth interface! | The GB card is down, hack the digital card so we can hack the GB card! | Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker | https://imelda.org | | | +| Human Accounts Orchestrator | 4.1.6 | Url | | | | | | | +| Direct Division Officer | 6.5.6 | Url | transmitting the protocol won't do anything, we need to generate the multi-byte THX protocol! | | Glenda Schuppe,Glenda Schuppe | http://catherine.name | | | +| Regional Functionality Agent | 5.9.9 | Overwrite | We need to index the 1080p SAS hard drive! | I'll connect the digital JBOD application, that should application the JBOD application! | Gloria Williamson,Gloria Williamson,Gloria Williamson,Gloria Williamson | http://arthur.net | | | +| Senior Configuration Developer | 4.0.9 | Url | Use the primary SCSI matrix, then you can program the primary matrix! | If we parse the interface, we can get to the JSON interface through the mobile JSON interface! | Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle | | | | +| Human Markets Planner | 5.0.1 | Expression | Try to back up the COM driver, maybe it will back up the bluetooth driver! | | | | | | +| Lead Solutions Technician | 1.5.7 | Unknown | | | | | | | +| Product Solutions Manager | 9.5.2 | Overwrite | I'll hack the primary SDD card, that should card the SDD card! | hacking the transmitter won't do anything, we need to index the open-source CSS transmitter! | Sergio Bailey,Sergio Bailey,Sergio Bailey | | | | +| Dynamic Division Representative | 7.3.5 | Unknown | | I'll index the haptic FTP alarm, that should alarm the FTP alarm! | Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson | http://taurean.net | | | +| Customer Mobility Assistant | 4.2.9 | 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 | http://adonis.biz | | | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c9aa095dc3f3d197.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c9aa095dc3f3d197.verified.txt new file mode 100644 index 00000000..aff36c8d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c9aa095dc3f3d197.verified.txt @@ -0,0 +1,131 @@ +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | Unknown | 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 Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| Corporate Accountability Designer | 0.8.0 | Ignored | We need to hack the online FTP application! | | Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn | http://taya.info | Abelardo | http://carolina.name | +| | | | | | | | Lindsey | http://rigoberto.org | +| | | | | | | | Lou | http://darlene.biz | +| | | | | | | | Oliver | https://filomena.com | +| | | | | | | | Vincenzo | https://ulices.biz | +| | | | | | | | Florida | http://jovan.net | +| | | | | | | | Ari | https://chad.com | +| | | | | | | | Yvonne | http://jada.name | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Dynamic Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.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 | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Senior Solutions Strategist | 7.5.0 | 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 Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Customer Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | http://celestine.info | Clemens | https://abagail.info | +| | | | | | | | Franz | http://prudence.info | +| | | | | | | | Casper | https://alva.com | +| | | | | | | | Mario | http://alexandria.biz | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c9ac3d9bc7eb8135.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c9ac3d9bc7eb8135.verified.txt new file mode 100644 index 00000000..21f1d0a1 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c9ac3d9bc7eb8135.verified.txt @@ -0,0 +1,21 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | Braeden | http://ayana.org | +| | | | | | | | Avery | http://jarret.biz | +| | | | | | | | Clarissa | https://audreanne.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 | | Alyson | https://carmelo.biz | +| | | | | | | | Michele | https://miles.net | +| | | | | | | | Freddie | http://kade.net | +| | | | | | | | Jaunita | http://marcelina.biz | +| Future Data Manager | 2.5.9 | Expression | | | | | Abner | http://tavares.info | +| | | | | | | | Johann | http://andres.net | +| | | | | | | | Jaquan | http://carey.org | +| | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | Alicia | http://paula.com | +| | | | | | | | Heidi | http://letha.name | +| | | | | | | | Reid | https://amely.info | +| | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | Kiara | https://floyd.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c9c94445167dc2e4.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c9c94445167dc2e4.verified.txt new file mode 100644 index 00000000..cac62e52 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c9c94445167dc2e4.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | --------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | --------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c9ebfa41a0573884.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c9ebfa41a0573884.verified.txt new file mode 100644 index 00000000..53270f4f --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_c9ebfa41a0573884.verified.txt @@ -0,0 +1,31 @@ +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | Helga | https://jermey.info | +| | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | Jedediah | http://amber.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 | | Alyson | https://carmelo.biz | +| | | | | | | | Michele | https://miles.net | +| | | | | | | | Freddie | http://kade.net | +| | | | | | | | Jaunita | http://marcelina.biz | +| Future Data Manager | 2.5.9 | Expression | | | | | Abner | http://tavares.info | +| | | | | | | | Johann | http://andres.net | +| | | | | | | | Jaquan | http://carey.org | +| | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | Alicia | http://paula.com | +| | | | | | | | Heidi | http://letha.name | +| | | | | | | | Reid | https://amely.info | +| | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | Braeden | http://ayana.org | +| | | | | | | | Avery | http://jarret.biz | +| | | | | | | | Clarissa | https://audreanne.name | +| Principal Assurance Representative | 3.8.2 | Ignored | | | Patsy Erdman,Patsy Erdman,Patsy Erdman,Patsy Erdman | | Jadon | https://amelia.biz | +| | | | | | | | Toni | http://angie.name | +| | | | | | | | Ardella | http://melissa.net | +| | | | | | | | Sandra | http://pearline.org | +| | | | | | | | Noble | https://dusty.net | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ca62f9e04edfa3bc.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ca62f9e04edfa3bc.verified.txt new file mode 100644 index 00000000..38a58b36 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ca62f9e04edfa3bc.verified.txt @@ -0,0 +1,8 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_caa778f1a451043b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_caa778f1a451043b.verified.txt new file mode 100644 index 00000000..fdb9e269 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_caa778f1a451043b.verified.txt @@ -0,0 +1,26 @@ +| ------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Global Usability Representative | 3.5.9 | Url | | | | | +| Regional Security Architect | 2.2.5 | Url | | | | | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | +| Forward Quality Producer | 6.3.7 | Overwrite | The CSS microchip is down, back up the bluetooth microchip so we can back up the CSS microchip! | https://jayne.name | | | +| ------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cacba92d2f10db8d.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cacba92d2f10db8d.verified.txt new file mode 100644 index 00000000..a5947d9e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cacba92d2f10db8d.verified.txt @@ -0,0 +1,45 @@ +| -------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Global Implementation Strategist | 5.9.8 | Ignored | | | Colleen Schroeder,Colleen Schroeder | https://enos.info | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Program Designer | 7.2.5 | Ignored | We need to hack the auxiliary COM hard drive! | | | | | | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| -------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cae17b964471e32e.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cae17b964471e32e.verified.txt new file mode 100644 index 00000000..f5a29520 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cae17b964471e32e.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cb55307afef85407.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cb55307afef85407.verified.txt new file mode 100644 index 00000000..ca4dd6a2 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cb55307afef85407.verified.txt @@ -0,0 +1,134 @@ +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| | | | | | Monserrat | http://katrine.name | +| | | | | | Abel | https://geovany.com | +| | | | | | Diana | http://eula.name | +| | | | | | Raphael | https://zackery.info | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| | | | | | Tyson | https://bonita.org | +| | | | | | Jazlyn | http://madonna.net | +| | | | | | Deangelo | https://jess.info | +| | | | | | Alvah | https://hans.net | +| | | | | | Payton | http://shanna.name | +| | | | | | Providenci | https://tyra.org | +| | | | | | Flo | http://isidro.net | +| | | | | | Dawn | https://anika.org | +| | | | | | Silas | http://zane.name | +| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| | | | | | Jody | http://jakob.org | +| | | | | | Anjali | https://valentin.info | +| Dynamic Marketing Consultant | 2.4.9 | Overwrite | | | Angie | https://ardella.info | +| | | | | | Melissa | https://sandra.biz | +| | | | | | Pearline | https://noble.net | +| | | | | | Dusty | https://verlie.com | +| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| | | | | | Ursula | https://werner.net | +| | | | | | Linwood | http://rebekah.org | +| | | | | | Cleve | https://claudie.net | +| | | | | | Theodora | http://faye.info | +| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| | | | | | Caleigh | https://albin.info | +| | | | | | Flavie | http://lavonne.biz | +| | | | | | Kaitlyn | http://osborne.org | +| | | | | | Joesph | https://michael.name | +| | | | | | Kali | http://shyanne.net | +| | | | | | Austin | https://marty.net | +| | | | | | Theresia | http://kristin.net | +| | | | | | Lester | https://paige.com | +| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| | | | | | Braeden | https://sunny.name | +| | | | | | Leslie | http://bettie.info | +| | | | | | Edmund | http://sadie.info | +| | | | | | Horacio | https://loraine.name | +| Global Response Associate | 1.9.8 | Overwrite | The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth! | | Sandra | http://antonina.com | +| | | | | | Willow | https://jason.org | +| | | | | | Orland | http://rigoberto.com | +| | | | | | Laney | http://eryn.org | +| | | | | | Amari | http://viviane.net | +| | | | | | Kelley | http://doris.net | +| | | | | | Kennedy | https://milo.net | +| Senior Brand Developer | 4.4.1 | Ignored | If we override the system, we can get to the CSS system through the neural CSS system! | http://adelbert.net | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| | | | | | Libby | http://wade.biz | +| | | | | | Leola | https://pietro.info | +| | | | | | Arch | http://hazle.org | +| | | | | | Eldred | http://gabriel.net | +| National Accounts Liaison | 7.2.6 | Overwrite | | | Cedrick | https://zachariah.net | +| | | | | | Marcelle | https://adah.org | +| | | | | | Barney | http://erica.org | +| Direct Accounts Associate | 3.2.6 | Overwrite | | https://vesta.com | Buck | http://taryn.com | +| | | | | | Hilton | http://isabel.com | +| | | | | | Rogers | https://bertrand.biz | +| | | | | | Annetta | https://remington.org | +| | | | | | Efrain | http://davion.org | +| | | | | | Merle | https://abigayle.org | +| | | | | | Jerod | https://vicenta.info | +| | | | | | Kayli | https://shaun.net | +| | | | | | Antwan | https://hazel.net | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| | | | | | Clarissa | https://audreanne.name | +| | | | | | Vida | https://theresia.biz | +| | | | | | Ransom | http://isom.com | +| | | | | | Anastasia | http://kamryn.info | +| | | | | | Marlene | https://cyril.name | +| | | | | | Zetta | http://pete.org | +| | | | | | Candida | https://craig.biz | +| | | | | | Timmothy | https://joanny.biz | +| | | | | | Alfonzo | http://dorothea.org | +| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| | | | | | Princess | http://haylie.biz | +| | | | | | Jordane | https://gregorio.com | +| | | | | | Opal | http://abbie.org | +| | | | | | Pablo | https://maxime.biz | +| | | | | | Shaun | https://concepcion.net | +| | | | | | Moises | http://rupert.info | +| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| | | | | | Earnestine | http://nathanial.biz | +| | | | | | Connor | https://augustus.net | +| | | | | | Araceli | http://hailey.biz | +| | | | | | Janessa | https://craig.com | +| | | | | | Erica | http://kristin.org | +| | | | | | Alek | http://shany.biz | +| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| | | | | | Clemmie | http://shanny.net | +| | | | | | Hildegard | http://conner.name | +| | | | | | Isabella | https://kennith.com | +| | | | | | Johanna | https://ara.org | +| | | | | | Demarco | https://rae.biz | +| | | | | | Viviane | http://christine.info | +| Legacy Creative Liaison | 0.4.6 | Overwrite | | | Mervin | http://celestine.info | +| | | | | | Amalia | https://shanelle.info | +| | | | | | Sheila | http://darrell.info | +| | | | | | Alec | https://candice.biz | +| | | | | | Linnea | http://everardo.info | +| | | | | | Daryl | https://jerrod.com | +| | | | | | Laila | http://caleigh.net | +| | | | | | Adolfo | http://daisha.biz | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cbdadf24888f4839.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cbdadf24888f4839.verified.txt new file mode 100644 index 00000000..1d9d4385 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cbdadf24888f4839.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cc168e417d72be24.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cc168e417d72be24.verified.txt new file mode 100644 index 00000000..92f9cef0 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cc168e417d72be24.verified.txt @@ -0,0 +1,40 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | -------- | ---------------------- | +| Customer Metrics Analyst | 6.7.1 | Unknown | | | | | | | | +| National Security Orchestrator | 3.5.6 | Expression | Try to copy the HDD array, maybe it will copy the back-end array! | 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! | Roderick Koelpin,Roderick Koelpin,Roderick Koelpin | | | | +| Global Markets Administrator | 8.6.8 | Expression | 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! | The SSL application is down, reboot the bluetooth application so we can reboot the SSL application! | Julius Bernhard,Julius Bernhard,Julius Bernhard,Julius Bernhard | https://lois.biz | | | +| Human Accountability Developer | 6.9.0 | Unknown | If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit! | | | | | | | +| Internal Factors Facilitator | 2.6.3 | Url | | Try to copy the PNG sensor, maybe it will copy the 1080p sensor! | | Mable Kris,Mable Kris,Mable Kris,Mable Kris,Mable Kris | http://melba.name | | | +| Global Configuration Consultant | 5.9.5 | Expression | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | bypassing the bus won't do anything, we need to calculate the virtual GB bus! | | Guadalupe Littel,Guadalupe Littel,Guadalupe Littel | | | | +| Chief Functionality Planner | 5.1.2 | Unknown | | I'll calculate the 1080p HDD system, that should system the HDD system! | | Matt Mills,Matt Mills | http://myrtice.com | | | +| Lead Configuration Liaison | 1.8.9 | Expression | | connecting the transmitter won't do anything, we need to program the cross-platform XSS transmitter! | | | http://esther.biz | | | +| Regional Factors Designer | 7.4.1 | Url | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | Use the haptic RSS port, then you can transmit the haptic port! | Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus | | | | +| 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Dynamic Factors Producer | 5.7.1 | Url | | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | | | | | +| Customer Interactions Representative | 0.8.8 | Url | We need to quantify the digital SSL array! | | | | http://heather.name | | | +| Dynamic Configuration Assistant | 3.2.1 | Expression | | 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 | | | | +| District Creative Designer | 1.4.6 | Url | We need to program the haptic IB panel! | | | | http://cameron.info | | | +| Investor Interactions Designer | 1.9.4 | Url | | | parsing the card won't do anything, we need to synthesize the online SQL card! | Stella Barton,Stella Barton | https://octavia.name | | | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Future Accounts Designer | 5.1.9 | Expression | We need to navigate the wireless SAS pixel! | | | | | | | +| Corporate Intranet Associate | 7.5.1 | Overwrite | | 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! | | | | | +| Global Usability Manager | 9.1.0 | Overwrite | | Try to back up the THX interface, maybe it will back up the auxiliary interface! | | | http://vella.com | | | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| Central Tactics Director | 4.6.7 | Url | backing up the system won't do anything, we need to parse the neural CSS system! | We need to transmit the back-end RSS transmitter! | | Doyle Osinski,Doyle Osinski,Doyle Osinski,Doyle Osinski | https://valentina.net | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cd493c50d5417319.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cd493c50d5417319.verified.txt new file mode 100644 index 00000000..ff1f5516 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cd493c50d5417319.verified.txt @@ -0,0 +1,31 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| District Creative Designer | 1.4.6 | Url | We need to program the haptic IB panel! | | | | http://cameron.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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Chief Functionality Planner | 5.1.2 | Unknown | | I'll calculate the 1080p HDD system, that should system the HDD system! | | Matt Mills,Matt Mills | http://myrtice.com | | | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | | | +| Corporate Intranet Associate | 7.5.1 | Overwrite | | 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! | | | | | +| Lead Configuration Liaison | 1.8.9 | Expression | | connecting the transmitter won't do anything, we need to program the cross-platform XSS transmitter! | | | http://esther.biz | | | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cd836fa5143aeb9b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cd836fa5143aeb9b.verified.txt new file mode 100644 index 00000000..3a5bbeb4 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cd836fa5143aeb9b.verified.txt @@ -0,0 +1,124 @@ +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Product Usability Coordinator | 5.4.7 | Overwrite | The GB panel is down, synthesize the neural panel so we can synthesize the GB panel! | You can't copy the system without indexing the virtual XSS system! | If we override the hard drive, we can get to the RSS hard drive through the multi-byte RSS hard drive! | | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Future Solutions Officer | 3.3.5 | Unknown | You can't override the hard drive without bypassing the mobile TCP hard drive! | | Use the online IB protocol, then you can back up the online protocol! | | | | +| Direct Functionality Representative | 9.9.2 | Ignored | You can't navigate the capacitor without bypassing the multi-byte JSON capacitor! | Try to quantify the COM feed, maybe it will quantify the multi-byte feed! | We need to bypass the multi-byte ADP panel! | | | | +| District Data Executive | 9.4.3 | Expression | | The FTP transmitter is down, compress the auxiliary transmitter so we can compress the FTP transmitter! | | | | | +| Dynamic Accountability Engineer | 3.1.8 | Url | | Use the online RAM program, then you can generate the online program! | I'll back up the back-end JSON card, that should card the JSON card! | https://gerson.com | | | +| Principal Solutions Facilitator | 7.1.5 | Overwrite | | The RSS pixel is down, calculate the auxiliary pixel so we can calculate the RSS pixel! | | | | | +| Dynamic Division Agent | 4.2.8 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | https://camilla.info | | | +| Internal Program Administrator | 0.3.5 | Expression | We need to navigate the multi-byte PNG application! | The SMS hard drive is down, parse the mobile hard drive so we can parse the SMS hard drive! | The HTTP bandwidth is down, synthesize the 1080p bandwidth so we can synthesize the HTTP bandwidth! | http://viviane.com | | | +| District Configuration Administrator | 8.4.4 | Url | | The XML transmitter is down, calculate the auxiliary transmitter so we can calculate the XML transmitter! | | https://david.name | | | +| District Branding Analyst | 1.9.5 | Unknown | | | | https://paula.net | | | +| Regional Configuration Engineer | 7.3.8 | Expression | Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter! | You can't reboot the matrix without navigating the optical SDD matrix! | | http://roman.org | | | +| Dynamic Directives Officer | 5.8.8 | Overwrite | | parsing the program won't do anything, we need to synthesize the haptic IB program! | If we program the microchip, we can get to the SMS microchip through the auxiliary SMS microchip! | http://rafaela.net | | | +| 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! | | | | | +| Central Infrastructure Agent | 6.1.6 | Expression | | | You can't quantify the program without overriding the online SDD program! | | | | +| Lead Factors Designer | 0.9.2 | Url | You can't quantify the bandwidth without calculating the online RAM bandwidth! | | | | | | +| Principal Branding Assistant | 8.2.6 | Expression | 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! | We need to hack the auxiliary COM hard drive! | | | | +| Central Creative Analyst | 3.6.4 | Overwrite | | programming the driver won't do anything, we need to calculate the primary SMTP driver! | | | | | +| Corporate Data Strategist | 9.0.0 | Url | | | Try to transmit the PNG capacitor, maybe it will transmit the solid state capacitor! | http://eli.net | | | +| Legacy Research Associate | 9.9.5 | Url | | We need to navigate the bluetooth RAM bus! | | https://hildegard.name | | | +| Direct Web Orchestrator | 1.9.1 | Overwrite | You can't copy the alarm without synthesizing the 1080p IB alarm! | | parsing the card won't do anything, we need to synthesize the online SQL card! | https://kade.com | | | +| Central Marketing Assistant | 9.5.8 | Overwrite | I'll navigate the redundant RAM capacitor, that should capacitor the RAM capacitor! | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | http://julia.biz | | | +| National Directives Analyst | 8.2.7 | Overwrite | We need to compress the primary GB array! | | Use the mobile SCSI bus, then you can program the mobile bus! | | | | +| Human Communications Supervisor | 6.0.1 | Overwrite | Use the cross-platform SAS feed, then you can bypass the cross-platform feed! | | I'll override the neural XML application, that should application the XML application! | http://ethan.name | | | +| Dynamic Quality Director | 4.9.9 | Unknown | | | | http://jesse.com | | | +| Corporate Quality Planner | 6.6.3 | Ignored | The IB bus is down, bypass the bluetooth bus so we can bypass the IB bus! | You can't transmit the sensor without connecting the digital THX sensor! | The PCI driver is down, parse the neural driver so we can parse the PCI driver! | | | | +| Corporate Implementation Technician | 2.8.4 | Url | | If we compress the protocol, we can get to the COM protocol through the mobile COM protocol! | Use the multi-byte SMTP program, then you can synthesize the multi-byte program! | | | | +| District Intranet Engineer | 7.5.5 | Unknown | 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! | | | | | +| Lead Intranet Director | 9.2.4 | Url | | You can't parse the bandwidth without transmitting the open-source USB bandwidth! | If we parse the driver, we can get to the GB driver through the neural GB driver! | https://dane.name | | | +| Forward Communications Engineer | 4.5.2 | Overwrite | Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor! | | | | | | +| Senior Communications Director | 3.1.0 | Expression | | | I'll quantify the neural SCSI port, that should port the SCSI port! | | | | +| International Data Associate | 6.4.8 | Unknown | If we navigate the array, we can get to the SQL array through the 1080p SQL array! | You can't generate the bandwidth without parsing the mobile EXE bandwidth! | | | | | +| Principal Intranet Manager | 3.8.8 | Expression | | | | | | | +| Internal Division Agent | 2.4.2 | Expression | | Try to compress the TCP microchip, maybe it will compress the auxiliary microchip! | | | | | +| Forward Factors Director | 5.7.8 | Expression | | | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | | | +| Future Accountability Officer | 2.5.3 | Unknown | | | | http://henderson.biz | | | +| District Implementation Executive | 3.9.4 | Overwrite | | | | http://fae.org | | | +| Regional Communications Officer | 3.3.2 | Overwrite | | We need to calculate the redundant THX feed! | | https://cortez.net | | | +| Legacy Configuration Coordinator | 2.7.5 | Unknown | connecting the panel won't do anything, we need to bypass the wireless AGP panel! | | | | | | +| Product Directives Engineer | 8.2.3 | Unknown | transmitting the bus won't do anything, we need to navigate the online IB bus! | | We need to bypass the wireless PNG bus! | | | | +| Future Configuration Officer | 7.6.0 | Expression | You can't compress the alarm without parsing the optical JBOD alarm! | 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! | | | | +| Direct Mobility Designer | 7.7.3 | Ignored | | | | http://geovanny.info | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Forward Web Assistant | 5.9.6 | 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! | The SSL application is down, reboot the bluetooth application so we can reboot the SSL application! | | | | +| National Functionality Orchestrator | 3.5.0 | Overwrite | If we quantify the array, we can get to the RAM array through the virtual RAM array! | overriding the card won't do anything, we need to hack the auxiliary HTTP card! | If we quantify the feed, we can get to the RAM feed through the neural RAM feed! | https://gina.name | | | +| International Accounts Liaison | 5.6.7 | Expression | We need to program the virtual SCSI circuit! | We need to generate the auxiliary GB hard drive! | transmitting the port won't do anything, we need to override the haptic JSON port! | | | | +| Future Interactions Facilitator | 7.6.9 | Expression | | If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit! | | | | | +| Regional Implementation Technician | 8.8.3 | Ignored | | | | | | | +| District Implementation Orchestrator | 0.1.4 | Url | I'll synthesize the cross-platform CSS panel, that should panel the CSS panel! | You can't navigate the panel without connecting the optical PNG panel! | | | | | +| Dynamic Group Producer | 5.9.5 | Unknown | We need to hack the multi-byte EXE bus! | If we connect the program, we can get to the SQL program through the digital SQL program! | | https://sonny.com | | | +| Product Assurance Facilitator | 3.5.9 | Ignored | | | | | | | +| Dynamic Factors Facilitator | 6.5.2 | Unknown | | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | | http://magnolia.com | | | +| Direct Creative Planner | 9.7.2 | Unknown | Try to connect the TCP circuit, maybe it will connect the back-end circuit! | synthesizing the circuit won't do anything, we need to override the neural XML circuit! | bypassing the matrix won't do anything, we need to copy the wireless PCI matrix! | | | | +| International Optimization Coordinator | 6.5.5 | Ignored | | | If we reboot the system, we can get to the SQL system through the mobile SQL system! | http://antoinette.org | | | +| International Brand Strategist | 3.9.3 | Ignored | | | I'll hack the optical COM alarm, that should alarm the COM alarm! | https://rowena.info | | | +| Forward Integration Assistant | 4.8.5 | Expression | | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| Product Tactics Technician | 3.8.3 | Overwrite | If we index the protocol, we can get to the FTP protocol through the online FTP protocol! | Try to synthesize the SDD hard drive, maybe it will synthesize the bluetooth hard drive! | | https://jewel.name | | | +| Direct Data Designer | 8.4.8 | Unknown | | | We need to transmit the virtual JSON bus! | | | | +| Central Marketing Orchestrator | 3.3.1 | Overwrite | | Try to parse the IB driver, maybe it will parse the 1080p driver! | We need to connect the bluetooth RSS application! | https://brice.net | | | +| Dynamic Creative Designer | 7.5.8 | Expression | The XML system is down, hack the bluetooth system so we can hack the XML system! | | The GB program is down, program the back-end program so we can program the GB program! | http://daniela.name | | | +| Corporate Group Planner | 9.2.2 | Ignored | | | We need to reboot the virtual RSS alarm! | | | | +| Corporate Identity Coordinator | 9.8.3 | Url | | If we navigate the bus, we can get to the HDD bus through the primary HDD bus! | | | | | +| Senior Optimization Assistant | 3.6.0 | Ignored | | overriding the pixel won't do anything, we need to copy the optical JSON pixel! | Try to compress the SMS bus, maybe it will compress the bluetooth bus! | http://akeem.info | | | +| Product Infrastructure Supervisor | 8.1.1 | Ignored | | | | https://merle.com | | | +| District Optimization Manager | 4.0.4 | Ignored | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | Try to program the CSS circuit, maybe it will program the auxiliary circuit! | | | | +| Direct Factors Representative | 0.5.2 | Overwrite | You can't override the bandwidth without navigating the auxiliary ADP bandwidth! | backing up the system won't do anything, we need to synthesize the digital AI system! | | | | | +| Direct Usability Analyst | 3.4.8 | Overwrite | hacking the protocol won't do anything, we need to bypass the back-end SDD protocol! | Try to quantify the EXE program, maybe it will quantify the auxiliary program! | The FTP program is down, override the digital program so we can override the FTP program! | https://maritza.com | | | +| Forward Division Strategist | 5.7.1 | Unknown | You can't reboot the program without transmitting the mobile SMTP program! | The SCSI circuit is down, index the open-source circuit so we can index the SCSI circuit! | Use the solid state HTTP microchip, then you can back up the solid state microchip! | https://esperanza.name | | | +| Human Program Analyst | 3.1.8 | Expression | If we back up the application, we can get to the USB application through the cross-platform USB application! | | | http://efrain.org | | | +| Corporate Tactics Strategist | 9.9.9 | Ignored | | copying the alarm won't do anything, we need to index the open-source TCP alarm! | generating the matrix won't do anything, we need to parse the solid state GB matrix! | | | | +| Senior Metrics Assistant | 8.7.4 | Unknown | | 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 Assurance Officer | 0.3.1 | Ignored | I'll navigate the digital CSS sensor, that should sensor the CSS sensor! | | | https://clementine.info | | | +| Regional Solutions Supervisor | 1.8.2 | Ignored | You can't parse the system without compressing the haptic GB system! | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | https://lance.net | | | +| Forward Infrastructure Developer | 7.5.6 | Unknown | Try to override the SCSI microchip, maybe it will override the haptic microchip! | programming the monitor won't do anything, we need to parse the online XML monitor! | You can't index the circuit without copying the auxiliary RSS circuit! | | | | +| Internal Factors Designer | 1.9.6 | Url | | | | | | | +| International Data Coordinator | 1.7.7 | Unknown | | connecting the system won't do anything, we need to navigate the solid state HDD system! | | | | | +| Dynamic Functionality Strategist | 5.8.0 | Url | Use the digital HTTP card, then you can reboot the digital card! | The CSS port is down, quantify the virtual port so we can quantify the CSS port! | | http://filiberto.net | | | +| Principal Accounts Officer | 2.1.8 | Overwrite | 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! | | | | +| Senior Integration Engineer | 4.4.3 | Url | | | | | | | +| Future Marketing Technician | 7.6.7 | Unknown | | overriding the firewall won't do anything, we need to reboot the open-source COM firewall! | | http://abbey.biz | | | +| Investor Accountability Officer | 2.4.3 | Unknown | | Use the digital XSS hard drive, then you can compress the digital hard drive! | You can't generate the card without synthesizing the bluetooth PNG card! | | | | +| Senior Identity Designer | 9.9.3 | Ignored | | | You can't navigate the bandwidth without compressing the open-source AI bandwidth! | https://devyn.info | | | +| Dynamic Quality Analyst | 0.9.5 | Unknown | We need to index the optical HTTP application! | 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! | | | | +| Forward Data Administrator | 9.0.6 | Overwrite | If we navigate the pixel, we can get to the SCSI pixel through the bluetooth SCSI pixel! | I'll program the multi-byte AI transmitter, that should transmitter the AI transmitter! | | https://serenity.info | | | +| Human Division Agent | 2.2.7 | Expression | | 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 Security Developer | 0.8.7 | Url | You can't back up the array without parsing the haptic CSS array! | | | https://adan.net | | | +| Legacy Interactions Analyst | 3.0.8 | Url | hacking the hard drive won't do anything, we need to generate the open-source RSS hard drive! | connecting the system won't do anything, we need to synthesize the mobile ADP system! | | | | | +| Global Markets Director | 3.4.9 | Unknown | The RAM card is down, override the open-source card so we can override the RAM card! | | | | | | +| Human Accounts Representative | 4.5.5 | Url | | | The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall! | https://darien.net | | | +| Dynamic Applications Producer | 0.4.7 | Url | Try to input the AI sensor, maybe it will input the digital sensor! | If we program the array, we can get to the JBOD array through the primary JBOD array! | | http://horace.com | | | +| Internal Data Designer | 9.5.2 | Unknown | | hacking the card won't do anything, we need to hack the neural COM card! | The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive! | https://liana.com | | | +| Forward Creative Developer | 9.6.7 | Unknown | | I'll transmit the online SSL feed, that should feed the SSL feed! | We need to synthesize the cross-platform SMS circuit! | http://pearline.com | | | +| Regional Security Engineer | 5.8.4 | Unknown | | | I'll hack the cross-platform SSL array, that should array the SSL array! | | | | +| Legacy Infrastructure Producer | 1.1.2 | Unknown | | If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit! | | | | | +| Corporate Infrastructure Executive | 4.8.1 | Overwrite | | | Try to index the FTP transmitter, maybe it will index the bluetooth transmitter! | https://justice.info | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| Future Accounts Architect | 9.1.8 | Ignored | You can't bypass the firewall without indexing the multi-byte COM firewall! | | | https://fermin.biz | | | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Human Response Executive | 6.4.4 | Unknown | If we transmit the matrix, we can get to the SDD matrix through the mobile SDD matrix! | | | https://maida.org | | | +| Legacy Metrics Planner | 9.5.0 | Ignored | 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! | | | | +| Human Configuration Assistant | 0.1.1 | Overwrite | I'll bypass the solid state SMS system, that should system the SMS system! | | parsing the driver won't do anything, we need to program the auxiliary IB driver! | http://frederick.com | | | +| Customer Optimization Engineer | 3.9.7 | Ignored | The JBOD hard drive is down, copy the wireless hard drive so we can copy the JBOD hard drive! | If we synthesize the bus, we can get to the EXE bus through the online EXE bus! | We need to override the auxiliary AGP firewall! | | | | +| Forward Optimization Architect | 8.7.9 | Overwrite | | | backing up the feed won't do anything, we need to compress the haptic SMTP feed! | https://kyle.net | | | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cde34fc6bbb134fe.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cde34fc6bbb134fe.verified.txt new file mode 100644 index 00000000..5ca949e9 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cde34fc6bbb134fe.verified.txt @@ -0,0 +1,127 @@ +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Corporate Marketing Strategist | 3.8.5 | Ignored | | | Use the redundant JSON application, then you can program the redundant application! | Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch | | Naomi | http://mckenna.net | +| | | | | | | | | Jalyn | https://katharina.name | +| | | | | | | | | Kane | http://beulah.biz | +| | | | | | | | | Eleanora | http://birdie.net | +| | | | | | | | | Alvah | http://keanu.net | +| Dynamic Group Associate | 6.6.1 | Ignored | We need to input the open-source SMTP bus! | | | | http://kian.name | Burley | http://lemuel.com | +| | | | | | | | | Brenden | http://agnes.net | +| | | | | | | | | Urban | https://micheal.name | +| | | | | | | | | Ida | https://murray.org | +| | | | | | | | | Samanta | http://assunta.biz | +| | | | | | | | | Florencio | http://bradford.info | +| | | | | | | | | Marcella | http://ray.net | +| | | | | | | | | Gunnar | https://elissa.net | +| | | | | | | | | Maud | https://edgar.name | +| | | | | | | | | Angelina | https://adonis.biz | +| Product Data Liaison | 7.8.8 | Unknown | Try to calculate the GB card, maybe it will calculate the wireless card! | | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | | | Lewis | https://alisa.com | +| | | | | | | | | Delores | https://layne.name | +| | | | | | | | | Delphine | https://katlynn.org | +| | | | | | | | | Meredith | https://johanna.info | +| | | | | | | | | Jacklyn | https://kadin.com | +| | | | | | | | | Hardy | https://donna.info | +| National Accountability Producer | 6.9.7 | Unknown | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | https://linwood.biz | Travon | https://dedrick.name | +| | | | | | | | | Elissa | http://kaci.org | +| | | | | | | | | Brandi | https://aniyah.com | +| | | | | | | | | Tyson | https://bonita.org | +| | | | | | | | | Jazlyn | http://madonna.net | +| | | | | | | | | Deangelo | https://jess.info | +| | | | | | | | | Alvah | https://hans.net | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| International Intranet Planner | 1.3.4 | Expression | 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 | Ahmad | https://lupe.com | +| | | | | | | | | Randi | https://jaiden.biz | +| | | | | | | | | Patience | https://marlene.name | +| | | | | | | | | Lenna | https://franco.name | +| | | | | | | | | Kyleigh | https://tevin.name | +| | | | | | | | | Sallie | https://jordane.name | +| | | | | | | | | Willy | https://daija.info | +| | | | | | | | | Jannie | https://retta.net | +| | | | | | | | | Lottie | http://yasmine.com | +| | | | | | | | | Delia | http://khalil.com | +| Investor Operations Director | 5.6.0 | Expression | Try to input the AI microchip, maybe it will input the 1080p microchip! | | If we synthesize the sensor, we can get to the AI sensor through the redundant AI sensor! | | https://alene.info | Elouise | https://ron.com | +| | | | | | | | | Brown | https://cordia.com | +| | | | | | | | | Ericka | https://eugene.com | +| | | | | | | | | Rashad | http://thomas.com | +| | | | | | | | | Antonia | https://marcelle.org | +| Dynamic Solutions Assistant | 5.6.4 | Ignored | navigating the alarm won't do anything, we need to copy the 1080p AGP alarm! | | | Craig Halvorson,Craig Halvorson,Craig Halvorson,Craig Halvorson | http://isabell.info | Tess | http://kailyn.info | +| | | | | | | | | Eileen | http://manley.name | +| | | | | | | | | Conor | https://glenna.name | +| | | | | | | | | Sylvester | http://gaylord.biz | +| | | | | | | | | Maxime | https://tom.com | +| International Research Architect | 3.7.4 | Ignored | | Try to quantify the USB application, maybe it will quantify the mobile application! | If we index the pixel, we can get to the AI pixel through the wireless AI pixel! | | | Madisen | http://raegan.biz | +| | | | | | | | | Cathy | http://giovanna.info | +| | | | | | | | | Ike | https://jerome.biz | +| Global Mobility Technician | 8.6.3 | Unknown | | We need to input the haptic XML port! | | Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante | | Lonie | http://wilburn.org | +| | | | | | | | | Concepcion | http://ed.org | +| | | | | | | | | Amanda | https://sophie.net | +| | | | | | | | | Claudine | http://ofelia.biz | +| | | | | | | | | Petra | http://clare.name | +| | | | | | | | | Ozella | https://verla.name | +| | | | | | | | | Denis | http://pete.com | +| Global Mobility Facilitator | 8.5.9 | Url | | We need to parse the primary PCI protocol! | | Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch | https://itzel.info | Mitchel | http://carleton.name | +| | | | | | | | | Madalyn | http://narciso.net | +| | | | | | | | | Mia | http://nicklaus.net | +| | | | | | | | | Abelardo | http://carolina.name | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| Principal Assurance Representative | 3.8.2 | Ignored | | | | Patsy Erdman,Patsy Erdman,Patsy Erdman,Patsy Erdman | | Jadon | https://amelia.biz | +| | | | | | | | | Toni | http://angie.name | +| | | | | | | | | Ardella | http://melissa.net | +| | | | | | | | | Sandra | http://pearline.org | +| | | | | | | | | Noble | https://dusty.net | +| Forward Tactics Agent | 6.8.8 | Url | | We need to back up the primary SMTP circuit! | The COM bandwidth is down, input the auxiliary bandwidth so we can input the COM bandwidth! | Jon Schulist,Jon Schulist | https://flo.info | Diana | http://eula.name | +| | | | | | | | | Raphael | https://zackery.info | +| | | | | | | | | Nettie | https://brayan.com | +| Investor Division Assistant | 9.6.2 | Url | | I'll parse the primary PCI matrix, that should matrix the PCI matrix! | | | | Nya | http://sunny.biz | +| | | | | | | | | Arlo | https://cordia.info | +| | | | | | | | | Linnie | https://marcos.name | +| | | | | | | | | Luella | http://frederic.name | +| | | | | | | | | Lucinda | https://dion.name | +| | | | | | | | | Jayson | https://ryleigh.net | +| | | | | | | | | Mervin | https://lorenza.net | +| Product Interactions Planner | 7.4.0 | Expression | Try to navigate the PCI matrix, maybe it will navigate the haptic matrix! | | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | http://bertha.net | Rey | https://connie.info | +| | | | | | | | | Hollie | http://rico.name | +| | | | | | | | | Marshall | http://pierce.org | +| | | | | | | | | 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 | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | Julius Abbott | http://celestine.info | Ettie | http://lonny.net | +| | | | | | | | | Onie | https://cassie.biz | +| | | | | | | | | Solon | https://buck.biz | +| Chief Solutions Administrator | 0.4.1 | Unknown | | 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 | Shaun | https://antwan.org | +| | | | | | | | | Hazel | https://forrest.net | +| | | | | | | | | Brianne | https://dorothea.name | +| | | | | | | | | Don | http://torey.com | +| | | | | | | | | Cedrick | https://zachariah.net | +| | | | | | | | | Marcelle | https://adah.org | +| | | | | | | | | Barney | http://erica.org | +| | | | | | | | | Jordi | https://alysha.com | +| | | | | | | | | Kristina | https://pattie.info | +| | | | | | | | | Cory | http://kailey.com | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cde544c38fec4a49.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cde544c38fec4a49.verified.txt new file mode 100644 index 00000000..6c7cd3af --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cde544c38fec4a49.verified.txt @@ -0,0 +1,47 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ce63170c38b9a06a.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ce63170c38b9a06a.verified.txt new file mode 100644 index 00000000..58ecc641 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ce63170c38b9a06a.verified.txt @@ -0,0 +1,28 @@ +| ------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------------------- | ----------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------------------- | ----------- | --------------------- | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| ------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------------------- | ----------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cf29390c8fb84443.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cf29390c8fb84443.verified.txt new file mode 100644 index 00000000..d9225036 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_cf29390c8fb84443.verified.txt @@ -0,0 +1,19 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0451e45d55d4a91.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0451e45d55d4a91.verified.txt new file mode 100644 index 00000000..17adc1da --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0451e45d55d4a91.verified.txt @@ -0,0 +1,18 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Product Infrastructure Supervisor | 8.1.1 | Ignored | | | | https://merle.com | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Regional Solutions Supervisor | 1.8.2 | Ignored | You can't parse the system without compressing the haptic GB system! | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | https://lance.net | | | +| Central Infrastructure Agent | 6.1.6 | Expression | | | You can't quantify the program without overriding the online SDD program! | | | | +| Legacy Metrics Planner | 9.5.0 | Ignored | 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 Identity Designer | 9.9.3 | Ignored | | | You can't navigate the bandwidth without compressing the open-source AI bandwidth! | https://devyn.info | | | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0491e20745f503b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0491e20745f503b.verified.txt new file mode 100644 index 00000000..21678e9b --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0491e20745f503b.verified.txt @@ -0,0 +1,44 @@ +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Senior Optimization Assistant | 3.6.0 | Ignored | | overriding the pixel won't do anything, we need to copy the optical JSON pixel! | Try to compress the SMS bus, maybe it will compress the bluetooth bus! | http://akeem.info | | | +| Legacy Interactions Analyst | 3.0.8 | Url | hacking the hard drive won't do anything, we need to generate the open-source RSS hard drive! | connecting the system won't do anything, we need to synthesize the mobile ADP system! | | | | | +| Customer Assurance Officer | 0.3.1 | Ignored | I'll navigate the digital CSS sensor, that should sensor the CSS sensor! | | | https://clementine.info | | | +| National Directives Analyst | 8.2.7 | Overwrite | We need to compress the primary GB array! | | Use the mobile SCSI bus, then you can program the mobile bus! | | | | +| Forward Integration Assistant | 4.8.5 | Expression | | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| 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 Identity Designer | 9.9.3 | Ignored | | | You can't navigate the bandwidth without compressing the open-source AI bandwidth! | https://devyn.info | | | +| Central Infrastructure Agent | 6.1.6 | Expression | | | You can't quantify the program without overriding the online SDD program! | | | | +| Central Marketing Assistant | 9.5.8 | Overwrite | I'll navigate the redundant RAM capacitor, that should capacitor the RAM capacitor! | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | http://julia.biz | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Optimization Manager | 4.0.4 | Ignored | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | Try to program the CSS circuit, maybe it will program the auxiliary circuit! | | | | +| Legacy Research Associate | 9.9.5 | Url | | We need to navigate the bluetooth RAM bus! | | https://hildegard.name | | | +| Forward Creative Developer | 9.6.7 | Unknown | | I'll transmit the online SSL feed, that should feed the SSL feed! | We need to synthesize the cross-platform SMS circuit! | http://pearline.com | | | +| Product Infrastructure Supervisor | 8.1.1 | Ignored | | | | https://merle.com | | | +| Corporate Tactics Strategist | 9.9.9 | Ignored | | copying the alarm won't do anything, we need to index the open-source TCP alarm! | generating the matrix won't do anything, we need to parse the solid state GB matrix! | | | | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Group Planner | 9.2.2 | Ignored | | | We need to reboot the virtual RSS alarm! | | | | +| Regional Solutions Supervisor | 1.8.2 | Ignored | You can't parse the system without compressing the haptic GB system! | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | https://lance.net | | | +| District Branding Analyst | 1.9.5 | Unknown | | | | https://paula.net | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Forward Factors Director | 5.7.8 | Expression | | | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | | | +| Principal Branding Assistant | 8.2.6 | Expression | 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! | We need to hack the auxiliary COM hard drive! | | | | +| Legacy Metrics Planner | 9.5.0 | Ignored | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0660aa623876ba6.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0660aa623876ba6.verified.txt new file mode 100644 index 00000000..27af4d32 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0660aa623876ba6.verified.txt @@ -0,0 +1,188 @@ +| ------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Communications Engineer | 6.9.4 | Overwrite | | | Tanya Reinger,Tanya Reinger,Tanya Reinger | http://tito.name | | | +| National Assurance Planner | 2.7.7 | Unknown | | I'll reboot the online AGP alarm, that should alarm the AGP alarm! | Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag | | | | +| Lead Program Technician | 5.8.9 | Expression | | We need to transmit the back-end AGP sensor! | Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer | http://curtis.org | | | +| Dynamic Security Specialist | 7.8.5 | Overwrite | Try to input the GB pixel, maybe it will input the wireless pixel! | You can't transmit the bus without indexing the digital TCP bus! | Guy Waters,Guy Waters | http://nova.biz | | | +| District Interactions Supervisor | 4.5.2 | Url | The XSS capacitor is down, generate the bluetooth capacitor so we can generate the XSS capacitor! | The ADP firewall is down, input the primary firewall so we can input the ADP firewall! | | | | | +| Central Division Administrator | 1.0.4 | Overwrite | We need to program the optical COM microchip! | We need to hack the haptic SAS microchip! | | | | | +| Dynamic Division Representative | 7.3.5 | Unknown | | I'll index the haptic FTP alarm, that should alarm the FTP alarm! | Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson | http://taurean.net | | | +| Dynamic Security Director | 0.0.2 | Url | transmitting the feed won't do anything, we need to navigate the redundant SDD feed! | Try to parse the HTTP port, maybe it will parse the bluetooth port! | Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block | | | | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Global Paradigm Assistant | 8.0.5 | Expression | We need to calculate the solid state HTTP hard drive! | | | https://randy.org | | | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| Principal Operations Assistant | 0.9.0 | Url | I'll copy the auxiliary HDD bus, that should bus the HDD bus! | I'll copy the digital USB circuit, that should circuit the USB circuit! | | | | | +| Customer Web Assistant | 1.9.0 | Unknown | | | | | | | +| Chief Infrastructure Specialist | 9.0.5 | Overwrite | hacking the port won't do anything, we need to back up the optical SMS port! | | Jackie Schumm | | | | +| Future Configuration Officer | 7.6.0 | Unknown | You can't compress the alarm without parsing the optical JBOD alarm! | I'll compress the back-end SSL system, that should system the SSL system! | Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie | | | | +| International Branding Producer | 3.8.2 | Expression | We need to generate the solid state AGP microchip! | | | | | | +| International Brand Strategist | 3.9.3 | Url | | | Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy | https://rowena.info | | | +| District Optimization Technician | 5.2.3 | Overwrite | | | Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti | https://douglas.info | | | +| Global Optimization Engineer | 8.7.9 | Expression | | quantifying the transmitter won't do anything, we need to synthesize the auxiliary FTP transmitter! | | http://aniya.org | | | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | | | +| Dynamic Branding Manager | 1.4.0 | Overwrite | You can't navigate the application without generating the cross-platform COM application! | Try to program the FTP alarm, maybe it will program the virtual alarm! | | http://dario.info | | | +| Global Identity Supervisor | 0.9.1 | Overwrite | | | | | | | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| Dynamic Implementation Engineer | 6.7.1 | Overwrite | We need to transmit the open-source EXE interface! | | | http://margie.info | | | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| Legacy Usability Coordinator | 5.8.8 | Overwrite | Try to calculate the PNG port, maybe it will calculate the back-end port! | | | http://thora.info | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Product Directives Engineer | 8.2.3 | Unknown | transmitting the bus won't do anything, we need to navigate the online IB bus! | | Maggie Lindgren | | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | | | +| Investor Quality Associate | 0.5.1 | Expression | | Try to reboot the SSL alarm, maybe it will reboot the solid state alarm! | Carrie Hansen,Carrie Hansen,Carrie Hansen,Carrie Hansen | https://ezequiel.biz | | | +| Product Functionality Supervisor | 9.4.5 | Overwrite | Use the 1080p AI microchip, then you can reboot the 1080p microchip! | Use the open-source ADP matrix, then you can copy the open-source matrix! | | | | | +| Customer Branding Orchestrator | 8.3.7 | Overwrite | | We need to bypass the neural USB capacitor! | Nora Dietrich | http://nona.com | | | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Direct Brand Director | 4.7.4 | Url | You can't navigate the capacitor without programming the solid state SQL capacitor! | | | | | | +| Chief Factors Developer | 5.9.5 | Url | | Try to connect the ADP system, maybe it will connect the solid state system! | Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady | | | | +| Regional Functionality Agent | 5.9.9 | Overwrite | We need to index the 1080p SAS hard drive! | I'll connect the digital JBOD application, that should application the JBOD application! | Gloria Williamson,Gloria Williamson,Gloria Williamson,Gloria Williamson | http://arthur.net | | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | | | +| Corporate Intranet Specialist | 3.5.6 | Expression | | | Edmund Lehner,Edmund Lehner,Edmund Lehner,Edmund Lehner | | | | +| Forward Data Orchestrator | 3.3.5 | Expression | Use the haptic XML driver, then you can index the haptic driver! | compressing the system won't do anything, we need to compress the optical RSS system! | | | | | +| Regional Optimization Administrator | 3.6.4 | Expression | | I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive! | | http://serenity.info | | | +| Human Identity Representative | 4.1.5 | Overwrite | The SAS bus is down, program the neural bus so we can program the SAS bus! | | Joyce Auer,Joyce Auer,Joyce Auer | http://alyce.biz | | | +| Principal Brand Executive | 7.2.7 | Unknown | | | | https://dariana.com | | | +| International Solutions Planner | 9.0.0 | Url | Use the multi-byte SMTP program, then you can synthesize the multi-byte program! | | | | | | +| Senior Solutions Strategist | 7.5.0 | 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 | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| Forward Usability Specialist | 5.6.9 | Overwrite | I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth! | | | | | | +| Lead Operations Supervisor | 4.5.2 | Expression | The AI panel is down, transmit the open-source panel so we can transmit the AI panel! | | | | | | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Direct Division Officer | 6.5.6 | Url | transmitting the protocol won't do anything, we need to generate the multi-byte THX protocol! | | Glenda Schuppe,Glenda Schuppe | http://catherine.name | | | +| Customer Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| Senior Configuration Developer | 4.0.9 | Url | Use the primary SCSI matrix, then you can program the primary matrix! | If we parse the interface, we can get to the JSON interface through the mobile JSON interface! | Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle | | | | +| Global Optimization Architect | 1.5.0 | Unknown | Try to navigate the SCSI sensor, maybe it will navigate the mobile sensor! | | | | | | +| Lead Solutions Technician | 1.5.7 | Unknown | | | | | | | +| Corporate Marketing Coordinator | 3.6.1 | Overwrite | | | | https://marcos.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 | | | +| Human Tactics Facilitator | 5.7.0 | Url | Try to bypass the HTTP application, maybe it will bypass the digital application! | | | | | | +| Product Solutions Manager | 9.5.2 | Overwrite | I'll hack the primary SDD card, that should card the SDD card! | hacking the transmitter won't do anything, we need to index the open-source CSS transmitter! | Sergio Bailey,Sergio Bailey,Sergio Bailey | | | | +| Corporate Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 | +| Human Markets Planner | 5.0.1 | Expression | Try to back up the COM driver, maybe it will back up the bluetooth driver! | | | | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | | | +| Customer Mobility Assistant | 4.2.9 | 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 | http://adonis.biz | | | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | | | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| Human Program Analyst | 3.1.8 | Expression | If we back up the application, we can get to the USB application through the cross-platform USB application! | | | http://efrain.org | | | +| Principal Intranet Architect | 4.9.3 | Unknown | | | | | | | +| Chief Program Associate | 2.6.7 | Unknown | We need to compress the optical PNG array! | | Wilbert Kunze,Wilbert Kunze,Wilbert Kunze,Wilbert Kunze | http://coy.info | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | | | +| Central Research Technician | 2.8.8 | Url | | You can't generate the program without connecting the bluetooth USB program! | | | | | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | | | +| Dynamic Factors Associate | 1.8.3 | Unknown | | You can't navigate the panel without calculating the open-source THX panel! | | http://dovie.name | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| Dynamic Data Technician | 4.2.3 | Url | I'll copy the optical RAM feed, that should feed the RAM feed! | | June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds | http://nia.info | | | +| International Tactics Administrator | 9.9.9 | Url | | | | | | | +| Customer Program Developer | 2.9.8 | Expression | | You can't transmit the pixel without calculating the bluetooth FTP pixel! | | http://lenora.com | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | | | +| Regional Directives Liaison | 4.7.8 | Expression | If we connect the interface, we can get to the SCSI interface through the auxiliary SCSI interface! | | Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic | https://glennie.biz | | | +| Customer Solutions Officer | 4.5.2 | Expression | You can't copy the matrix without compressing the wireless AGP matrix! | | | https://rylan.name | | | +| Dynamic Solutions Agent | 0.0.5 | Overwrite | Use the haptic USB card, then you can navigate the haptic card! | | | | | | +| Human Accounts Orchestrator | 4.1.6 | Url | | | | | | | +| Dynamic Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| 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 | | | | +| Investor Tactics Director | 0.4.3 | Expression | | | | https://aylin.com | | | +| Human Paradigm Assistant | 8.8.8 | Expression | | | Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich | | | | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | | | +| Regional Metrics Strategist | 1.2.1 | Unknown | | Try to override the GB driver, maybe it will override the digital driver! | | | | | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.biz | +| Future Tactics Assistant | 1.5.5 | Expression | The IB sensor is down, reboot the virtual sensor so we can reboot the IB sensor! | If we calculate the matrix, we can get to the SMS matrix through the bluetooth SMS matrix! | | https://giovanny.net | | | +| Investor Accounts Facilitator | 7.7.8 | Expression | | | Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman | http://scottie.biz | | | +| Legacy Security Facilitator | 1.9.0 | Expression | | Use the cross-platform ADP alarm, then you can back up the cross-platform alarm! | | https://edythe.info | | | +| Legacy Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| District Assurance Technician | 8.5.5 | Overwrite | | | | http://zander.com | | | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0add0786c18d524.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0add0786c18d524.verified.txt new file mode 100644 index 00000000..1542057a --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0add0786c18d524.verified.txt @@ -0,0 +1,142 @@ +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Customer Program Consultant | 5.0.4 | Ignored | Try to compress the GB system, maybe it will compress the neural system! | Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan | http://kieran.biz | Bettie | http://edmund.info | +| | | | | | | Sadie | http://horacio.org | +| | | | | | | Loraine | https://sandra.org | +| | | | | | | Emil | http://dayana.net | +| Product Identity Analyst | 5.9.3 | Expression | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | | Rey | https://connie.info | +| | | | | | | Hollie | http://rico.name | +| | | | | | | Marshall | http://pierce.org | +| | | | | | | 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 | +| Lead Creative Administrator | 9.0.0 | Overwrite | Use the virtual RAM monitor, then you can override the virtual monitor! | | https://roderick.net | Hildegard | http://conner.name | +| | | | | | | 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 | +| | | | | | | Irving | https://sydnie.org | +| Chief Data Director | 2.1.5 | Unknown | Use the haptic PCI bandwidth, then you can generate the haptic bandwidth! | | | Earnestine | http://nathanial.biz | +| | | | | | | Connor | https://augustus.net | +| | | | | | | Araceli | http://hailey.biz | +| | | | | | | Janessa | https://craig.com | +| | | | | | | Erica | http://kristin.org | +| | | | | | | Alek | http://shany.biz | +| | | | | | | Camren | http://joany.info | +| Future Mobility Strategist | 4.7.6 | Overwrite | Use the virtual ADP bandwidth, then you can calculate the virtual bandwidth! | | http://gerardo.net | Cathy | http://giovanna.info | +| | | | | | | Ike | https://jerome.biz | +| | | | | | | Emerald | https://camren.net | +| | | | | | | Sheila | https://garry.org | +| Corporate Accountability Designer | 0.8.0 | Overwrite | We need to hack the online FTP application! | | http://taya.info | Carlee | http://britney.name | +| | | | | | | Tess | http://julian.biz | +| | | | | | | Isadore | http://billy.net | +| | | | | | | Alice | http://vern.net | +| | | | | | | King | http://trace.net | +| | | | | | | Carmela | https://adolf.info | +| | | | | | | Sherman | http://alec.net | +| | | | | | | Lamar | http://deion.org | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Response Consultant | 9.3.1 | Unknown | | | https://ulices.biz | Ari | https://chad.com | +| | | | | | | Yvonne | http://jada.name | +| | | | | | | Noemie | https://kayley.name | +| | | | | | | Brandon | http://kristopher.name | +| | | | | | | Maggie | http://kimberly.info | +| | | | | | | Veronica | https://mya.net | +| | | | | | | Marty | https://obie.net | +| | | | | | | Braxton | http://flavio.net | +| | | | | | | Jeramie | http://jaycee.net | +| Product Marketing Developer | 3.3.6 | Unknown | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | Lewis | https://alisa.com | +| | | | | | | Delores | https://layne.name | +| | | | | | | Delphine | https://katlynn.org | +| | | | | | | Meredith | https://johanna.info | +| | | | | | | Jacklyn | https://kadin.com | +| | | | | | | Hardy | https://donna.info | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| Investor Identity Developer | 4.2.0 | Url | | Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| | | | | | | Keely | http://obie.org | +| | | | | | | Caleigh | https://albin.info | +| | | | | | | Flavie | http://lavonne.biz | +| | | | | | | Kaitlyn | http://osborne.org | +| Dynamic Group Associate | 6.6.1 | Unknown | We need to input the open-source SMTP bus! | | http://kian.name | Neil | https://burley.info | +| | | | | | | Lemuel | http://brenden.info | +| | | | | | | Agnes | https://urban.org | +| | | | | | | Micheal | https://ida.net | +| | | | | | | Murray | https://samanta.com | +| | | | | | | Assunta | http://florencio.com | +| Investor Creative Architect | 4.5.6 | Overwrite | | Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| | | | | | | Retta | https://lottie.biz | +| | | | | | | Yasmine | http://delia.com | +| | | | | | | Khalil | http://jewel.net | +| | | | | | | Roy | https://johanna.org | +| | | | | | | Price | https://itzel.info | +| | | | | | | Dalton | https://daren.info | +| | | | | | | Arnold | http://arlo.org | +| Future Group Assistant | 1.7.9 | Expression | Use the multi-byte AI port, then you can reboot the multi-byte port! | | | Darien | http://mitchel.biz | +| | | | | | | Carleton | https://madalyn.com | +| | | | | | | Narciso | https://mia.com | +| | | | | | | Nicklaus | https://abelardo.com | +| | | | | | | Carolina | https://lindsey.info | +| | | | | | | Rigoberto | https://lou.biz | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Direct Tactics Technician | 2.8.6 | Unknown | Try to quantify the SAS port, maybe it will quantify the wireless port! | | | Demond | http://stefan.name | +| | | | | | | Norval | http://annie.net | +| | | | | | | Destin | http://penelope.name | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| Global Infrastructure Developer | 5.5.0 | Url | generating the application won't do anything, we need to calculate the auxiliary JSON application! | Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger | https://austin.net | 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 | +| Internal Solutions Planner | 1.3.8 | Expression | | Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| | | | | | | Mallory | http://angeline.name | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0b88da63aeac954.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0b88da63aeac954.verified.txt new file mode 100644 index 00000000..130b147b --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0b88da63aeac954.verified.txt @@ -0,0 +1,27 @@ +| ------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| District Mobility Administrator | 3.2.3 | Ignored | | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Global Usability Representative | 3.5.9 | Url | | | | | +| Regional Security Architect | 2.2.5 | Url | | | | | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | +| Forward Quality Producer | 6.3.7 | Overwrite | The CSS microchip is down, back up the bluetooth microchip so we can back up the CSS microchip! | https://jayne.name | | | +| ------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0f31e9c3cdb11c4.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0f31e9c3cdb11c4.verified.txt new file mode 100644 index 00000000..096488d9 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d0f31e9c3cdb11c4.verified.txt @@ -0,0 +1,16 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Investor Intranet Producer | 5.4.1 | Ignored | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | http://hyman.org | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d1712d8c1eee6577.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d1712d8c1eee6577.verified.txt new file mode 100644 index 00000000..cd2e5a5d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d1712d8c1eee6577.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d1b1558b0f02fed1.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d1b1558b0f02fed1.verified.txt new file mode 100644 index 00000000..e65ed6e4 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d1b1558b0f02fed1.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d1b28851232d4815.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d1b28851232d4815.verified.txt new file mode 100644 index 00000000..abdb559c --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d1b28851232d4815.verified.txt @@ -0,0 +1,132 @@ +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Product Usability Coordinator | 5.4.7 | Overwrite | The GB panel is down, synthesize the neural panel so we can synthesize the GB panel! | You can't copy the system without indexing the virtual XSS system! | If we override the hard drive, we can get to the RSS hard drive through the multi-byte RSS hard drive! | | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Future Solutions Officer | 3.3.5 | Unknown | You can't override the hard drive without bypassing the mobile TCP hard drive! | | Use the online IB protocol, then you can back up the online protocol! | | | | +| Direct Functionality Representative | 9.9.2 | Ignored | You can't navigate the capacitor without bypassing the multi-byte JSON capacitor! | Try to quantify the COM feed, maybe it will quantify the multi-byte feed! | We need to bypass the multi-byte ADP panel! | | | | +| Central Creative Analyst | 3.6.4 | Overwrite | | programming the driver won't do anything, we need to calculate the primary SMTP driver! | | | | | +| Dynamic Accountability Engineer | 3.1.8 | Url | | Use the online RAM program, then you can generate the online program! | I'll back up the back-end JSON card, that should card the JSON card! | https://gerson.com | | | +| Senior Integration Engineer | 4.4.3 | Url | | | | | | | +| Future Accountability Officer | 2.5.3 | Unknown | | | | http://henderson.biz | | | +| Principal Accounts Officer | 2.1.8 | Overwrite | 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! | | | | +| District Configuration Administrator | 8.4.4 | Url | | The XML transmitter is down, calculate the auxiliary transmitter so we can calculate the XML transmitter! | | https://david.name | | | +| District Optimization Manager | 4.0.4 | Ignored | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | Try to program the CSS circuit, maybe it will program the auxiliary circuit! | | | | +| Product Infrastructure Supervisor | 8.1.1 | Ignored | | | | https://merle.com | | | +| District Data Executive | 9.4.3 | Expression | | The FTP transmitter is down, compress the auxiliary transmitter so we can compress the FTP transmitter! | | | | | +| Forward Creative Developer | 9.6.7 | Unknown | | I'll transmit the online SSL feed, that should feed the SSL feed! | We need to synthesize the cross-platform SMS circuit! | http://pearline.com | | | +| Lead Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Lead Factors Designer | 0.9.2 | Url | You can't quantify the bandwidth without calculating the online RAM bandwidth! | | | | | | +| Regional Configuration Engineer | 7.3.8 | Expression | Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter! | You can't reboot the matrix without navigating the optical SDD matrix! | | http://roman.org | | | +| Customer Optimization Engineer | 3.9.7 | Ignored | The JBOD hard drive is down, copy the wireless hard drive so we can copy the JBOD hard drive! | If we synthesize the bus, we can get to the EXE bus through the online EXE bus! | We need to override the auxiliary AGP firewall! | | | | +| Regional Security Engineer | 5.8.4 | Unknown | | | I'll hack the cross-platform SSL array, that should array the SSL array! | | | | +| Legacy Research Associate | 9.9.5 | Url | | We need to navigate the bluetooth RAM bus! | | https://hildegard.name | | | +| International Optimization Coordinator | 6.5.5 | Ignored | | | If we reboot the system, we can get to the SQL system through the mobile SQL system! | http://antoinette.org | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| District Branding Analyst | 1.9.5 | Unknown | | | | https://paula.net | | | +| Forward Optimization Architect | 8.7.9 | Overwrite | | | backing up the feed won't do anything, we need to compress the haptic SMTP feed! | https://kyle.net | | | +| Direct Web Orchestrator | 1.9.1 | Overwrite | You can't copy the alarm without synthesizing the 1080p IB alarm! | | parsing the card won't do anything, we need to synthesize the online SQL card! | https://kade.com | | | +| Dynamic Group Producer | 5.9.5 | Unknown | We need to hack the multi-byte EXE bus! | If we connect the program, we can get to the SQL program through the digital SQL program! | | https://sonny.com | | | +| Corporate Implementation Technician | 2.8.4 | Url | | If we compress the protocol, we can get to the COM protocol through the mobile COM protocol! | Use the multi-byte SMTP program, then you can synthesize the multi-byte program! | | | | +| Direct Mobility Designer | 7.7.3 | Ignored | | | | http://geovanny.info | | | +| Lead Intranet Director | 9.2.4 | Url | | You can't parse the bandwidth without transmitting the open-source USB bandwidth! | If we parse the driver, we can get to the GB driver through the neural GB driver! | https://dane.name | | | +| Forward Communications Engineer | 4.5.2 | Overwrite | Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor! | | | | | | +| Internal Data Designer | 9.5.2 | Unknown | | hacking the card won't do anything, we need to hack the neural COM card! | The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive! | https://liana.com | | | +| Dynamic Quality Analyst | 0.9.5 | Unknown | We need to index the optical HTTP application! | 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! | | | | +| Legacy Metrics Planner | 9.5.0 | Ignored | 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 Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| Internal Program Administrator | 0.3.5 | Expression | We need to navigate the multi-byte PNG application! | The SMS hard drive is down, parse the mobile hard drive so we can parse the SMS hard drive! | The HTTP bandwidth is down, synthesize the 1080p bandwidth so we can synthesize the HTTP bandwidth! | http://viviane.com | | | +| Senior Communications Director | 3.1.0 | Expression | | | I'll quantify the neural SCSI port, that should port the SCSI port! | | | | +| Legacy Interactions Analyst | 3.0.8 | Url | hacking the hard drive won't do anything, we need to generate the open-source RSS hard drive! | connecting the system won't do anything, we need to synthesize the mobile ADP system! | | | | | +| Corporate Data Strategist | 9.0.0 | Url | | | Try to transmit the PNG capacitor, maybe it will transmit the solid state capacitor! | http://eli.net | | | +| District Implementation Orchestrator | 0.1.4 | Url | I'll synthesize the cross-platform CSS panel, that should panel the CSS panel! | You can't navigate the panel without connecting the optical PNG panel! | | | | | +| Human Program Analyst | 3.1.8 | Expression | If we back up the application, we can get to the USB application through the cross-platform USB application! | | | http://efrain.org | | | +| Future Configuration Officer | 7.6.0 | Expression | You can't compress the alarm without parsing the optical JBOD alarm! | 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! | | | | +| Corporate Quality Planner | 6.6.3 | Ignored | The IB bus is down, bypass the bluetooth bus so we can bypass the IB bus! | You can't transmit the sensor without connecting the digital THX sensor! | The PCI driver is down, parse the neural driver so we can parse the PCI driver! | | | | +| National Functionality Orchestrator | 3.5.0 | Overwrite | If we quantify the array, we can get to the RAM array through the virtual RAM array! | overriding the card won't do anything, we need to hack the auxiliary HTTP card! | If we quantify the feed, we can get to the RAM feed through the neural RAM feed! | https://gina.name | | | +| Future Interactions Facilitator | 7.6.9 | Expression | | If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit! | | | | | +| Dynamic Factors Facilitator | 6.5.2 | Unknown | | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | | http://magnolia.com | | | +| Human Configuration Assistant | 0.1.1 | Overwrite | I'll bypass the solid state SMS system, that should system the SMS system! | | parsing the driver won't do anything, we need to program the auxiliary IB driver! | http://frederick.com | | | +| District Implementation Executive | 3.9.4 | Overwrite | | | | http://fae.org | | | +| Principal Intranet Manager | 3.8.8 | Expression | | | | | | | +| District Intranet Engineer | 7.5.5 | Unknown | 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! | | | | | +| Legacy Infrastructure Producer | 1.1.2 | Unknown | | If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit! | | | | | +| International Data Coordinator | 1.7.7 | Unknown | | connecting the system won't do anything, we need to navigate the solid state HDD system! | | | | | +| Investor Accountability Officer | 2.4.3 | Unknown | | Use the digital XSS hard drive, then you can compress the digital hard drive! | You can't generate the card without synthesizing the bluetooth PNG card! | | | | +| Future Accounts Architect | 9.1.8 | Ignored | You can't bypass the firewall without indexing the multi-byte COM firewall! | | | https://fermin.biz | | | +| Forward Division Strategist | 5.7.1 | Unknown | You can't reboot the program without transmitting the mobile SMTP program! | The SCSI circuit is down, index the open-source circuit so we can index the SCSI circuit! | Use the solid state HTTP microchip, then you can back up the solid state microchip! | https://esperanza.name | | | +| Forward Factors Director | 5.7.8 | Expression | | | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | | | +| Principal Branding Assistant | 8.2.6 | Expression | 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! | We need to hack the auxiliary COM hard drive! | | | | +| Forward Infrastructure Developer | 7.5.6 | Unknown | Try to override the SCSI microchip, maybe it will override the haptic microchip! | programming the monitor won't do anything, we need to parse the online XML monitor! | You can't index the circuit without copying the auxiliary RSS circuit! | | | | +| International Brand Strategist | 3.9.3 | Ignored | | | I'll hack the optical COM alarm, that should alarm the COM alarm! | https://rowena.info | | | +| Dynamic Applications Producer | 0.4.7 | Url | Try to input the AI sensor, maybe it will input the digital sensor! | If we program the array, we can get to the JBOD array through the primary JBOD array! | | http://horace.com | | | +| National Directives Analyst | 8.2.7 | Overwrite | We need to compress the primary GB array! | | Use the mobile SCSI bus, then you can program the mobile bus! | | | | +| Forward Integration Assistant | 4.8.5 | Expression | | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| Corporate Identity Coordinator | 9.8.3 | Url | | If we navigate the bus, we can get to the HDD bus through the primary HDD bus! | | | | | +| Central Marketing Orchestrator | 3.3.1 | Overwrite | | Try to parse the IB driver, maybe it will parse the 1080p driver! | We need to connect the bluetooth RSS application! | https://brice.net | | | +| Dynamic Security Developer | 0.8.7 | Url | You can't back up the array without parsing the haptic CSS array! | | | https://adan.net | | | +| Central Marketing Assistant | 9.5.8 | Overwrite | I'll navigate the redundant RAM capacitor, that should capacitor the RAM capacitor! | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | http://julia.biz | | | +| Direct Data Designer | 8.4.8 | Unknown | | | We need to transmit the virtual JSON bus! | | | | +| Forward Web Assistant | 5.9.6 | 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! | The SSL application is down, reboot the bluetooth application so we can reboot the SSL application! | | | | +| Product Tactics Technician | 3.8.3 | Overwrite | If we index the protocol, we can get to the FTP protocol through the online FTP protocol! | Try to synthesize the SDD hard drive, maybe it will synthesize the bluetooth hard drive! | | https://jewel.name | | | +| Direct Factors Representative | 0.5.2 | Overwrite | You can't override the bandwidth without navigating the auxiliary ADP bandwidth! | backing up the system won't do anything, we need to synthesize the digital AI system! | | | | | +| Human Division Agent | 2.2.7 | Expression | | 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 Metrics Assistant | 8.7.4 | Unknown | | 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! | | | | +| Senior Identity Designer | 9.9.3 | Ignored | | | You can't navigate the bandwidth without compressing the open-source AI bandwidth! | https://devyn.info | | | +| Central Infrastructure Agent | 6.1.6 | Expression | | | You can't quantify the program without overriding the online SDD program! | | | | +| International Accounts Liaison | 5.6.7 | Expression | We need to program the virtual SCSI circuit! | We need to generate the auxiliary GB hard drive! | transmitting the port won't do anything, we need to override the haptic JSON port! | | | | +| Internal Factors Designer | 1.9.6 | Url | | | | | | | +| Regional Implementation Technician | 8.8.3 | Ignored | | | | | | | +| Dynamic Division Agent | 4.2.8 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | https://camilla.info | | | +| Human Accounts Representative | 4.5.5 | Url | | | The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall! | https://darien.net | | | +| Customer Assurance Officer | 0.3.1 | Ignored | I'll navigate the digital CSS sensor, that should sensor the CSS sensor! | | | https://clementine.info | | | +| Senior Optimization Assistant | 3.6.0 | Ignored | | overriding the pixel won't do anything, we need to copy the optical JSON pixel! | Try to compress the SMS bus, maybe it will compress the bluetooth bus! | http://akeem.info | | | +| Internal Division Agent | 2.4.2 | Expression | | Try to compress the TCP microchip, maybe it will compress the auxiliary microchip! | | | | | +| Direct Usability Analyst | 3.4.8 | Overwrite | hacking the protocol won't do anything, we need to bypass the back-end SDD protocol! | Try to quantify the EXE program, maybe it will quantify the auxiliary program! | The FTP program is down, override the digital program so we can override the FTP program! | https://maritza.com | | | +| Corporate Tactics Strategist | 9.9.9 | Ignored | | copying the alarm won't do anything, we need to index the open-source TCP alarm! | generating the matrix won't do anything, we need to parse the solid state GB matrix! | | | | +| Corporate Group Planner | 9.2.2 | Ignored | | | We need to reboot the virtual RSS alarm! | | | | +| 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! | | | | | +| Product Directives Engineer | 8.2.3 | Unknown | transmitting the bus won't do anything, we need to navigate the online IB bus! | | We need to bypass the wireless PNG bus! | | | | +| Direct Creative Planner | 9.7.2 | Unknown | Try to connect the TCP circuit, maybe it will connect the back-end circuit! | synthesizing the circuit won't do anything, we need to override the neural XML circuit! | bypassing the matrix won't do anything, we need to copy the wireless PCI matrix! | | | | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Regional Solutions Supervisor | 1.8.2 | Ignored | You can't parse the system without compressing the haptic GB system! | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | https://lance.net | | | +| Dynamic Functionality Strategist | 5.8.0 | Url | Use the digital HTTP card, then you can reboot the digital card! | The CSS port is down, quantify the virtual port so we can quantify the CSS port! | | http://filiberto.net | | | +| Human Response Executive | 6.4.4 | Unknown | If we transmit the matrix, we can get to the SDD matrix through the mobile SDD matrix! | | | https://maida.org | | | +| Principal Solutions Facilitator | 7.1.5 | Overwrite | | The RSS pixel is down, calculate the auxiliary pixel so we can calculate the RSS pixel! | | | | | +| Dynamic Creative Designer | 7.5.8 | Expression | The XML system is down, hack the bluetooth system so we can hack the XML system! | | The GB program is down, program the back-end program so we can program the GB program! | http://daniela.name | | | +| Legacy Configuration Coordinator | 2.7.5 | Unknown | connecting the panel won't do anything, we need to bypass the wireless AGP panel! | | | | | | +| Corporate Infrastructure Executive | 4.8.1 | Overwrite | | | Try to index the FTP transmitter, maybe it will index the bluetooth transmitter! | https://justice.info | | | +| Human Communications Supervisor | 6.0.1 | Overwrite | Use the cross-platform SAS feed, then you can bypass the cross-platform feed! | | I'll override the neural XML application, that should application the XML application! | http://ethan.name | | | +| Dynamic Quality Director | 4.9.9 | Unknown | | | | http://jesse.com | | | +| Future Marketing Technician | 7.6.7 | Unknown | | overriding the firewall won't do anything, we need to reboot the open-source COM firewall! | | http://abbey.biz | | | +| Dynamic Directives Officer | 5.8.8 | Overwrite | | parsing the program won't do anything, we need to synthesize the haptic IB program! | If we program the microchip, we can get to the SMS microchip through the auxiliary SMS microchip! | http://rafaela.net | | | +| Forward Data Administrator | 9.0.6 | Overwrite | If we navigate the pixel, we can get to the SCSI pixel through the bluetooth SCSI pixel! | I'll program the multi-byte AI transmitter, that should transmitter the AI transmitter! | | https://serenity.info | | | +| Global Markets Director | 3.4.9 | Unknown | The RAM card is down, override the open-source card so we can override the RAM card! | | | | | | +| International Data Associate | 6.4.8 | Unknown | If we navigate the array, we can get to the SQL array through the 1080p SQL array! | You can't generate the bandwidth without parsing the mobile EXE bandwidth! | | | | | +| Product Assurance Facilitator | 3.5.9 | Ignored | | | | | | | +| Regional Communications Officer | 3.3.2 | Overwrite | | We need to calculate the redundant THX feed! | | https://cortez.net | | | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d1dd500611abf717.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d1dd500611abf717.verified.txt new file mode 100644 index 00000000..b36671fd --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d1dd500611abf717.verified.txt @@ -0,0 +1,35 @@ +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Senior Brand Developer | 4.4.1 | Ignored | If we override the system, we can get to the CSS system through the neural CSS system! | http://adelbert.net | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| | | | | | Libby | http://wade.biz | +| | | | | | Leola | https://pietro.info | +| | | | | | Arch | http://hazle.org | +| | | | | | Eldred | http://gabriel.net | +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d201d809b93bd437.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d201d809b93bd437.verified.txt new file mode 100644 index 00000000..3af9f2bd --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d201d809b93bd437.verified.txt @@ -0,0 +1,17 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Central Infrastructure Agent | 6.1.6 | Expression | | | You can't quantify the program without overriding the online SDD program! | | | | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d25295493746cb49.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d25295493746cb49.verified.txt new file mode 100644 index 00000000..3d56f299 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d25295493746cb49.verified.txt @@ -0,0 +1,145 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| Internal Solutions Planner | 1.3.8 | Ignored | | The COM application is down, quantify the auxiliary application so we can quantify the COM application! | | Nyah | http://oliver.com | +| | | | | | | Ettie | http://lonny.net | +| | | | | | | Onie | https://cassie.biz | +| | | | | | | Solon | https://buck.biz | +| | | | | | | Taryn | http://hilton.com | +| | | | | | | Isabel | http://rogers.net | +| | | | | | | Bertrand | http://annetta.org | +| | | | | | | Remington | https://efrain.info | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 Brand Associate | 7.6.8 | Ignored | | | https://lauriane.com | Devin | https://ramona.info | +| | | | | | | Alice | http://laverne.info | +| | | | | | | Layne | https://brooks.name | +| | | | | | | Kaitlyn | http://serenity.biz | +| National Creative Engineer | 4.0.0 | Ignored | You can't parse the alarm without overriding the haptic SMTP alarm! | | | Candida | https://craig.biz | +| | | | | | | Timmothy | https://joanny.biz | +| | | | | | | Alfonzo | http://dorothea.org | +| | | | | | | 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 | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Legacy Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Regional Mobility Manager | 2.7.0 | Ignored | | | http://gianni.info | Alvina | http://elouise.name | +| | | | | | | Ron | http://brown.org | +| | | | | | | Cordia | http://ericka.name | +| | | | | | | Eugene | http://rashad.info | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | +| Forward Directives Supervisor | 8.7.6 | Ignored | | The SSL microchip is down, hack the optical microchip so we can hack the SSL microchip! | http://shaun.org | Jadon | https://amelia.biz | +| | | | | | | Toni | http://angie.name | +| | | | | | | Ardella | http://melissa.net | +| | | | | | | Sandra | http://pearline.org | +| | | | | | | Noble | https://dusty.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d282261398dccfb1.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d282261398dccfb1.verified.txt new file mode 100644 index 00000000..612579ea --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d282261398dccfb1.verified.txt @@ -0,0 +1,37 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Product Infrastructure Supervisor | 8.1.1 | Ignored | | | | https://merle.com | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Identity Designer | 9.9.3 | Ignored | | | You can't navigate the bandwidth without compressing the open-source AI bandwidth! | https://devyn.info | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Legacy Metrics Planner | 9.5.0 | Ignored | 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! | | | | +| Regional Solutions Supervisor | 1.8.2 | Ignored | You can't parse the system without compressing the haptic GB system! | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | https://lance.net | | | +| Central Infrastructure Agent | 6.1.6 | Expression | | | You can't quantify the program without overriding the online SDD program! | | | | +| Lead Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d2d3fd8b136f4161.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d2d3fd8b136f4161.verified.txt new file mode 100644 index 00000000..2d571232 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d2d3fd8b136f4161.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d2ee8b534dacb490.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d2ee8b534dacb490.verified.txt new file mode 100644 index 00000000..38a58b36 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d2ee8b534dacb490.verified.txt @@ -0,0 +1,8 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d2fc33554fa326a5.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d2fc33554fa326a5.verified.txt new file mode 100644 index 00000000..7bd70e86 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d2fc33554fa326a5.verified.txt @@ -0,0 +1,29 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Global Implementation Strategist | 5.9.8 | Ignored | | | Colleen Schroeder,Colleen Schroeder | https://enos.info | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Internal Program Designer | 7.2.5 | Ignored | We need to hack the auxiliary COM hard drive! | | | | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d3a5a372198c5c80.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d3a5a372198c5c80.verified.txt new file mode 100644 index 00000000..f34e287c --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d3a5a372198c5c80.verified.txt @@ -0,0 +1,32 @@ +| ------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Regional Security Architect | 2.2.5 | Url | | | | | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | +| Global Usability Representative | 3.5.9 | Url | | | | | +| Forward Quality Producer | 6.3.7 | Overwrite | The CSS microchip is down, back up the bluetooth microchip so we can back up the CSS microchip! | https://jayne.name | | | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| ------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d3cd454a324c37df.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d3cd454a324c37df.verified.txt new file mode 100644 index 00000000..e65ed6e4 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d3cd454a324c37df.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d3d4cbcefd3ec02d.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d3d4cbcefd3ec02d.verified.txt new file mode 100644 index 00000000..b36671fd --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d3d4cbcefd3ec02d.verified.txt @@ -0,0 +1,35 @@ +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Senior Brand Developer | 4.4.1 | Ignored | If we override the system, we can get to the CSS system through the neural CSS system! | http://adelbert.net | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| | | | | | Libby | http://wade.biz | +| | | | | | Leola | https://pietro.info | +| | | | | | Arch | http://hazle.org | +| | | | | | Eldred | http://gabriel.net | +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d406c2e15094b037.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d406c2e15094b037.verified.txt new file mode 100644 index 00000000..eaa18a48 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d406c2e15094b037.verified.txt @@ -0,0 +1,145 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| National Creative Engineer | 4.0.0 | Ignored | You can't parse the alarm without overriding the haptic SMTP alarm! | | | Candida | https://craig.biz | +| | | | | | | Timmothy | https://joanny.biz | +| | | | | | | Alfonzo | http://dorothea.org | +| | | | | | | 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 | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| Regional Mobility Manager | 2.7.0 | Ignored | | | http://gianni.info | Alvina | http://elouise.name | +| | | | | | | Ron | http://brown.org | +| | | | | | | Cordia | http://ericka.name | +| | | | | | | Eugene | http://rashad.info | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Forward Directives Supervisor | 8.7.6 | Ignored | | The SSL microchip is down, hack the optical microchip so we can hack the SSL microchip! | http://shaun.org | Jadon | https://amelia.biz | +| | | | | | | Toni | http://angie.name | +| | | | | | | Ardella | http://melissa.net | +| | | | | | | Sandra | http://pearline.org | +| | | | | | | Noble | https://dusty.net | +| Chief Brand Associate | 7.6.8 | Ignored | | | https://lauriane.com | Devin | https://ramona.info | +| | | | | | | Alice | http://laverne.info | +| | | | | | | Layne | https://brooks.name | +| | | | | | | Kaitlyn | http://serenity.biz | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | Ignored | | The COM application is down, quantify the auxiliary application so we can quantify the COM application! | | Nyah | http://oliver.com | +| | | | | | | Ettie | http://lonny.net | +| | | | | | | Onie | https://cassie.biz | +| | | | | | | Solon | https://buck.biz | +| | | | | | | Taryn | http://hilton.com | +| | | | | | | Isabel | http://rogers.net | +| | | | | | | Bertrand | http://annetta.org | +| | | | | | | Remington | https://efrain.info | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Legacy Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d4a07872f07eaca1.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d4a07872f07eaca1.verified.txt new file mode 100644 index 00000000..80f20af9 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d4a07872f07eaca1.verified.txt @@ -0,0 +1,39 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d4b36c7288bd5268.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d4b36c7288bd5268.verified.txt new file mode 100644 index 00000000..884ab88f --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d4b36c7288bd5268.verified.txt @@ -0,0 +1,40 @@ +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d4cb9d89826451c4.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d4cb9d89826451c4.verified.txt new file mode 100644 index 00000000..c9a80d27 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d4cb9d89826451c4.verified.txt @@ -0,0 +1,47 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d5f3064256c0fad4.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d5f3064256c0fad4.verified.txt new file mode 100644 index 00000000..53d88a69 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d5f3064256c0fad4.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Paige | https://remington.info | +| | | | | | Aletha | https://isobel.info | +| | | | | | Pearline | https://johnathon.info | +| | | | | | Eleanora | http://jaeden.info | +| | | | | | Nikolas | https://daphney.net | +| | | | | | Oceane | http://clifton.com | +| | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | http://marina.com | Myles | http://nikko.name | +| | | | | | Rolando | http://nikko.name | +| | | | | | Pamela | https://aliza.net | +| | | | | | Marcella | http://helga.net | +| | | | | | Alisha | http://alyson.name | +| | | | | | Carmelo | http://michele.name | +| | | | | | Miles | https://freddie.com | +| | | | | | Kade | https://jaunita.biz | +| | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | Abner | http://tavares.info | +| | | | | | Johann | http://andres.net | +| | | | | | Jaquan | http://carey.org | +| | | | | | Arvel | http://mortimer.org | +| | | | | | Alicia | http://paula.com | +| | | | | | Heidi | http://letha.name | +| | | | | | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d5f3a1771b828648.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d5f3a1771b828648.verified.txt new file mode 100644 index 00000000..22bfd49d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d5f3a1771b828648.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d6186ba22b836a8e.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d6186ba22b836a8e.verified.txt new file mode 100644 index 00000000..949fa777 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d6186ba22b836a8e.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Paige | https://remington.info | +| | | | | Aletha | https://isobel.info | +| | | | | Pearline | https://johnathon.info | +| | | | | Eleanora | http://jaeden.info | +| | | | | Nikolas | https://daphney.net | +| | | | | Oceane | http://clifton.com | +| | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d70532054a5c31fd.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d70532054a5c31fd.verified.txt new file mode 100644 index 00000000..202ae452 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d70532054a5c31fd.verified.txt @@ -0,0 +1,128 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Internal Branding Executive | 2.0.9 | Overwrite | | The SAS sensor is down, input the auxiliary sensor so we can input the SAS sensor! | You can't bypass the application without programming the solid state COM application! | https://efrain.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 | +| International Assurance Executive | 2.8.5 | Ignored | The RSS driver is down, transmit the solid state driver so we can transmit the RSS driver! | | We need to parse the optical FTP driver! | http://antonina.com | Alvah | http://otha.name | +| | | | | | | | Natasha | https://nyah.com | +| | | | | | | | Oliver | http://ettie.biz | +| | | | | | | | Lonny | https://onie.org | +| | | | | | | | Cassie | http://solon.net | +| | | | | | | | Buck | http://taryn.com | +| | | | | | | | Hilton | http://isabel.com | +| Legacy Creative Liaison | 0.4.6 | Expression | | The SMS system is down, back up the open-source system so we can back up the SMS system! | I'll connect the optical FTP program, that should program the FTP program! | | Candice | http://linnea.com | +| | | | | | | | Everardo | http://daryl.net | +| | | | | | | | Jerrod | http://laila.com | +| | | | | | | | Caleigh | https://adolfo.com | +| | | | | | | | Daisha | http://justine.biz | +| | | | | | | | Americo | http://tessie.org | +| | | | | | | | Howard | https://luis.info | +| Regional Paradigm Assistant | 9.8.0 | Url | | If we input the transmitter, we can get to the HDD transmitter through the bluetooth HDD transmitter! | | | Jordan | https://kathryne.name | +| | | | | | | | Mayra | http://lance.name | +| | | | | | | | Jimmie | https://lorine.org | +| | | | | | | | Rebeka | https://malika.org | +| | | | | | | | Trinity | http://fritz.info | +| | | | | | | | Neha | https://marianne.name | +| | | | | | | | Colin | https://billie.biz | +| | | | | | | | Brielle | https://brennon.name | +| | | | | | | | Myriam | https://rosemary.name | +| Global Optimization Architect | 4.8.0 | Expression | | 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://gaylord.name | Vida | https://theresia.biz | +| | | | | | | | Ransom | http://isom.com | +| | | | | | | | Anastasia | http://kamryn.info | +| | | | | | | | Marlene | https://cyril.name | +| | | | | | | | Zetta | http://pete.org | +| | | | | | | | Candida | https://craig.biz | +| | | | | | | | Timmothy | https://joanny.biz | +| Lead Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Lead Integration Engineer | 8.7.4 | Unknown | | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | http://jackeline.biz | Reanna | http://buck.net | +| | | | | | | | Christine | http://demarco.name | +| | | | | | | | Marge | http://astrid.net | +| | | | | | | | Charlene | http://rod.net | +| Chief Data Orchestrator | 4.3.2 | Ignored | | | We need to back up the multi-byte SCSI transmitter! | http://gaylord.com | Taya | http://micaela.biz | +| | | | | | | | Evert | http://tomas.net | +| | | | | | | | Brett | http://virginie.net | +| Dynamic Data Director | 8.6.8 | Overwrite | | | We need to back up the primary SMTP circuit! | https://timothy.info | Kirsten | http://madisyn.com | +| | | | | | | | Murray | https://destinee.com | +| | | | | | | | Emanuel | https://keely.info | +| | | | | | | | Obie | https://caleigh.net | +| | | | | | | | Albin | http://flavie.com | +| | | | | | | | Lavonne | http://kaitlyn.com | +| | | | | | | | Osborne | https://joesph.name | +| | | | | | | | Michael | https://kali.com | +| Investor Usability Producer | 9.7.6 | Url | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | Jett | https://randal.biz | +| | | | | | | | Leif | http://chaz.name | +| | | | | | | | Tristian | http://susie.com | +| | | | | | | | Carmelo | https://kariane.com | +| | | | | | | | Sofia | http://daphnee.name | +| | | | | | | | Nedra | http://orland.info | +| | | | | | | | Hilton | http://shany.info | +| Corporate Tactics Analyst | 3.0.8 | Overwrite | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | Use the virtual RAM monitor, then you can override the virtual monitor! | | | Hildegard | http://conner.name | +| | | | | | | | 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 | +| | | | | | | | Irving | https://sydnie.org | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| Investor Creative Architect | 4.5.6 | Overwrite | | The PCI microchip is down, input the cross-platform microchip so we can input the PCI microchip! | If we quantify the transmitter, we can get to the XML transmitter through the optical XML transmitter! | | Selmer | https://jairo.info | +| | | | | | | | Juanita | http://holly.name | +| | | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | | Adalberto | https://sister.biz | +| | | | | | | | Gerald | https://vidal.com | +| | | | | | | | Lucio | http://clemmie.info | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Dynamic Program Associate | 5.9.7 | Expression | | | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Suzanne | http://ima.name | +| | | | | | | | Earnestine | http://nathanial.biz | +| | | | | | | | Connor | https://augustus.net | +| | | | | | | | Araceli | http://hailey.biz | +| | | | | | | | Janessa | https://craig.com | +| | | | | | | | Erica | http://kristin.org | +| | | | | | | | Alek | http://shany.biz | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | Edmund | http://sadie.info | +| | | | | | | | Horacio | https://loraine.name | +| | | | | | | | Sandra | https://emil.info | +| | | | | | | | Dayana | https://leila.info | +| | | | | | | | Micah | http://darien.com | +| | | | | | | | Ethel | http://shakira.net | +| Human Accounts Executive | 7.6.7 | Unknown | Use the auxiliary PNG interface, then you can generate the auxiliary interface! | | You can't connect the interface without backing up the optical SMTP interface! | http://kristin.net | Seamus | http://maybell.info | +| | | | | | | | Monserrat | http://katrine.name | +| | | | | | | | Abel | https://geovany.com | +| | | | | | | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| Dynamic Quality Officer | 8.9.2 | Ignored | | | | https://danika.org | Jadon | https://amelia.biz | +| | | | | | | | Toni | http://angie.name | +| | | | | | | | Ardella | http://melissa.net | +| | | | | | | | Sandra | http://pearline.org | +| | | | | | | | Noble | https://dusty.net | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d7684eaba9e2eb90.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d7684eaba9e2eb90.verified.txt new file mode 100644 index 00000000..60442058 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d7684eaba9e2eb90.verified.txt @@ -0,0 +1,46 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d773d0cf6ce5c64d.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d773d0cf6ce5c64d.verified.txt new file mode 100644 index 00000000..c49cabb6 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d773d0cf6ce5c64d.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d7b73731705c9f38.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d7b73731705c9f38.verified.txt new file mode 100644 index 00000000..60442058 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d7b73731705c9f38.verified.txt @@ -0,0 +1,46 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d7d5fd5aae356f2d.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d7d5fd5aae356f2d.verified.txt new file mode 100644 index 00000000..b9ec2dc3 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d7d5fd5aae356f2d.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d8aa3b7f90916617.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d8aa3b7f90916617.verified.txt new file mode 100644 index 00000000..ec3c0b2c --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d8aa3b7f90916617.verified.txt @@ -0,0 +1,31 @@ +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| National Directives Analyst | 8.2.7 | Ignored | We need to compress the primary GB array! | | | | | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | | | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | | | +| Investor Intranet Producer | 5.4.1 | Ignored | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | http://hyman.org | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | | | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | | | +| Regional Directives Supervisor | 4.9.8 | Ignored | Try to reboot the THX hard drive, maybe it will reboot the open-source hard drive! | Use the primary GB driver, then you can generate the primary driver! | https://malcolm.net | | | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | | | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Dynamic Optimization Director | 3.4.6 | Ignored | The PNG protocol is down, index the digital protocol so we can index the PNG protocol! | I'll transmit the online SSL feed, that should feed the SSL feed! | https://maximilian.org | | | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | | | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | | | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | | | +| International Data Representative | 3.5.7 | Ignored | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | http://dakota.com | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d8f2b2ab4c95d02e.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d8f2b2ab4c95d02e.verified.txt new file mode 100644 index 00000000..cdd1c1e0 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d8f2b2ab4c95d02e.verified.txt @@ -0,0 +1,230 @@ +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | ---------- | --------------------- | +| Future Tactics Specialist | 0.2.2 | Ignored | We need to override the primary SQL pixel! | We need to transmit the redundant EXE driver! | Alejandro Cruickshank,Alejandro Cruickshank,Alejandro Cruickshank,Alejandro Cruickshank | | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Communications Engineer | 6.9.4 | Overwrite | | | Tanya Reinger,Tanya Reinger,Tanya Reinger | http://tito.name | | | +| National Assurance Planner | 2.7.7 | Unknown | | I'll reboot the online AGP alarm, that should alarm the AGP alarm! | Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag | | | | +| Lead Program Technician | 5.8.9 | Expression | | We need to transmit the back-end AGP sensor! | Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer | http://curtis.org | | | +| Future Identity Agent | 8.8.0 | Ignored | I'll parse the 1080p USB protocol, that should protocol the USB protocol! | | | https://reva.name | | | +| Central Tactics Developer | 0.4.7 | Ignored | indexing the capacitor won't do anything, we need to program the haptic EXE capacitor! | The JBOD application is down, generate the solid state application so we can generate the JBOD application! | Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley | https://royal.name | | | +| Dynamic Security Specialist | 7.8.5 | Overwrite | Try to input the GB pixel, maybe it will input the wireless pixel! | You can't transmit the bus without indexing the digital TCP bus! | Guy Waters,Guy Waters | http://nova.biz | | | +| District Interactions Supervisor | 4.5.2 | Url | The XSS capacitor is down, generate the bluetooth capacitor so we can generate the XSS capacitor! | The ADP firewall is down, input the primary firewall so we can input the ADP firewall! | | | | | +| Central Division Administrator | 1.0.4 | Overwrite | We need to program the optical COM microchip! | We need to hack the haptic SAS microchip! | | | | | +| Corporate Accountability Designer | 0.8.0 | Ignored | We need to hack the online FTP application! | | Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn | http://taya.info | Abelardo | http://carolina.name | +| | | | | | | | Lindsey | http://rigoberto.org | +| | | | | | | | Lou | http://darlene.biz | +| | | | | | | | Oliver | https://filomena.com | +| | | | | | | | Vincenzo | https://ulices.biz | +| | | | | | | | Florida | http://jovan.net | +| | | | | | | | Ari | https://chad.com | +| | | | | | | | Yvonne | http://jada.name | +| Dynamic Division Representative | 7.3.5 | Unknown | | I'll index the haptic FTP alarm, that should alarm the FTP alarm! | Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson | http://taurean.net | | | +| Dynamic Security Director | 0.0.2 | Url | transmitting the feed won't do anything, we need to navigate the redundant SDD feed! | Try to parse the HTTP port, maybe it will parse the bluetooth port! | Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block | | | | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Global Paradigm Assistant | 8.0.5 | Expression | We need to calculate the solid state HTTP hard drive! | | | https://randy.org | | | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| Principal Operations Assistant | 0.9.0 | Url | I'll copy the auxiliary HDD bus, that should bus the HDD bus! | I'll copy the digital USB circuit, that should circuit the USB circuit! | | | | | +| Customer Web Assistant | 1.9.0 | Unknown | | | | | | | +| Future Research Planner | 8.8.9 | Ignored | | | | https://yvette.com | | | +| Chief Infrastructure Specialist | 9.0.5 | Overwrite | hacking the port won't do anything, we need to back up the optical SMS port! | | Jackie Schumm | | | | +| Legacy Interactions Supervisor | 9.7.2 | Ignored | | Try to generate the SAS matrix, maybe it will generate the cross-platform matrix! | Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn | | | | +| Future Configuration Officer | 7.6.0 | Unknown | You can't compress the alarm without parsing the optical JBOD alarm! | I'll compress the back-end SSL system, that should system the SSL system! | Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie | | | | +| International Branding Producer | 3.8.2 | Expression | We need to generate the solid state AGP microchip! | | | | | | +| International Brand Strategist | 3.9.3 | Url | | | Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy | https://rowena.info | | | +| District Optimization Technician | 5.2.3 | Overwrite | | | Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti | https://douglas.info | | | +| Global Optimization Engineer | 8.7.9 | Expression | | quantifying the transmitter won't do anything, we need to synthesize the auxiliary FTP transmitter! | | http://aniya.org | | | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | | | +| Dynamic Branding Manager | 1.4.0 | Overwrite | You can't navigate the application without generating the cross-platform COM application! | Try to program the FTP alarm, maybe it will program the virtual alarm! | | http://dario.info | | | +| Regional Identity Engineer | 1.9.4 | Ignored | | The HTTP microchip is down, copy the digital microchip so we can copy the HTTP microchip! | Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston | | | | +| Global Identity Supervisor | 0.9.1 | Overwrite | | | | | | | +| Global Implementation Strategist | 5.9.8 | Ignored | | | Colleen Schroeder,Colleen Schroeder | https://enos.info | | | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| Dynamic Implementation Engineer | 6.7.1 | Overwrite | We need to transmit the open-source EXE interface! | | | http://margie.info | | | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| Customer Metrics Developer | 2.2.9 | Ignored | | | Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir | | | | +| Legacy Usability Coordinator | 5.8.8 | Overwrite | Try to calculate the PNG port, maybe it will calculate the back-end port! | | | http://thora.info | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Product Directives Engineer | 8.2.3 | Unknown | transmitting the bus won't do anything, we need to navigate the online IB bus! | | Maggie Lindgren | | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | | | +| Principal Factors Representative | 4.5.7 | Ignored | Try to input the RAM interface, maybe it will input the bluetooth interface! | The GB card is down, hack the digital card so we can hack the GB card! | Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker | https://imelda.org | | | +| Investor Quality Associate | 0.5.1 | Expression | | Try to reboot the SSL alarm, maybe it will reboot the solid state alarm! | Carrie Hansen,Carrie Hansen,Carrie Hansen,Carrie Hansen | https://ezequiel.biz | | | +| Customer Assurance Officer | 0.3.1 | Ignored | I'll navigate the digital CSS sensor, that should sensor the CSS sensor! | | | https://clementine.info | | | +| Product Functionality Supervisor | 9.4.5 | Overwrite | Use the 1080p AI microchip, then you can reboot the 1080p microchip! | Use the open-source ADP matrix, then you can copy the open-source matrix! | | | | | +| Customer Division Manager | 1.3.9 | Ignored | 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! | Rafael Altenwerth,Rafael Altenwerth,Rafael Altenwerth | | | | +| Customer Branding Orchestrator | 8.3.7 | Overwrite | | We need to bypass the neural USB capacitor! | Nora Dietrich | http://nona.com | | | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Direct Brand Director | 4.7.4 | Url | You can't navigate the capacitor without programming the solid state SQL capacitor! | | | | | | +| Chief Factors Developer | 5.9.5 | Url | | Try to connect the ADP system, maybe it will connect the solid state system! | Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady | | | | +| Regional Functionality Agent | 5.9.9 | Overwrite | We need to index the 1080p SAS hard drive! | I'll connect the digital JBOD application, that should application the JBOD application! | Gloria Williamson,Gloria Williamson,Gloria Williamson,Gloria Williamson | http://arthur.net | | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | | | +| Corporate Intranet Specialist | 3.5.6 | Expression | | | Edmund Lehner,Edmund Lehner,Edmund Lehner,Edmund Lehner | | | | +| International Division Architect | 8.2.4 | Ignored | | | Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins | http://murphy.name | | | +| Central Implementation Planner | 7.6.0 | Ignored | | Try to generate the HDD panel, maybe it will generate the solid state panel! | | | | | +| Forward Data Orchestrator | 3.3.5 | Expression | Use the haptic XML driver, then you can index the haptic driver! | compressing the system won't do anything, we need to compress the optical RSS system! | | | | | +| Regional Optimization Administrator | 3.6.4 | Expression | | I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive! | | http://serenity.info | | | +| Human Identity Representative | 4.1.5 | Overwrite | The SAS bus is down, program the neural bus so we can program the SAS bus! | | Joyce Auer,Joyce Auer,Joyce Auer | http://alyce.biz | | | +| Principal Brand Executive | 7.2.7 | Unknown | | | | https://dariana.com | | | +| International Solutions Planner | 9.0.0 | Url | Use the multi-byte SMTP program, then you can synthesize the multi-byte program! | | | | | | +| Internal Program Designer | 7.2.5 | Ignored | We need to hack the auxiliary COM hard drive! | | | | | | +| Senior Solutions Strategist | 7.5.0 | 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 | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| Forward Usability Specialist | 5.6.9 | Overwrite | I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth! | | | | | | +| Lead Operations Supervisor | 4.5.2 | Expression | The AI panel is down, transmit the open-source panel so we can transmit the AI panel! | | | | | | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Direct Division Officer | 6.5.6 | Url | transmitting the protocol won't do anything, we need to generate the multi-byte THX protocol! | | Glenda Schuppe,Glenda Schuppe | http://catherine.name | | | +| Customer Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| Senior Configuration Developer | 4.0.9 | Url | Use the primary SCSI matrix, then you can program the primary matrix! | If we parse the interface, we can get to the JSON interface through the mobile JSON interface! | Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle | | | | +| Global Optimization Architect | 1.5.0 | Unknown | Try to navigate the SCSI sensor, maybe it will navigate the mobile sensor! | | | | | | +| Lead Solutions Technician | 1.5.7 | Unknown | | | | | | | +| Corporate Marketing Coordinator | 3.6.1 | Overwrite | | | | https://marcos.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 | | | +| Human Tactics Facilitator | 5.7.0 | Url | Try to bypass the HTTP application, maybe it will bypass the digital application! | | | | | | +| Product Solutions Manager | 9.5.2 | Overwrite | I'll hack the primary SDD card, that should card the SDD card! | hacking the transmitter won't do anything, we need to index the open-source CSS transmitter! | Sergio Bailey,Sergio Bailey,Sergio Bailey | | | | +| Corporate Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 | +| Human Branding Coordinator | 5.8.1 | Ignored | | | | | | | +| Human Markets Planner | 5.0.1 | Expression | Try to back up the COM driver, maybe it will back up the bluetooth driver! | | | | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | | | +| Customer Mobility Assistant | 4.2.9 | 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 | http://adonis.biz | | | +| Forward Factors Architect | 6.7.6 | Ignored | | The THX transmitter is down, program the neural transmitter so we can program the THX transmitter! | Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts | | | | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | | | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| Human Program Analyst | 3.1.8 | Expression | If we back up the application, we can get to the USB application through the cross-platform USB application! | | | http://efrain.org | | | +| Principal Intranet Architect | 4.9.3 | Unknown | | | | | | | +| Chief Program Associate | 2.6.7 | Unknown | We need to compress the optical PNG array! | | Wilbert Kunze,Wilbert Kunze,Wilbert Kunze,Wilbert Kunze | http://coy.info | | | +| International Optimization Coordinator | 6.5.5 | Ignored | | | Darnell Terry | http://antoinette.org | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | | | +| Central Research Technician | 2.8.8 | Url | | You can't generate the program without connecting the bluetooth USB program! | | | | | +| Principal Security Producer | 7.3.3 | Ignored | You can't generate the interface without quantifying the mobile FTP interface! | Use the digital SMTP bandwidth, then you can generate the digital bandwidth! | | http://jarrell.biz | | | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | http://celestine.info | Clemens | https://abagail.info | +| | | | | | | | Franz | http://prudence.info | +| | | | | | | | Casper | https://alva.com | +| | | | | | | | Mario | http://alexandria.biz | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | | | +| Dynamic Factors Associate | 1.8.3 | Unknown | | You can't navigate the panel without calculating the open-source THX panel! | | http://dovie.name | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| Lead Infrastructure Specialist | 7.2.6 | Ignored | | | Laura Abshire,Laura Abshire,Laura Abshire,Laura Abshire,Laura Abshire | https://wanda.com | | | +| Dynamic Data Technician | 4.2.3 | Url | I'll copy the optical RAM feed, that should feed the RAM feed! | | June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds | http://nia.info | | | +| International Tactics Administrator | 9.9.9 | Url | | | | | | | +| Customer Program Developer | 2.9.8 | Expression | | You can't transmit the pixel without calculating the bluetooth FTP pixel! | | http://lenora.com | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | | | +| Senior Paradigm Analyst | 1.1.1 | Ignored | | If we navigate the alarm, we can get to the XML alarm through the cross-platform XML alarm! | | | | | +| Regional Directives Liaison | 4.7.8 | Expression | If we connect the interface, we can get to the SCSI interface through the auxiliary SCSI interface! | | Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic | https://glennie.biz | | | +| Customer Solutions Officer | 4.5.2 | Expression | You can't copy the matrix without compressing the wireless AGP matrix! | | | https://rylan.name | | | +| Dynamic Solutions Agent | 0.0.5 | Overwrite | Use the haptic USB card, then you can navigate the haptic card! | | | | | | +| Human Accounts Orchestrator | 4.1.6 | Url | | | | | | | +| Investor Research Coordinator | 1.9.7 | Ignored | Use the cross-platform GB bus, then you can calculate the cross-platform bus! | | | https://maegan.name | | | +| Dynamic Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| 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 | | | | +| Investor Tactics Director | 0.4.3 | Expression | | | | https://aylin.com | | | +| Human Paradigm Assistant | 8.8.8 | Expression | | | Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich | | | | +| Corporate Intranet Analyst | 0.9.0 | Ignored | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp | http://hanna.net | | | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | | | +| Regional Metrics Strategist | 1.2.1 | Unknown | | Try to override the GB driver, maybe it will override the digital driver! | | | | | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.biz | +| Future Tactics Assistant | 1.5.5 | Expression | The IB sensor is down, reboot the virtual sensor so we can reboot the IB sensor! | If we calculate the matrix, we can get to the SMS matrix through the bluetooth SMS matrix! | | https://giovanny.net | | | +| Investor Accounts Facilitator | 7.7.8 | Expression | | | Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman | http://scottie.biz | | | +| Legacy Security Facilitator | 1.9.0 | Expression | | Use the cross-platform ADP alarm, then you can back up the cross-platform alarm! | | https://edythe.info | | | +| Legacy Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| District Assurance Technician | 8.5.5 | Overwrite | | | | http://zander.com | | | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d9b6a02f6238686c.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d9b6a02f6238686c.verified.txt new file mode 100644 index 00000000..c8c0984b --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d9b6a02f6238686c.verified.txt @@ -0,0 +1,32 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d9ebcd09d8246807.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d9ebcd09d8246807.verified.txt new file mode 100644 index 00000000..1a258ad0 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_d9ebcd09d8246807.verified.txt @@ -0,0 +1,129 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ---------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ---------------------- | --------- | ---------------------- | +| Direct Accountability Assistant | 2.2.8 | Url | bypassing the protocol won't do anything, we need to compress the primary HTTP protocol! | | http://natasha.info | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Global Security Coordinator | 1.7.9 | Ignored | | | https://carol.info | | | +| Forward Marketing Orchestrator | 1.6.4 | Overwrite | I'll connect the primary SQL sensor, that should sensor the SQL sensor! | The SMTP driver is down, bypass the mobile driver so we can bypass the SMTP driver! | https://lukas.com | | | +| Global Division Designer | 8.2.7 | Expression | Try to program the EXE hard drive, maybe it will program the virtual hard drive! | | https://pamela.name | | | +| National Intranet Technician | 8.0.0 | Overwrite | | | | | | +| Central Tactics Engineer | 6.3.5 | Unknown | connecting the bandwidth won't do anything, we need to bypass the multi-byte AI bandwidth! | | | | | +| Dynamic Quality Analyst | 0.9.5 | Overwrite | We need to index the optical HTTP application! | I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor! | | | | +| Central Identity Analyst | 8.9.6 | Expression | | | http://leta.org | | | +| Dynamic Division Consultant | 4.8.7 | Overwrite | Use the multi-byte IB microchip, then you can connect the multi-byte microchip! | backing up the feed won't do anything, we need to compress the haptic SMTP feed! | http://raquel.net | | | +| Regional Directives Supervisor | 4.9.8 | Ignored | Try to reboot the THX hard drive, maybe it will reboot the open-source hard drive! | Use the primary GB driver, then you can generate the primary driver! | https://malcolm.net | | | +| Human Communications Supervisor | 6.0.1 | Ignored | Use the cross-platform SAS feed, then you can bypass the cross-platform feed! | | http://ethan.name | | | +| Dynamic Accountability Analyst | 4.9.7 | Overwrite | | | https://jaron.info | | | +| Dynamic Optimization Director | 3.4.6 | Ignored | The PNG protocol is down, index the digital protocol so we can index the PNG protocol! | I'll transmit the online SSL feed, that should feed the SSL feed! | https://maximilian.org | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Human Response Coordinator | 2.9.7 | Ignored | | | http://ruth.org | | | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | | | +| Regional Factors Designer | 7.4.1 | Overwrite | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | | | | +| National Research Facilitator | 6.0.6 | Expression | Use the primary EXE array, then you can navigate the primary array! | | | | | +| International Data Representative | 3.5.7 | Ignored | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | http://dakota.com | | | +| Principal Markets Designer | 3.8.8 | Overwrite | overriding the transmitter won't do anything, we need to generate the cross-platform SCSI transmitter! | | | | | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | | | +| Chief Factors Supervisor | 5.2.2 | Expression | | | http://helga.com | | | +| Dynamic Branding Facilitator | 8.3.2 | Ignored | | | | | | +| Human Directives Specialist | 4.3.4 | Unknown | Use the digital XSS hard drive, then you can compress the digital hard drive! | You can't generate the card without synthesizing the bluetooth PNG card! | | | | +| Human Optimization Producer | 5.0.9 | Overwrite | | | | | | +| Legacy Directives Officer | 2.4.4 | Url | | The PCI program is down, hack the multi-byte program so we can hack the PCI program! | http://sedrick.biz | | | +| Direct Data Orchestrator | 2.4.5 | Expression | | Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor! | | | | +| Human Optimization Facilitator | 7.4.8 | Overwrite | 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! | https://cooper.name | | | +| Corporate Marketing Assistant | 8.7.9 | Url | | You can't program the firewall without connecting the wireless AI firewall! | http://arlene.biz | | | +| Forward Division Strategist | 5.7.1 | Ignored | You can't reboot the program without transmitting the mobile SMTP program! | The SCSI circuit is down, index the open-source circuit so we can index the SCSI circuit! | https://esperanza.name | | | +| Senior Security Consultant | 2.7.5 | Unknown | | | http://adelbert.biz | | | +| Human Quality Facilitator | 1.2.0 | Expression | We need to copy the online THX firewall! | You can't calculate the application without calculating the auxiliary AI application! | | | | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | | | +| Chief Applications Facilitator | 7.7.6 | Overwrite | | parsing the card won't do anything, we need to synthesize the online SQL card! | | | | +| Senior Optimization Assistant | 3.6.0 | Overwrite | | overriding the pixel won't do anything, we need to copy the optical JSON pixel! | http://akeem.info | | | +| Lead Branding Developer | 4.1.5 | Url | | | http://abe.com | | | +| Customer Functionality Consultant | 5.5.1 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | http://terence.com | | | +| National Solutions Associate | 9.1.2 | Overwrite | | | | | | +| Legacy Directives Supervisor | 9.6.2 | Url | The PNG circuit is down, back up the online circuit so we can back up the PNG circuit! | | | | | +| Product Assurance Technician | 0.8.2 | Overwrite | | | https://steve.info | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Chief Division Producer | 2.3.9 | Overwrite | | | | | | +| Chief Intranet Facilitator | 6.6.1 | Expression | | | https://rosalind.net | | | +| National Creative Coordinator | 5.9.5 | Expression | | | https://bobbie.info | | | +| Central Web Assistant | 4.2.1 | Unknown | | Use the wireless ADP array, then you can input the wireless array! | https://verda.net | | | +| 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 | | | +| Direct Mobility Designer | 7.7.3 | Expression | | | http://geovanny.info | | | +| Investor Research Manager | 6.3.1 | Ignored | | | | | | +| Internal Directives Designer | 0.4.8 | Url | The EXE protocol is down, reboot the redundant protocol so we can reboot the EXE protocol! | | | | | +| Dynamic Accountability Strategist | 7.0.9 | Unknown | You can't bypass the sensor without transmitting the neural JSON sensor! | | | | | +| Human Program Technician | 2.8.4 | Unknown | | | http://tomasa.info | | | +| National Creative Assistant | 4.9.0 | Ignored | | If we navigate the pixel, we can get to the SCSI pixel through the bluetooth SCSI pixel! | https://michelle.org | | | +| Regional Operations Coordinator | 0.2.5 | Unknown | | I'll hack the cross-platform SSL array, that should array the SSL array! | http://ena.com | | | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | | | +| Regional Paradigm Manager | 8.9.8 | Ignored | | If we transmit the application, we can get to the SMS application through the primary SMS application! | https://eileen.name | | | +| Future Accounts Agent | 0.9.7 | Ignored | | | | | | +| Future Accounts Architect | 9.1.8 | Url | You can't bypass the firewall without indexing the multi-byte COM firewall! | | https://fermin.biz | | | +| Human Operations Assistant | 0.7.2 | Overwrite | Use the haptic USB driver, then you can override the haptic driver! | | http://camila.net | | | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| Forward Intranet Engineer | 2.5.9 | Expression | The RSS sensor is down, input the 1080p sensor so we can input the RSS sensor! | Try to index the ADP port, maybe it will index the auxiliary port! | | | | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | | | +| Investor Intranet Producer | 5.4.1 | Ignored | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | http://hyman.org | | | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | | | +| District Operations Director | 0.6.3 | Url | | We need to program the cross-platform FTP hard drive! | https://dejah.net | | | +| Forward Configuration Supervisor | 9.0.8 | Overwrite | You can't program the protocol without overriding the primary IB protocol! | | http://quinn.name | | | +| Investor Implementation Technician | 2.7.9 | Unknown | | | http://crystal.name | | | +| Investor Creative Architect | 8.2.4 | Unknown | | | | | | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | | | +| Corporate Accounts Technician | 5.8.0 | Ignored | | | https://isobel.org | | | +| National Directives Analyst | 8.2.7 | Ignored | We need to compress the primary GB array! | | | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| Corporate Tactics Director | 2.5.7 | Url | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | http://marcos.info | | | +| International Intranet Planner | 6.4.6 | Url | The IB interface is down, program the redundant interface so we can program the IB interface! | | https://lenna.com | | | +| Senior Brand Analyst | 2.5.0 | Url | | overriding the interface won't do anything, we need to override the virtual THX interface! | | | | +| Dynamic Integration Architect | 1.6.3 | Overwrite | | The RAM feed is down, copy the neural feed so we can copy the RAM feed! | | | | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | http://hanna.net | | | +| Dynamic Factors Facilitator | 6.5.2 | Expression | | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | http://magnolia.com | | | +| Principal Accounts Coordinator | 1.0.4 | Overwrite | | I'll connect the digital JSON bus, that should bus the JSON bus! | http://rene.com | | | +| Corporate Directives Planner | 8.8.5 | Unknown | The CSS bus is down, generate the 1080p bus so we can generate the CSS bus! | We need to back up the 1080p SMTP feed! | | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Forward Functionality Developer | 5.1.1 | Url | | | | | | +| International Functionality Agent | 8.7.6 | Unknown | | If we hack the card, we can get to the JBOD card through the optical JBOD card! | http://jalyn.org | | | +| Customer Metrics Developer | 2.2.9 | Ignored | | | | | | +| Senior Factors Administrator | 1.6.1 | Expression | I'll calculate the solid state ADP panel, that should panel the ADP panel! | If we generate the circuit, we can get to the XSS circuit through the primary XSS circuit! | | | | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | | | +| International Quality Director | 0.3.8 | Expression | | | | | | +| National Communications Orchestrator | 4.5.1 | Unknown | The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit! | | | | | +| Customer Security Representative | 3.7.3 | Ignored | The GB circuit is down, hack the redundant circuit so we can hack the GB circuit! | | https://jalon.net | | | +| Global Program Representative | 5.1.0 | Url | | If we back up the monitor, we can get to the PCI monitor through the virtual PCI monitor! | | | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | | | +| Human Group Designer | 9.9.1 | Expression | Use the haptic XSS application, then you can synthesize the haptic application! | If we transmit the hard drive, we can get to the AGP hard drive through the bluetooth AGP hard drive! | http://jodie.org | | | +| Investor Interactions Liaison | 4.4.9 | Overwrite | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | | | | +| Product Creative Facilitator | 8.4.6 | Unknown | 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://juliana.net | | | +| Direct Assurance Strategist | 1.3.7 | Expression | The RSS firewall is down, hack the neural firewall so we can hack the RSS firewall! | | | | | +| Lead Usability Assistant | 1.3.4 | Overwrite | quantifying the matrix won't do anything, we need to synthesize the wireless PCI matrix! | Use the solid state SQL firewall, then you can connect the solid state firewall! | https://duane.info | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Human Directives Engineer | 5.3.9 | Url | | | | | | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| Corporate Data Strategist | 9.0.0 | Ignored | | | http://eli.net | | | +| National Applications Designer | 6.4.9 | Expression | | Use the back-end SMS feed, then you can program the back-end feed! | | | | +| Global Mobility Facilitator | 9.5.8 | Expression | | | | | | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ---------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_da4bf55576ee0857.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_da4bf55576ee0857.verified.txt new file mode 100644 index 00000000..4623bea7 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_da4bf55576ee0857.verified.txt @@ -0,0 +1,130 @@ +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.biz | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| Corporate Accountability Designer | 0.8.0 | Ignored | We need to hack the online FTP application! | | Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn | http://taya.info | Abelardo | http://carolina.name | +| | | | | | | | Lindsey | http://rigoberto.org | +| | | | | | | | Lou | http://darlene.biz | +| | | | | | | | Oliver | https://filomena.com | +| | | | | | | | Vincenzo | https://ulices.biz | +| | | | | | | | Florida | http://jovan.net | +| | | | | | | | Ari | https://chad.com | +| | | | | | | | Yvonne | http://jada.name | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Customer Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Dynamic Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| Legacy Usability Coordinator | 5.8.8 | Overwrite | Try to calculate the PNG port, maybe it will calculate the back-end port! | | | http://thora.info | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Senior Solutions Strategist | 7.5.0 | 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 | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Corporate Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | http://celestine.info | Clemens | https://abagail.info | +| | | | | | | | Franz | http://prudence.info | +| | | | | | | | Casper | https://alva.com | +| | | | | | | | Mario | http://alexandria.biz | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_da6072dbc738a10a.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_da6072dbc738a10a.verified.txt new file mode 100644 index 00000000..0d97b135 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_da6072dbc738a10a.verified.txt @@ -0,0 +1,21 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_dac41c0f6824a0b3.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_dac41c0f6824a0b3.verified.txt new file mode 100644 index 00000000..5ffacf9f --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_dac41c0f6824a0b3.verified.txt @@ -0,0 +1,46 @@ +| ----------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | | | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | | | +| International Tactics Administrator | 9.9.9 | Url | | | | | | | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | | | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| ----------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_db2945d8aae3ae0d.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_db2945d8aae3ae0d.verified.txt new file mode 100644 index 00000000..60442058 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_db2945d8aae3ae0d.verified.txt @@ -0,0 +1,46 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_db31dc93f763121b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_db31dc93f763121b.verified.txt new file mode 100644 index 00000000..8b7506d3 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_db31dc93f763121b.verified.txt @@ -0,0 +1,9 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------- | -------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------- | -------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | Alyson | https://carmelo.biz | +| | | | | | | Michele | https://miles.net | +| | | | | | | Freddie | http://kade.net | +| | | | | | | Jaunita | http://marcelina.biz | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------- | -------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_dc79b2d168af6334.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_dc79b2d168af6334.verified.txt new file mode 100644 index 00000000..8b7506d3 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_dc79b2d168af6334.verified.txt @@ -0,0 +1,9 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------- | -------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------- | -------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | Alyson | https://carmelo.biz | +| | | | | | | Michele | https://miles.net | +| | | | | | | Freddie | http://kade.net | +| | | | | | | Jaunita | http://marcelina.biz | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------- | -------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_dcae2e9ae312ab81.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_dcae2e9ae312ab81.verified.txt new file mode 100644 index 00000000..2b597f34 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_dcae2e9ae312ab81.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_dd1dc2606b4f5f54.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_dd1dc2606b4f5f54.verified.txt new file mode 100644 index 00000000..d9fb3c5f --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_dd1dc2606b4f5f54.verified.txt @@ -0,0 +1,18 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Global Implementation Strategist | 5.9.8 | Ignored | | | Colleen Schroeder,Colleen Schroeder | https://enos.info | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Internal Program Designer | 7.2.5 | Ignored | We need to hack the auxiliary COM hard drive! | | | | | | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_de40fabb77675ff9.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_de40fabb77675ff9.verified.txt new file mode 100644 index 00000000..2b0d57cf --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_de40fabb77675ff9.verified.txt @@ -0,0 +1,188 @@ +| ------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Communications Engineer | 6.9.4 | Overwrite | | | Tanya Reinger,Tanya Reinger,Tanya Reinger | http://tito.name | | | +| National Assurance Planner | 2.7.7 | Unknown | | I'll reboot the online AGP alarm, that should alarm the AGP alarm! | Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag | | | | +| Lead Program Technician | 5.8.9 | Expression | | We need to transmit the back-end AGP sensor! | Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer | http://curtis.org | | | +| Dynamic Security Specialist | 7.8.5 | Overwrite | Try to input the GB pixel, maybe it will input the wireless pixel! | You can't transmit the bus without indexing the digital TCP bus! | Guy Waters,Guy Waters | http://nova.biz | | | +| District Interactions Supervisor | 4.5.2 | Url | The XSS capacitor is down, generate the bluetooth capacitor so we can generate the XSS capacitor! | The ADP firewall is down, input the primary firewall so we can input the ADP firewall! | | | | | +| Central Division Administrator | 1.0.4 | Overwrite | We need to program the optical COM microchip! | We need to hack the haptic SAS microchip! | | | | | +| Dynamic Division Representative | 7.3.5 | Unknown | | I'll index the haptic FTP alarm, that should alarm the FTP alarm! | Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson | http://taurean.net | | | +| Dynamic Security Director | 0.0.2 | Url | transmitting the feed won't do anything, we need to navigate the redundant SDD feed! | Try to parse the HTTP port, maybe it will parse the bluetooth port! | Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block | | | | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Global Paradigm Assistant | 8.0.5 | Expression | We need to calculate the solid state HTTP hard drive! | | | https://randy.org | | | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| Principal Operations Assistant | 0.9.0 | Url | I'll copy the auxiliary HDD bus, that should bus the HDD bus! | I'll copy the digital USB circuit, that should circuit the USB circuit! | | | | | +| Customer Web Assistant | 1.9.0 | Unknown | | | | | | | +| Chief Infrastructure Specialist | 9.0.5 | Overwrite | hacking the port won't do anything, we need to back up the optical SMS port! | | Jackie Schumm | | | | +| Future Configuration Officer | 7.6.0 | Unknown | You can't compress the alarm without parsing the optical JBOD alarm! | I'll compress the back-end SSL system, that should system the SSL system! | Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie | | | | +| International Branding Producer | 3.8.2 | Expression | We need to generate the solid state AGP microchip! | | | | | | +| International Brand Strategist | 3.9.3 | Url | | | Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy | https://rowena.info | | | +| District Optimization Technician | 5.2.3 | Overwrite | | | Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti | https://douglas.info | | | +| Global Optimization Engineer | 8.7.9 | Expression | | quantifying the transmitter won't do anything, we need to synthesize the auxiliary FTP transmitter! | | http://aniya.org | | | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | | | +| Dynamic Branding Manager | 1.4.0 | Overwrite | You can't navigate the application without generating the cross-platform COM application! | Try to program the FTP alarm, maybe it will program the virtual alarm! | | http://dario.info | | | +| Global Identity Supervisor | 0.9.1 | Overwrite | | | | | | | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| Dynamic Implementation Engineer | 6.7.1 | Overwrite | We need to transmit the open-source EXE interface! | | | http://margie.info | | | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| Legacy Usability Coordinator | 5.8.8 | Overwrite | Try to calculate the PNG port, maybe it will calculate the back-end port! | | | http://thora.info | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Product Directives Engineer | 8.2.3 | Unknown | transmitting the bus won't do anything, we need to navigate the online IB bus! | | Maggie Lindgren | | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | | | +| Investor Quality Associate | 0.5.1 | Expression | | Try to reboot the SSL alarm, maybe it will reboot the solid state alarm! | Carrie Hansen,Carrie Hansen,Carrie Hansen,Carrie Hansen | https://ezequiel.biz | | | +| Product Functionality Supervisor | 9.4.5 | Overwrite | Use the 1080p AI microchip, then you can reboot the 1080p microchip! | Use the open-source ADP matrix, then you can copy the open-source matrix! | | | | | +| Customer Branding Orchestrator | 8.3.7 | Overwrite | | We need to bypass the neural USB capacitor! | Nora Dietrich | http://nona.com | | | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Direct Brand Director | 4.7.4 | Url | You can't navigate the capacitor without programming the solid state SQL capacitor! | | | | | | +| Chief Factors Developer | 5.9.5 | Url | | Try to connect the ADP system, maybe it will connect the solid state system! | Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady | | | | +| Regional Functionality Agent | 5.9.9 | Overwrite | We need to index the 1080p SAS hard drive! | I'll connect the digital JBOD application, that should application the JBOD application! | Gloria Williamson,Gloria Williamson,Gloria Williamson,Gloria Williamson | http://arthur.net | | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | | | +| Corporate Intranet Specialist | 3.5.6 | Expression | | | Edmund Lehner,Edmund Lehner,Edmund Lehner,Edmund Lehner | | | | +| Forward Data Orchestrator | 3.3.5 | Expression | Use the haptic XML driver, then you can index the haptic driver! | compressing the system won't do anything, we need to compress the optical RSS system! | | | | | +| Regional Optimization Administrator | 3.6.4 | Expression | | I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive! | | http://serenity.info | | | +| Human Identity Representative | 4.1.5 | Overwrite | The SAS bus is down, program the neural bus so we can program the SAS bus! | | Joyce Auer,Joyce Auer,Joyce Auer | http://alyce.biz | | | +| Principal Brand Executive | 7.2.7 | Unknown | | | | https://dariana.com | | | +| International Solutions Planner | 9.0.0 | Url | Use the multi-byte SMTP program, then you can synthesize the multi-byte program! | | | | | | +| Senior Solutions Strategist | 7.5.0 | 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 | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| Forward Usability Specialist | 5.6.9 | Overwrite | I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth! | | | | | | +| Lead Operations Supervisor | 4.5.2 | Expression | The AI panel is down, transmit the open-source panel so we can transmit the AI panel! | | | | | | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Direct Division Officer | 6.5.6 | Url | transmitting the protocol won't do anything, we need to generate the multi-byte THX protocol! | | Glenda Schuppe,Glenda Schuppe | http://catherine.name | | | +| Customer Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| Senior Configuration Developer | 4.0.9 | Url | Use the primary SCSI matrix, then you can program the primary matrix! | If we parse the interface, we can get to the JSON interface through the mobile JSON interface! | Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle | | | | +| Global Optimization Architect | 1.5.0 | Unknown | Try to navigate the SCSI sensor, maybe it will navigate the mobile sensor! | | | | | | +| Lead Solutions Technician | 1.5.7 | Unknown | | | | | | | +| Corporate Marketing Coordinator | 3.6.1 | Overwrite | | | | https://marcos.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 | | | +| Human Tactics Facilitator | 5.7.0 | Url | Try to bypass the HTTP application, maybe it will bypass the digital application! | | | | | | +| Product Solutions Manager | 9.5.2 | Overwrite | I'll hack the primary SDD card, that should card the SDD card! | hacking the transmitter won't do anything, we need to index the open-source CSS transmitter! | Sergio Bailey,Sergio Bailey,Sergio Bailey | | | | +| Corporate Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 | +| Human Markets Planner | 5.0.1 | Expression | Try to back up the COM driver, maybe it will back up the bluetooth driver! | | | | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | | | +| Customer Mobility Assistant | 4.2.9 | 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 | http://adonis.biz | | | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | | | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| Human Program Analyst | 3.1.8 | Expression | If we back up the application, we can get to the USB application through the cross-platform USB application! | | | http://efrain.org | | | +| Principal Intranet Architect | 4.9.3 | Unknown | | | | | | | +| Chief Program Associate | 2.6.7 | Unknown | We need to compress the optical PNG array! | | Wilbert Kunze,Wilbert Kunze,Wilbert Kunze,Wilbert Kunze | http://coy.info | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | | | +| Central Research Technician | 2.8.8 | Url | | You can't generate the program without connecting the bluetooth USB program! | | | | | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | | | +| Dynamic Factors Associate | 1.8.3 | Unknown | | You can't navigate the panel without calculating the open-source THX panel! | | http://dovie.name | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| Dynamic Data Technician | 4.2.3 | Url | I'll copy the optical RAM feed, that should feed the RAM feed! | | June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds | http://nia.info | | | +| International Tactics Administrator | 9.9.9 | Url | | | | | | | +| Customer Program Developer | 2.9.8 | Expression | | You can't transmit the pixel without calculating the bluetooth FTP pixel! | | http://lenora.com | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | | | +| Regional Directives Liaison | 4.7.8 | Expression | If we connect the interface, we can get to the SCSI interface through the auxiliary SCSI interface! | | Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic | https://glennie.biz | | | +| Customer Solutions Officer | 4.5.2 | Expression | You can't copy the matrix without compressing the wireless AGP matrix! | | | https://rylan.name | | | +| Dynamic Solutions Agent | 0.0.5 | Overwrite | Use the haptic USB card, then you can navigate the haptic card! | | | | | | +| Human Accounts Orchestrator | 4.1.6 | Url | | | | | | | +| Dynamic Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| 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 | | | | +| Investor Tactics Director | 0.4.3 | Expression | | | | https://aylin.com | | | +| Human Paradigm Assistant | 8.8.8 | Expression | | | Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich | | | | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | | | +| Regional Metrics Strategist | 1.2.1 | Unknown | | Try to override the GB driver, maybe it will override the digital driver! | | | | | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.biz | +| Future Tactics Assistant | 1.5.5 | Expression | The IB sensor is down, reboot the virtual sensor so we can reboot the IB sensor! | If we calculate the matrix, we can get to the SMS matrix through the bluetooth SMS matrix! | | https://giovanny.net | | | +| Investor Accounts Facilitator | 7.7.8 | Expression | | | Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman | http://scottie.biz | | | +| Legacy Security Facilitator | 1.9.0 | Expression | | Use the cross-platform ADP alarm, then you can back up the cross-platform alarm! | | https://edythe.info | | | +| Legacy Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| District Assurance Technician | 8.5.5 | Overwrite | | | | http://zander.com | | | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_de7a042b98fe5d8b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_de7a042b98fe5d8b.verified.txt new file mode 100644 index 00000000..d9b9991e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_de7a042b98fe5d8b.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | Clare | https://bobby.info | +| | | | | | | Cecil | https://kira.net | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | Ila | http://rachel.com | +| | | | | | | Catalina | http://jolie.com | +| | | | | | | Dianna | https://leda.net | +| | | | | | | Nicola | http://aleen.name | +| | | | | | | Nelda | http://delpha.net | +| | | | | | | Delores | http://rae.biz | +| | | | | | | Cynthia | https://zella.com | +| | | | | | | Greta | http://adolph.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_dfee49a2fc2d6e7b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_dfee49a2fc2d6e7b.verified.txt new file mode 100644 index 00000000..9d0c566b --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_dfee49a2fc2d6e7b.verified.txt @@ -0,0 +1,30 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Paige | https://remington.info | +| | | | | | Aletha | https://isobel.info | +| | | | | | Pearline | https://johnathon.info | +| | | | | | Eleanora | http://jaeden.info | +| | | | | | Nikolas | https://daphney.net | +| | | | | | Oceane | http://clifton.com | +| | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | http://marina.com | Myles | http://nikko.name | +| | | | | | Rolando | http://nikko.name | +| | | | | | Pamela | https://aliza.net | +| | | | | | Marcella | http://helga.net | +| | | | | | Alisha | http://alyson.name | +| | | | | | Carmelo | http://michele.name | +| | | | | | Miles | https://freddie.com | +| | | | | | Kade | https://jaunita.biz | +| | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | Abner | http://tavares.info | +| | | | | | Johann | http://andres.net | +| | | | | | Jaquan | http://carey.org | +| | | | | | Arvel | http://mortimer.org | +| | | | | | Alicia | http://paula.com | +| | | | | | Heidi | http://letha.name | +| | | | | | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e02ca8e17d65555d.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e02ca8e17d65555d.verified.txt new file mode 100644 index 00000000..4b39a9c8 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e02ca8e17d65555d.verified.txt @@ -0,0 +1,9 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Judson | https://wilson.net | +| | | | | Guadalupe | http://otho.info | +| | | | | General | https://skylar.name | +| | | | | Haylie | http://audreanne.info | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e0411e2164f267a4.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e0411e2164f267a4.verified.txt new file mode 100644 index 00000000..e6f32afb --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e0411e2164f267a4.verified.txt @@ -0,0 +1,22 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e050b26febe47667.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e050b26febe47667.verified.txt new file mode 100644 index 00000000..784b0008 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e050b26febe47667.verified.txt @@ -0,0 +1,46 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e1ea4e506a3cf66d.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e1ea4e506a3cf66d.verified.txt new file mode 100644 index 00000000..21f1d0a1 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e1ea4e506a3cf66d.verified.txt @@ -0,0 +1,21 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | Braeden | http://ayana.org | +| | | | | | | | Avery | http://jarret.biz | +| | | | | | | | Clarissa | https://audreanne.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 | | Alyson | https://carmelo.biz | +| | | | | | | | Michele | https://miles.net | +| | | | | | | | Freddie | http://kade.net | +| | | | | | | | Jaunita | http://marcelina.biz | +| Future Data Manager | 2.5.9 | Expression | | | | | Abner | http://tavares.info | +| | | | | | | | Johann | http://andres.net | +| | | | | | | | Jaquan | http://carey.org | +| | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | Alicia | http://paula.com | +| | | | | | | | Heidi | http://letha.name | +| | | | | | | | Reid | https://amely.info | +| | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | Kiara | https://floyd.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e2226d4c9abbfcca.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e2226d4c9abbfcca.verified.txt new file mode 100644 index 00000000..87927a0a --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e2226d4c9abbfcca.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | --------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | --------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | --------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e249178e155c42d0.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e249178e155c42d0.verified.txt new file mode 100644 index 00000000..dbd4cd73 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e249178e155c42d0.verified.txt @@ -0,0 +1,31 @@ +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| Principal Assurance Representative | 3.8.2 | Ignored | | | | Patsy Erdman,Patsy Erdman,Patsy Erdman,Patsy Erdman | | Jadon | https://amelia.biz | +| | | | | | | | | Toni | http://angie.name | +| | | | | | | | | Ardella | http://melissa.net | +| | | | | | | | | Sandra | http://pearline.org | +| | | | | | | | | Noble | https://dusty.net | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e260693e7cc22742.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e260693e7cc22742.verified.txt new file mode 100644 index 00000000..9e714675 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e260693e7cc22742.verified.txt @@ -0,0 +1,8 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | ------- | -------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | ------- | -------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e2a5e23935ae7d7d.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e2a5e23935ae7d7d.verified.txt new file mode 100644 index 00000000..56dca99a --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e2a5e23935ae7d7d.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | --------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | --------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | --------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e4afa02b9d16a650.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e4afa02b9d16a650.verified.txt new file mode 100644 index 00000000..c9fdda9f --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e4afa02b9d16a650.verified.txt @@ -0,0 +1,36 @@ +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Senior Brand Developer | 4.4.1 | Ignored | If we override the system, we can get to the CSS system through the neural CSS system! | http://adelbert.net | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| | | | | | Libby | http://wade.biz | +| | | | | | Leola | https://pietro.info | +| | | | | | Arch | http://hazle.org | +| | | | | | Eldred | http://gabriel.net | +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e4ebd6f24c105615.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e4ebd6f24c105615.verified.txt new file mode 100644 index 00000000..f5a29520 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e4ebd6f24c105615.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e502607d55d38d63.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e502607d55d38d63.verified.txt new file mode 100644 index 00000000..7ffec9a2 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e502607d55d38d63.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | ------- | -------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | ------- | -------------------- | +| District Creative Designer | 1.4.6 | Url | We need to program the haptic IB panel! | | | | http://cameron.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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Corporate Intranet Associate | 7.5.1 | Overwrite | | 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! | | | | | +| Lead Configuration Liaison | 1.8.9 | Expression | | connecting the transmitter won't do anything, we need to program the cross-platform XSS transmitter! | | | http://esther.biz | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | | | +| Chief Functionality Planner | 5.1.2 | Unknown | | I'll calculate the 1080p HDD system, that should system the HDD system! | | Matt Mills,Matt Mills | http://myrtice.com | | | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | ------- | -------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e53463bcbcd0245c.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e53463bcbcd0245c.verified.txt new file mode 100644 index 00000000..2b597f34 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e53463bcbcd0245c.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e5cae6002d9cad03.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e5cae6002d9cad03.verified.txt new file mode 100644 index 00000000..6a8ed6a7 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e5cae6002d9cad03.verified.txt @@ -0,0 +1,32 @@ +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | --------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | --------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | --------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e64f78edf846e96b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e64f78edf846e96b.verified.txt new file mode 100644 index 00000000..22bfd49d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e64f78edf846e96b.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e6535e3a79595975.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e6535e3a79595975.verified.txt new file mode 100644 index 00000000..68e2b1d5 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e6535e3a79595975.verified.txt @@ -0,0 +1,41 @@ +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | Unknown | 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 Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e66274b528e6de37.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e66274b528e6de37.verified.txt new file mode 100644 index 00000000..53d88a69 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e66274b528e6de37.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Paige | https://remington.info | +| | | | | | Aletha | https://isobel.info | +| | | | | | Pearline | https://johnathon.info | +| | | | | | Eleanora | http://jaeden.info | +| | | | | | Nikolas | https://daphney.net | +| | | | | | Oceane | http://clifton.com | +| | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | http://marina.com | Myles | http://nikko.name | +| | | | | | Rolando | http://nikko.name | +| | | | | | Pamela | https://aliza.net | +| | | | | | Marcella | http://helga.net | +| | | | | | Alisha | http://alyson.name | +| | | | | | Carmelo | http://michele.name | +| | | | | | Miles | https://freddie.com | +| | | | | | Kade | https://jaunita.biz | +| | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | Abner | http://tavares.info | +| | | | | | Johann | http://andres.net | +| | | | | | Jaquan | http://carey.org | +| | | | | | Arvel | http://mortimer.org | +| | | | | | Alicia | http://paula.com | +| | | | | | Heidi | http://letha.name | +| | | | | | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e6c4d26cbe06e8d8.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e6c4d26cbe06e8d8.verified.txt new file mode 100644 index 00000000..ae037e03 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e6c4d26cbe06e8d8.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e74a7d6ece4d67df.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e74a7d6ece4d67df.verified.txt new file mode 100644 index 00000000..b2c66a0f --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e74a7d6ece4d67df.verified.txt @@ -0,0 +1,40 @@ +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e7bf0db583943634.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e7bf0db583943634.verified.txt new file mode 100644 index 00000000..58c6cc10 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e7bf0db583943634.verified.txt @@ -0,0 +1,35 @@ +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Senior Brand Developer | 4.4.1 | Ignored | If we override the system, we can get to the CSS system through the neural CSS system! | http://adelbert.net | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| | | | | | Libby | http://wade.biz | +| | | | | | Leola | https://pietro.info | +| | | | | | Arch | http://hazle.org | +| | | | | | Eldred | http://gabriel.net | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e8cef76650cfb997.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e8cef76650cfb997.verified.txt new file mode 100644 index 00000000..8bd05dab --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e8cef76650cfb997.verified.txt @@ -0,0 +1,15 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Dynamic Integration Assistant | 2.1.6 | Unknown | | | https://gerson.info | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| District Mobility Administrator | 3.2.3 | Unknown | | Christopher Dietrich,Christopher Dietrich,Christopher Dietrich,Christopher Dietrich | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e916fdaff02f1c3c.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e916fdaff02f1c3c.verified.txt new file mode 100644 index 00000000..3d56f299 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e916fdaff02f1c3c.verified.txt @@ -0,0 +1,145 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| Internal Solutions Planner | 1.3.8 | Ignored | | The COM application is down, quantify the auxiliary application so we can quantify the COM application! | | Nyah | http://oliver.com | +| | | | | | | Ettie | http://lonny.net | +| | | | | | | Onie | https://cassie.biz | +| | | | | | | Solon | https://buck.biz | +| | | | | | | Taryn | http://hilton.com | +| | | | | | | Isabel | http://rogers.net | +| | | | | | | Bertrand | http://annetta.org | +| | | | | | | Remington | https://efrain.info | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 Brand Associate | 7.6.8 | Ignored | | | https://lauriane.com | Devin | https://ramona.info | +| | | | | | | Alice | http://laverne.info | +| | | | | | | Layne | https://brooks.name | +| | | | | | | Kaitlyn | http://serenity.biz | +| National Creative Engineer | 4.0.0 | Ignored | You can't parse the alarm without overriding the haptic SMTP alarm! | | | Candida | https://craig.biz | +| | | | | | | Timmothy | https://joanny.biz | +| | | | | | | Alfonzo | http://dorothea.org | +| | | | | | | 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 | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Legacy Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Regional Mobility Manager | 2.7.0 | Ignored | | | http://gianni.info | Alvina | http://elouise.name | +| | | | | | | Ron | http://brown.org | +| | | | | | | Cordia | http://ericka.name | +| | | | | | | Eugene | http://rashad.info | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | +| Forward Directives Supervisor | 8.7.6 | Ignored | | The SSL microchip is down, hack the optical microchip so we can hack the SSL microchip! | http://shaun.org | Jadon | https://amelia.biz | +| | | | | | | Toni | http://angie.name | +| | | | | | | Ardella | http://melissa.net | +| | | | | | | Sandra | http://pearline.org | +| | | | | | | Noble | https://dusty.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e9179afd5a83d905.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e9179afd5a83d905.verified.txt new file mode 100644 index 00000000..2b597f34 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e9179afd5a83d905.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e95165215d69f470.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e95165215d69f470.verified.txt new file mode 100644 index 00000000..175ab01a --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e95165215d69f470.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e98287dcb5497c87.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e98287dcb5497c87.verified.txt new file mode 100644 index 00000000..eaa18a48 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e98287dcb5497c87.verified.txt @@ -0,0 +1,145 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| National Creative Engineer | 4.0.0 | Ignored | You can't parse the alarm without overriding the haptic SMTP alarm! | | | Candida | https://craig.biz | +| | | | | | | Timmothy | https://joanny.biz | +| | | | | | | Alfonzo | http://dorothea.org | +| | | | | | | 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 | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| Regional Mobility Manager | 2.7.0 | Ignored | | | http://gianni.info | Alvina | http://elouise.name | +| | | | | | | Ron | http://brown.org | +| | | | | | | Cordia | http://ericka.name | +| | | | | | | Eugene | http://rashad.info | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Forward Directives Supervisor | 8.7.6 | Ignored | | The SSL microchip is down, hack the optical microchip so we can hack the SSL microchip! | http://shaun.org | Jadon | https://amelia.biz | +| | | | | | | Toni | http://angie.name | +| | | | | | | Ardella | http://melissa.net | +| | | | | | | Sandra | http://pearline.org | +| | | | | | | Noble | https://dusty.net | +| Chief Brand Associate | 7.6.8 | Ignored | | | https://lauriane.com | Devin | https://ramona.info | +| | | | | | | Alice | http://laverne.info | +| | | | | | | Layne | https://brooks.name | +| | | | | | | Kaitlyn | http://serenity.biz | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | Ignored | | The COM application is down, quantify the auxiliary application so we can quantify the COM application! | | Nyah | http://oliver.com | +| | | | | | | Ettie | http://lonny.net | +| | | | | | | Onie | https://cassie.biz | +| | | | | | | Solon | https://buck.biz | +| | | | | | | Taryn | http://hilton.com | +| | | | | | | Isabel | http://rogers.net | +| | | | | | | Bertrand | http://annetta.org | +| | | | | | | Remington | https://efrain.info | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Legacy Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e9f219a231e93fc0.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e9f219a231e93fc0.verified.txt new file mode 100644 index 00000000..7e342a62 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_e9f219a231e93fc0.verified.txt @@ -0,0 +1,46 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ea12f73dca297663.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ea12f73dca297663.verified.txt new file mode 100644 index 00000000..38a58b36 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ea12f73dca297663.verified.txt @@ -0,0 +1,8 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ea5c14a391646ca3.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ea5c14a391646ca3.verified.txt new file mode 100644 index 00000000..cd2e5a5d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ea5c14a391646ca3.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_eb5283556accef3e.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_eb5283556accef3e.verified.txt new file mode 100644 index 00000000..edcc31c7 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_eb5283556accef3e.verified.txt @@ -0,0 +1,145 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| Internal Solutions Planner | 1.3.8 | Ignored | | The COM application is down, quantify the auxiliary application so we can quantify the COM application! | | Nyah | http://oliver.com | +| | | | | | | Ettie | http://lonny.net | +| | | | | | | Onie | https://cassie.biz | +| | | | | | | Solon | https://buck.biz | +| | | | | | | Taryn | http://hilton.com | +| | | | | | | Isabel | http://rogers.net | +| | | | | | | Bertrand | http://annetta.org | +| | | | | | | Remington | https://efrain.info | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| National Creative Engineer | 4.0.0 | Ignored | You can't parse the alarm without overriding the haptic SMTP alarm! | | | Candida | https://craig.biz | +| | | | | | | Timmothy | https://joanny.biz | +| | | | | | | Alfonzo | http://dorothea.org | +| | | | | | | 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 | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Forward Directives Supervisor | 8.7.6 | Ignored | | The SSL microchip is down, hack the optical microchip so we can hack the SSL microchip! | http://shaun.org | Jadon | https://amelia.biz | +| | | | | | | Toni | http://angie.name | +| | | | | | | Ardella | http://melissa.net | +| | | | | | | Sandra | http://pearline.org | +| | | | | | | Noble | https://dusty.net | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Regional Mobility Manager | 2.7.0 | Ignored | | | http://gianni.info | Alvina | http://elouise.name | +| | | | | | | Ron | http://brown.org | +| | | | | | | Cordia | http://ericka.name | +| | | | | | | Eugene | http://rashad.info | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Chief Brand Associate | 7.6.8 | Ignored | | | https://lauriane.com | Devin | https://ramona.info | +| | | | | | | Alice | http://laverne.info | +| | | | | | | Layne | https://brooks.name | +| | | | | | | Kaitlyn | http://serenity.biz | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_eb5f1537089e9820.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_eb5f1537089e9820.verified.txt new file mode 100644 index 00000000..71e5d1ee --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_eb5f1537089e9820.verified.txt @@ -0,0 +1,31 @@ +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Principal Assurance Representative | 3.8.2 | Ignored | | | | Patsy Erdman,Patsy Erdman,Patsy Erdman,Patsy Erdman | | Jadon | https://amelia.biz | +| | | | | | | | | Toni | http://angie.name | +| | | | | | | | | Ardella | http://melissa.net | +| | | | | | | | | Sandra | http://pearline.org | +| | | | | | | | | Noble | https://dusty.net | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_eb7ca9e103da3a43.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_eb7ca9e103da3a43.verified.txt new file mode 100644 index 00000000..949fa777 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_eb7ca9e103da3a43.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Paige | https://remington.info | +| | | | | Aletha | https://isobel.info | +| | | | | Pearline | https://johnathon.info | +| | | | | Eleanora | http://jaeden.info | +| | | | | Nikolas | https://daphney.net | +| | | | | Oceane | http://clifton.com | +| | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_eb7e09b4bdcfaf24.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_eb7e09b4bdcfaf24.verified.txt new file mode 100644 index 00000000..4623bea7 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_eb7e09b4bdcfaf24.verified.txt @@ -0,0 +1,130 @@ +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.biz | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| Corporate Accountability Designer | 0.8.0 | Ignored | We need to hack the online FTP application! | | Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn | http://taya.info | Abelardo | http://carolina.name | +| | | | | | | | Lindsey | http://rigoberto.org | +| | | | | | | | Lou | http://darlene.biz | +| | | | | | | | Oliver | https://filomena.com | +| | | | | | | | Vincenzo | https://ulices.biz | +| | | | | | | | Florida | http://jovan.net | +| | | | | | | | Ari | https://chad.com | +| | | | | | | | Yvonne | http://jada.name | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Customer Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Dynamic Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| Legacy Usability Coordinator | 5.8.8 | Overwrite | Try to calculate the PNG port, maybe it will calculate the back-end port! | | | http://thora.info | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Senior Solutions Strategist | 7.5.0 | 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 | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Corporate Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | http://celestine.info | Clemens | https://abagail.info | +| | | | | | | | Franz | http://prudence.info | +| | | | | | | | Casper | https://alva.com | +| | | | | | | | Mario | http://alexandria.biz | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ebc65530ae7493ea.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ebc65530ae7493ea.verified.txt new file mode 100644 index 00000000..c40b87eb --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ebc65530ae7493ea.verified.txt @@ -0,0 +1,130 @@ +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| Legacy Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Legacy Usability Coordinator | 5.8.8 | Overwrite | Try to calculate the PNG port, maybe it will calculate the back-end port! | | | http://thora.info | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Senior Solutions Strategist | 7.5.0 | 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 Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| Corporate Accountability Designer | 0.8.0 | Ignored | We need to hack the online FTP application! | | Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn | http://taya.info | Abelardo | http://carolina.name | +| | | | | | | | Lindsey | http://rigoberto.org | +| | | | | | | | Lou | http://darlene.biz | +| | | | | | | | Oliver | https://filomena.com | +| | | | | | | | Vincenzo | https://ulices.biz | +| | | | | | | | Florida | http://jovan.net | +| | | | | | | | Ari | https://chad.com | +| | | | | | | | Yvonne | http://jada.name | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.biz | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Corporate Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | http://celestine.info | Clemens | https://abagail.info | +| | | | | | | | Franz | http://prudence.info | +| | | | | | | | Casper | https://alva.com | +| | | | | | | | Mario | http://alexandria.biz | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ec6fb72fec3a9b0d.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ec6fb72fec3a9b0d.verified.txt new file mode 100644 index 00000000..f6dd3ea5 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ec6fb72fec3a9b0d.verified.txt @@ -0,0 +1,140 @@ +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Global Paradigm Assistant | 8.0.5 | Expression | We need to calculate the solid state HTTP hard drive! | | | https://randy.org | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Marketing Coordinator | 3.6.1 | Overwrite | | | | https://marcos.org | | | +| Investor Research Coordinator | 1.9.7 | Ignored | Use the cross-platform GB bus, then you can calculate the cross-platform bus! | | | https://maegan.name | | | +| Dynamic Implementation Engineer | 6.7.1 | Overwrite | We need to transmit the open-source EXE interface! | | | http://margie.info | | | +| District Interactions Supervisor | 4.5.2 | Url | The XSS capacitor is down, generate the bluetooth capacitor so we can generate the XSS capacitor! | The ADP firewall is down, input the primary firewall so we can input the ADP firewall! | | | | | +| Central Research Technician | 2.8.8 | Url | | You can't generate the program without connecting the bluetooth USB program! | | | | | +| Principal Operations Assistant | 0.9.0 | Url | I'll copy the auxiliary HDD bus, that should bus the HDD bus! | I'll copy the digital USB circuit, that should circuit the USB circuit! | | | | | +| Human Identity Representative | 4.1.5 | Overwrite | The SAS bus is down, program the neural bus so we can program the SAS bus! | | Joyce Auer,Joyce Auer,Joyce Auer | http://alyce.biz | | | +| Forward Usability Specialist | 5.6.9 | Overwrite | I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth! | | | | | | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | | | +| Global Implementation Strategist | 5.9.8 | Ignored | | | Colleen Schroeder,Colleen Schroeder | https://enos.info | | | +| National Assurance Planner | 2.7.7 | Unknown | | I'll reboot the online AGP alarm, that should alarm the AGP alarm! | Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag | | | | +| International Tactics Administrator | 9.9.9 | Url | | | | | | | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Customer Solutions Officer | 4.5.2 | Expression | You can't copy the matrix without compressing the wireless AGP matrix! | | | https://rylan.name | | | +| Direct Brand Director | 4.7.4 | Url | You can't navigate the capacitor without programming the solid state SQL capacitor! | | | | | | +| Global Optimization Architect | 1.5.0 | Unknown | Try to navigate the SCSI sensor, maybe it will navigate the mobile sensor! | | | | | | +| Human Tactics Facilitator | 5.7.0 | Url | Try to bypass the HTTP application, maybe it will bypass the digital application! | | | | | | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | | | +| Human Program Analyst | 3.1.8 | Expression | If we back up the application, we can get to the USB application through the cross-platform USB application! | | | http://efrain.org | | | +| Dynamic Security Specialist | 7.8.5 | Overwrite | Try to input the GB pixel, maybe it will input the wireless pixel! | You can't transmit the bus without indexing the digital TCP bus! | Guy Waters,Guy Waters | http://nova.biz | | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | | | +| Principal Security Producer | 7.3.3 | Ignored | You can't generate the interface without quantifying the mobile FTP interface! | Use the digital SMTP bandwidth, then you can generate the digital bandwidth! | | http://jarrell.biz | | | +| Product Directives Engineer | 8.2.3 | Unknown | transmitting the bus won't do anything, we need to navigate the online IB bus! | | Maggie Lindgren | | | | +| Chief Factors Developer | 5.9.5 | Url | | Try to connect the ADP system, maybe it will connect the solid state system! | Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady | | | | +| Investor Quality Associate | 0.5.1 | Expression | | Try to reboot the SSL alarm, maybe it will reboot the solid state alarm! | Carrie Hansen,Carrie Hansen,Carrie Hansen,Carrie Hansen | https://ezequiel.biz | | | +| Human Paradigm Assistant | 8.8.8 | Expression | | | Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich | | | | +| Dynamic Branding Manager | 1.4.0 | Overwrite | You can't navigate the application without generating the cross-platform COM application! | Try to program the FTP alarm, maybe it will program the virtual alarm! | | http://dario.info | | | +| Central Tactics Developer | 0.4.7 | Ignored | indexing the capacitor won't do anything, we need to program the haptic EXE capacitor! | The JBOD application is down, generate the solid state application so we can generate the JBOD application! | Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley | https://royal.name | | | +| Regional Optimization Administrator | 3.6.4 | Expression | | I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive! | | http://serenity.info | | | +| Customer Web Assistant | 1.9.0 | Unknown | | | | | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Future Research Planner | 8.8.9 | Ignored | | | | https://yvette.com | | | +| Dynamic Data Technician | 4.2.3 | Url | I'll copy the optical RAM feed, that should feed the RAM feed! | | June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds | http://nia.info | | | +| Legacy Interactions Supervisor | 9.7.2 | Ignored | | Try to generate the SAS matrix, maybe it will generate the cross-platform matrix! | Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn | | | | +| 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 | | | +| Senior Paradigm Analyst | 1.1.1 | Ignored | | If we navigate the alarm, we can get to the XML alarm through the cross-platform XML alarm! | | | | | +| District Optimization Technician | 5.2.3 | Overwrite | | | Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti | https://douglas.info | | | +| Future Tactics Specialist | 0.2.2 | Ignored | We need to override the primary SQL pixel! | We need to transmit the redundant EXE driver! | Alejandro Cruickshank,Alejandro Cruickshank,Alejandro Cruickshank,Alejandro Cruickshank | | | | +| Future Identity Agent | 8.8.0 | Ignored | I'll parse the 1080p USB protocol, that should protocol the USB protocol! | | | https://reva.name | | | +| Dynamic Factors Associate | 1.8.3 | Unknown | | You can't navigate the panel without calculating the open-source THX panel! | | http://dovie.name | | | +| Forward Data Orchestrator | 3.3.5 | Expression | Use the haptic XML driver, then you can index the haptic driver! | compressing the system won't do anything, we need to compress the optical RSS system! | | | | | +| Lead Operations Supervisor | 4.5.2 | Expression | The AI panel is down, transmit the open-source panel so we can transmit the AI panel! | | | | | | +| Forward Factors Architect | 6.7.6 | Ignored | | The THX transmitter is down, program the neural transmitter so we can program the THX transmitter! | Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts | | | | +| International Brand Strategist | 3.9.3 | Url | | | Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy | https://rowena.info | | | +| Corporate Intranet Specialist | 3.5.6 | Expression | | | Edmund Lehner,Edmund Lehner,Edmund Lehner,Edmund Lehner | | | | +| Global Identity Supervisor | 0.9.1 | Overwrite | | | | | | | +| Chief Infrastructure Specialist | 9.0.5 | Overwrite | hacking the port won't do anything, we need to back up the optical SMS port! | | Jackie Schumm | | | | +| Central Division Administrator | 1.0.4 | Overwrite | We need to program the optical COM microchip! | We need to hack the haptic SAS microchip! | | | | | +| International Branding Producer | 3.8.2 | Expression | We need to generate the solid state AGP microchip! | | | | | | +| Principal Intranet Architect | 4.9.3 | Unknown | | | | | | | +| Customer Program Developer | 2.9.8 | Expression | | You can't transmit the pixel without calculating the bluetooth FTP pixel! | | http://lenora.com | | | +| Customer Assurance Officer | 0.3.1 | Ignored | I'll navigate the digital CSS sensor, that should sensor the CSS sensor! | | | https://clementine.info | | | +| Customer Division Manager | 1.3.9 | Ignored | 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! | Rafael Altenwerth,Rafael Altenwerth,Rafael Altenwerth | | | | +| Dynamic Security Director | 0.0.2 | Url | transmitting the feed won't do anything, we need to navigate the redundant SDD feed! | Try to parse the HTTP port, maybe it will parse the bluetooth port! | Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block | | | | +| International Division Architect | 8.2.4 | Ignored | | | Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins | http://murphy.name | | | +| Regional Identity Engineer | 1.9.4 | Ignored | | The HTTP microchip is down, copy the digital microchip so we can copy the HTTP microchip! | Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston | | | | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | | | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | | | +| Lead Infrastructure Specialist | 7.2.6 | Ignored | | | Laura Abshire,Laura Abshire,Laura Abshire,Laura Abshire,Laura Abshire | https://wanda.com | | | +| Dynamic Solutions Agent | 0.0.5 | Overwrite | Use the haptic USB card, then you can navigate the haptic card! | | | | | | +| International Solutions Planner | 9.0.0 | Url | Use the multi-byte SMTP program, then you can synthesize the multi-byte program! | | | | | | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | | | +| Customer Branding Orchestrator | 8.3.7 | Overwrite | | We need to bypass the neural USB capacitor! | Nora Dietrich | http://nona.com | | | +| Customer Metrics Developer | 2.2.9 | Ignored | | | Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir | | | | +| Investor Accounts Facilitator | 7.7.8 | Expression | | | Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman | http://scottie.biz | | | +| Legacy Security Facilitator | 1.9.0 | Expression | | Use the cross-platform ADP alarm, then you can back up the cross-platform alarm! | | https://edythe.info | | | +| Regional Directives Liaison | 4.7.8 | Expression | If we connect the interface, we can get to the SCSI interface through the auxiliary SCSI interface! | | Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic | https://glennie.biz | | | +| Human Branding Coordinator | 5.8.1 | Ignored | | | | | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| Product Functionality Supervisor | 9.4.5 | Overwrite | Use the 1080p AI microchip, then you can reboot the 1080p microchip! | Use the open-source ADP matrix, then you can copy the open-source matrix! | | | | | +| 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 | | | | +| Corporate Intranet Analyst | 0.9.0 | Ignored | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp | http://hanna.net | | | +| Future Configuration Officer | 7.6.0 | Unknown | You can't compress the alarm without parsing the optical JBOD alarm! | I'll compress the back-end SSL system, that should system the SSL system! | Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie | | | | +| Lead Program Technician | 5.8.9 | Expression | | We need to transmit the back-end AGP sensor! | Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer | http://curtis.org | | | +| International Optimization Coordinator | 6.5.5 | Ignored | | | Darnell Terry | http://antoinette.org | | | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | | | +| Chief Program Associate | 2.6.7 | Unknown | We need to compress the optical PNG array! | | Wilbert Kunze,Wilbert Kunze,Wilbert Kunze,Wilbert Kunze | http://coy.info | | | +| Regional Metrics Strategist | 1.2.1 | Unknown | | Try to override the GB driver, maybe it will override the digital driver! | | | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | | | +| District Assurance Technician | 8.5.5 | Overwrite | | | | http://zander.com | | | +| Customer Communications Engineer | 6.9.4 | Overwrite | | | Tanya Reinger,Tanya Reinger,Tanya Reinger | http://tito.name | | | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Internal Program Designer | 7.2.5 | Ignored | We need to hack the auxiliary COM hard drive! | | | | | | +| Investor Tactics Director | 0.4.3 | Expression | | | | https://aylin.com | | | +| Central Implementation Planner | 7.6.0 | Ignored | | Try to generate the HDD panel, maybe it will generate the solid state panel! | | | | | +| Future Tactics Assistant | 1.5.5 | Expression | The IB sensor is down, reboot the virtual sensor so we can reboot the IB sensor! | If we calculate the matrix, we can get to the SMS matrix through the bluetooth SMS matrix! | | https://giovanny.net | | | +| Global Optimization Engineer | 8.7.9 | Expression | | quantifying the transmitter won't do anything, we need to synthesize the auxiliary FTP transmitter! | | http://aniya.org | | | +| Principal Brand Executive | 7.2.7 | Unknown | | | | https://dariana.com | | | +| Principal Factors Representative | 4.5.7 | Ignored | Try to input the RAM interface, maybe it will input the bluetooth interface! | The GB card is down, hack the digital card so we can hack the GB card! | Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker | https://imelda.org | | | +| Human Accounts Orchestrator | 4.1.6 | Url | | | | | | | +| Direct Division Officer | 6.5.6 | Url | transmitting the protocol won't do anything, we need to generate the multi-byte THX protocol! | | Glenda Schuppe,Glenda Schuppe | http://catherine.name | | | +| Regional Functionality Agent | 5.9.9 | Overwrite | We need to index the 1080p SAS hard drive! | I'll connect the digital JBOD application, that should application the JBOD application! | Gloria Williamson,Gloria Williamson,Gloria Williamson,Gloria Williamson | http://arthur.net | | | +| Senior Configuration Developer | 4.0.9 | Url | Use the primary SCSI matrix, then you can program the primary matrix! | If we parse the interface, we can get to the JSON interface through the mobile JSON interface! | Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle | | | | +| Human Markets Planner | 5.0.1 | Expression | Try to back up the COM driver, maybe it will back up the bluetooth driver! | | | | | | +| Lead Solutions Technician | 1.5.7 | Unknown | | | | | | | +| Product Solutions Manager | 9.5.2 | Overwrite | I'll hack the primary SDD card, that should card the SDD card! | hacking the transmitter won't do anything, we need to index the open-source CSS transmitter! | Sergio Bailey,Sergio Bailey,Sergio Bailey | | | | +| Dynamic Division Representative | 7.3.5 | Unknown | | I'll index the haptic FTP alarm, that should alarm the FTP alarm! | Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson | http://taurean.net | | | +| Customer Mobility Assistant | 4.2.9 | 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 | http://adonis.biz | | | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ef3ab5973b0f06de.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ef3ab5973b0f06de.verified.txt new file mode 100644 index 00000000..a6d843e8 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_ef3ab5973b0f06de.verified.txt @@ -0,0 +1,35 @@ +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f0468ea252f673ab.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f0468ea252f673ab.verified.txt new file mode 100644 index 00000000..1ddbee12 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f0468ea252f673ab.verified.txt @@ -0,0 +1,150 @@ +| -------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | ---------- | --------------------- | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | | | +| Global Implementation Strategist | 5.9.8 | Ignored | | | Colleen Schroeder,Colleen Schroeder | https://enos.info | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| International Optimization Coordinator | 6.5.5 | Ignored | | | Darnell Terry | http://antoinette.org | | | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.biz | +| International Tactics Administrator | 9.9.9 | Url | | | | | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | | | +| Legacy Usability Coordinator | 5.8.8 | Overwrite | Try to calculate the PNG port, maybe it will calculate the back-end port! | | | http://thora.info | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Senior Solutions Strategist | 7.5.0 | 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 | +| Customer Assurance Officer | 0.3.1 | Ignored | I'll navigate the digital CSS sensor, that should sensor the CSS sensor! | | | https://clementine.info | | | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | | | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | | | +| Legacy Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| Corporate Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | | | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| Customer Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| Corporate Accountability Designer | 0.8.0 | Ignored | We need to hack the online FTP application! | | Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn | http://taya.info | Abelardo | http://carolina.name | +| | | | | | | | Lindsey | http://rigoberto.org | +| | | | | | | | Lou | http://darlene.biz | +| | | | | | | | Oliver | https://filomena.com | +| | | | | | | | Vincenzo | https://ulices.biz | +| | | | | | | | Florida | http://jovan.net | +| | | | | | | | Ari | https://chad.com | +| | | | | | | | Yvonne | http://jada.name | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Legacy Interactions Supervisor | 9.7.2 | Ignored | | Try to generate the SAS matrix, maybe it will generate the cross-platform matrix! | Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn | | | | +| Dynamic Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | | | +| Internal Program Designer | 7.2.5 | Ignored | We need to hack the auxiliary COM hard drive! | | | | | | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | http://celestine.info | Clemens | https://abagail.info | +| | | | | | | | Franz | http://prudence.info | +| | | | | | | | Casper | https://alva.com | +| | | | | | | | Mario | http://alexandria.biz | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| Customer Division Manager | 1.3.9 | Ignored | 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! | Rafael Altenwerth,Rafael Altenwerth,Rafael Altenwerth | | | | +| -------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f079fc9ff3e8f97e.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f079fc9ff3e8f97e.verified.txt new file mode 100644 index 00000000..a0f29e1f --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f079fc9ff3e8f97e.verified.txt @@ -0,0 +1,119 @@ +| --------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| District Metrics Associate | 8.1.6 | Overwrite | | | http://jaylin.org | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Human Security Administrator | 9.8.5 | Overwrite | I'll synthesize the redundant XML feed, that should feed the XML feed! | Mario Stamm,Mario Stamm,Mario Stamm,Mario Stamm,Mario Stamm,Mario Stamm | | | | +| Principal Group Strategist | 4.1.0 | Url | I'll bypass the primary GB bandwidth, that should bandwidth the GB bandwidth! | | | | | +| Regional Paradigm Director | 3.0.9 | Unknown | The COM pixel is down, quantify the virtual pixel so we can quantify the COM pixel! | | | | | +| Corporate Quality Planner | 6.6.3 | Url | 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 | | | | +| Forward Accounts Consultant | 8.9.0 | Expression | | | | | | +| Human Implementation Producer | 0.9.1 | Url | | | | | | +| Dynamic Integration Assistant | 2.1.6 | Unknown | | | https://gerson.info | | | +| Dynamic Metrics Coordinator | 5.8.1 | Unknown | overriding the circuit won't do anything, we need to copy the mobile AGP circuit! | Helen Fisher,Helen Fisher,Helen Fisher,Helen Fisher,Helen Fisher | | | | +| Regional Integration Consultant | 5.3.8 | Expression | | | http://michael.name | | | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| Regional Factors Analyst | 1.5.7 | Overwrite | | | | | | +| Dynamic Group Representative | 9.8.1 | Unknown | | | | | | +| Lead Identity Developer | 7.1.0 | Unknown | | Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover | https://eve.com | | | +| Global Integration Assistant | 5.0.1 | Unknown | | | http://demarco.com | | | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | http://hanna.net | | | +| District Identity Administrator | 2.9.6 | Unknown | | Isabel Schmitt,Isabel Schmitt,Isabel Schmitt,Isabel Schmitt | http://duncan.name | | | +| Dynamic Applications Director | 5.1.4 | Unknown | | Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel | | | | +| Global Markets Designer | 1.7.0 | Overwrite | Use the multi-byte COM feed, then you can parse the multi-byte feed! | | https://toby.biz | | | +| Central Identity Analyst | 8.9.6 | Expression | | | http://leta.org | | | +| Regional Security Agent | 6.2.7 | Overwrite | | | https://kenyon.org | | | +| Legacy Communications Manager | 0.1.8 | Unknown | | | http://gus.info | | | +| Forward Intranet Technician | 2.5.3 | Expression | | Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton | https://ruby.biz | | | +| Global Directives Orchestrator | 8.7.6 | Expression | | Tommy Franecki,Tommy Franecki | | | | +| Forward Integration Specialist | 8.7.1 | Expression | | | http://jordon.net | | | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| Senior Response Officer | 2.8.2 | Expression | | Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann | | | | +| Dynamic Mobility Technician | 6.0.2 | Expression | | | https://keeley.net | | | +| Future Configuration Architect | 4.2.6 | Expression | I'll generate the primary TCP bus, that should bus the TCP bus! | Victoria Padberg,Victoria Padberg,Victoria Padberg,Victoria Padberg,Victoria Padberg,Victoria Padberg | | | | +| Future Directives Associate | 1.1.1 | Expression | | Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe | https://shayne.name | | | +| Lead Implementation Supervisor | 4.9.9 | Overwrite | The ADP card is down, hack the solid state card so we can hack the ADP card! | Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis | http://katlynn.net | | | +| Legacy Assurance Representative | 6.4.9 | Unknown | | Diane Gutkowski,Diane Gutkowski,Diane Gutkowski,Diane Gutkowski,Diane Gutkowski | https://maye.info | | | +| Regional Mobility Designer | 8.5.4 | Url | | | http://brady.net | | | +| Senior Group Designer | 3.0.6 | Url | The AGP pixel is down, hack the neural pixel so we can hack the AGP pixel! | | | | | +| Direct Accountability Producer | 1.8.1 | Url | | | http://justine.net | | | +| District Brand Producer | 9.3.8 | Overwrite | Use the redundant AGP application, then you can generate the redundant application! | Clarence Metz,Clarence Metz,Clarence Metz | | | | +| Internal Web Associate | 6.2.5 | Expression | | | https://arvel.name | | | +| Global Data Administrator | 0.8.4 | Unknown | | Frederick Leffler,Frederick Leffler,Frederick Leffler | https://barrett.com | | | +| Investor Configuration Technician | 1.9.1 | Url | We need to copy the primary FTP bus! | Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin | http://malvina.name | | | +| Internal Division Agent | 2.4.2 | Url | | Gary Von,Gary Von,Gary Von | | | | +| Future Optimization Associate | 4.0.5 | Unknown | | Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel | https://linnie.net | | | +| Future Tactics Producer | 5.8.9 | Url | navigating the pixel won't do anything, we need to parse the back-end IB pixel! | | | | | +| Future Interactions Developer | 1.1.7 | Unknown | If we reboot the matrix, we can get to the CSS matrix through the cross-platform CSS matrix! | | | | | +| Investor Communications Associate | 0.7.2 | Expression | | Arnold Franecki,Arnold Franecki | http://modesto.info | | | +| Investor Assurance Technician | 7.3.8 | Overwrite | | Merle Hirthe | | | | +| Principal Factors Producer | 0.8.5 | Unknown | connecting the system won't do anything, we need to override the back-end SQL system! | Devin Nolan | http://toby.info | | | +| Dynamic Research Designer | 5.6.8 | Unknown | If we connect the program, we can get to the SQL program through the digital SQL program! | | | | | +| Investor Interactions Designer | 1.9.4 | Overwrite | | | https://octavia.name | | | +| Future Applications Facilitator | 0.1.5 | Expression | transmitting the program won't do anything, we need to bypass the virtual HTTP program! | | | | | +| Central Applications Planner | 6.6.9 | Overwrite | | Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke | http://ava.org | | | +| Human Web Liaison | 8.1.1 | Unknown | | | https://imogene.org | | | +| Future Applications Engineer | 6.8.5 | Unknown | 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 | | | +| Dynamic Division Specialist | 9.6.4 | Expression | | | https://keenan.net | | | +| Legacy Data Consultant | 5.8.8 | Unknown | Try to connect the JSON pixel, maybe it will connect the primary pixel! | | | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Senior Applications Technician | 7.8.2 | Overwrite | | Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert | | | | +| Global Mobility Associate | 0.6.4 | Expression | We need to hack the haptic XSS program! | | https://brooke.org | | | +| Product Solutions Manager | 9.5.2 | Overwrite | I'll hack the primary SDD card, that should card the SDD card! | Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach | | | | +| Customer Group Director | 2.5.2 | Expression | You can't index the pixel without copying the redundant XML pixel! | Vera Krajcik,Vera Krajcik,Vera Krajcik,Vera Krajcik | https://eloise.name | | | +| 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 Response Analyst | 9.2.7 | Unknown | | Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata | http://martine.info | | | +| Forward Factors Architect | 6.7.6 | Overwrite | | Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt | | | | +| Principal Intranet Architect | 4.9.3 | Expression | | | | | | +| Customer Operations Liaison | 9.0.9 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | | | | +| Forward Division Strategist | 5.7.1 | Expression | You can't reboot the program without transmitting the mobile SMTP program! | Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode | https://esperanza.name | | | +| Direct Security Producer | 9.0.7 | Url | | | http://evert.net | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| District Mobility Administrator | 3.2.3 | Unknown | | Christopher Dietrich,Christopher Dietrich,Christopher Dietrich,Christopher Dietrich | | | | +| Product Metrics Representative | 2.7.9 | Expression | connecting the feed won't do anything, we need to transmit the primary IB feed! | Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson | http://denis.info | | | +| Central Mobility Executive | 5.0.3 | Unknown | | Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling | | | | +| Forward Program Officer | 4.2.4 | Unknown | quantifying the capacitor won't do anything, we need to override the open-source AI capacitor! | Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin | | | | +| Dynamic Integration Assistant | 2.7.5 | Overwrite | I'll back up the 1080p RSS matrix, that should matrix the RSS matrix! | | | | | +| District Intranet Agent | 1.1.6 | Url | You can't calculate the application without synthesizing the primary JBOD application! | | | | | +| District Factors Associate | 0.2.6 | Expression | | Betsy Powlowski | https://cloyd.biz | | | +| Senior Factors Technician | 3.2.5 | Overwrite | You can't input the protocol without copying the auxiliary USB protocol! | Lee Zieme,Lee Zieme,Lee Zieme,Lee Zieme,Lee Zieme | | | | +| Lead Solutions Technician | 1.5.7 | Unknown | | | | | | +| Global Paradigm Producer | 1.8.4 | Overwrite | If we quantify the protocol, we can get to the IB protocol through the auxiliary IB protocol! | | https://london.biz | | | +| Dynamic Brand Agent | 2.9.2 | Expression | quantifying the application won't do anything, we need to hack the haptic RAM application! | Bertha Schultz,Bertha Schultz | https://reese.info | | | +| Corporate Mobility Consultant | 1.9.0 | Expression | | | http://letha.name | | | +| Dynamic Accounts Architect | 9.8.0 | Overwrite | | | | | | +| Forward Web Designer | 0.1.4 | Overwrite | | | https://gerard.net | | | +| National Quality Executive | 4.5.1 | Expression | Use the solid state TCP driver, then you can generate the solid state driver! | | http://rylan.com | | | +| --------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f0e2ed36efc20018.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f0e2ed36efc20018.verified.txt new file mode 100644 index 00000000..7f86595e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f0e2ed36efc20018.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Future Integration Analyst | 9.0.4 | Expression | | | Abner | http://tavares.info | +| | | | | | Johann | http://andres.net | +| | | | | | Jaquan | http://carey.org | +| | | | | | Arvel | http://mortimer.org | +| | | | | | Alicia | http://paula.com | +| | | | | | Heidi | http://letha.name | +| | | | | | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Paige | https://remington.info | +| | | | | | Aletha | https://isobel.info | +| | | | | | Pearline | https://johnathon.info | +| | | | | | Eleanora | http://jaeden.info | +| | | | | | Nikolas | https://daphney.net | +| | | | | | Oceane | http://clifton.com | +| | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | http://marina.com | Myles | http://nikko.name | +| | | | | | Rolando | http://nikko.name | +| | | | | | Pamela | https://aliza.net | +| | | | | | Marcella | http://helga.net | +| | | | | | Alisha | http://alyson.name | +| | | | | | Carmelo | http://michele.name | +| | | | | | Miles | https://freddie.com | +| | | | | | Kade | https://jaunita.biz | +| | | | | | Marcelina | http://donna.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f1358642e55f5f51.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f1358642e55f5f51.verified.txt new file mode 100644 index 00000000..681bbb2a --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f1358642e55f5f51.verified.txt @@ -0,0 +1,25 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| Central Infrastructure Agent | 6.1.6 | Expression | | | You can't quantify the program without overriding the online SDD program! | | | | +| Lead Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f163c5af104e0c4d.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f163c5af104e0c4d.verified.txt new file mode 100644 index 00000000..f5a29520 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f163c5af104e0c4d.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f16d204121f144d0.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f16d204121f144d0.verified.txt new file mode 100644 index 00000000..56dca99a --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f16d204121f144d0.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | --------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | --------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | --------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f190428a3524b87c.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f190428a3524b87c.verified.txt new file mode 100644 index 00000000..8780cf4d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f190428a3524b87c.verified.txt @@ -0,0 +1,195 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Legacy Directives Supervisor | 9.6.2 | Url | The PNG circuit is down, back up the online circuit so we can back up the PNG circuit! | | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Human Program Technician | 2.8.4 | Unknown | | | http://tomasa.info | | | +| Global Division Designer | 8.2.7 | Expression | Try to program the EXE hard drive, maybe it will program the virtual hard drive! | | https://pamela.name | | | +| National Communications Orchestrator | 4.5.1 | Unknown | The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit! | | | | | +| Human Directives Specialist | 4.3.4 | Unknown | Use the digital XSS hard drive, then you can compress the digital hard drive! | You can't generate the card without synthesizing the bluetooth PNG card! | | | | +| Human Optimization Facilitator | 7.4.8 | Overwrite | 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! | https://cooper.name | | | +| Direct Assurance Strategist | 1.3.7 | Expression | The RSS firewall is down, hack the neural firewall so we can hack the RSS firewall! | | | | | +| National Intranet Technician | 8.0.0 | Overwrite | | | | | | +| Senior Brand Analyst | 2.5.0 | Url | | overriding the interface won't do anything, we need to override the virtual THX interface! | | | | +| Internal Directives Designer | 0.4.8 | Url | The EXE protocol is down, reboot the redundant protocol so we can reboot the EXE protocol! | | | | | +| Corporate Tactics Director | 2.5.7 | Url | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | http://marcos.info | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Direct Accountability Assistant | 2.2.8 | Url | bypassing the protocol won't do anything, we need to compress the primary HTTP protocol! | | http://natasha.info | | | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | +| Chief Applications Facilitator | 7.7.6 | Overwrite | | parsing the card won't do anything, we need to synthesize the online SQL card! | | | | +| Forward Functionality Developer | 5.1.1 | Url | | | | | | +| Central Identity Analyst | 8.9.6 | Expression | | | http://leta.org | | | +| Investor Interactions Liaison | 4.4.9 | Overwrite | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | | | | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | | | +| Dynamic Quality Analyst | 0.9.5 | Overwrite | We need to index the optical HTTP application! | I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor! | | | | +| Corporate Directives Planner | 8.8.5 | Unknown | The CSS bus is down, generate the 1080p bus so we can generate the CSS bus! | We need to back up the 1080p SMTP feed! | | | | +| Senior Optimization Assistant | 3.6.0 | Overwrite | | overriding the pixel won't do anything, we need to copy the optical JSON pixel! | http://akeem.info | | | +| Investor Creative Architect | 8.2.4 | Unknown | | | | | | +| Human Operations Assistant | 0.7.2 | Overwrite | Use the haptic USB driver, then you can override the haptic driver! | | http://camila.net | | | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | | | +| Direct Data Orchestrator | 2.4.5 | Expression | | Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor! | | | | +| Legacy Directives Officer | 2.4.4 | Url | | The PCI program is down, hack the multi-byte program so we can hack the PCI program! | http://sedrick.biz | | | +| Regional Factors Designer | 7.4.1 | Overwrite | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | | | | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| Chief Division Producer | 2.3.9 | Overwrite | | | | | | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Principal Markets Designer | 3.8.8 | Overwrite | overriding the transmitter won't do anything, we need to generate the cross-platform SCSI transmitter! | | | | | +| Product Creative Facilitator | 8.4.6 | Unknown | 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://juliana.net | | | +| Human Optimization Producer | 5.0.9 | Overwrite | | | | | | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | | | +| National Creative Coordinator | 5.9.5 | Expression | | | https://bobbie.info | | | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | | | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 | +| Principal Accounts Coordinator | 1.0.4 | Overwrite | | I'll connect the digital JSON bus, that should bus the JSON bus! | http://rene.com | | | +| Senior Security Consultant | 2.7.5 | Unknown | | | http://adelbert.biz | | | +| Regional Operations Coordinator | 0.2.5 | Unknown | | I'll hack the cross-platform SSL array, that should array the SSL array! | http://ena.com | | | +| Human Directives Engineer | 5.3.9 | Url | | | | | | +| Central Web Assistant | 4.2.1 | Unknown | | Use the wireless ADP array, then you can input the wireless array! | https://verda.net | | | +| Global Program Representative | 5.1.0 | Url | | If we back up the monitor, we can get to the PCI monitor through the virtual PCI monitor! | | | | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | http://hanna.net | | | +| Customer Functionality Consultant | 5.5.1 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | http://terence.com | | | +| Senior Factors Administrator | 1.6.1 | Expression | I'll calculate the solid state ADP panel, that should panel the ADP panel! | If we generate the circuit, we can get to the XSS circuit through the primary XSS circuit! | | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Dynamic Division Consultant | 4.8.7 | Overwrite | Use the multi-byte IB microchip, then you can connect the multi-byte microchip! | backing up the feed won't do anything, we need to compress the haptic SMTP feed! | http://raquel.net | | | +| Dynamic Accountability Strategist | 7.0.9 | Unknown | You can't bypass the sensor without transmitting the neural JSON sensor! | | | | | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 Accountability Analyst | 4.9.7 | Overwrite | | | https://jaron.info | | | +| National Applications Designer | 6.4.9 | Expression | | Use the back-end SMS feed, then you can program the back-end feed! | | | | +| International Quality Director | 0.3.8 | Expression | | | | | | +| National Research Facilitator | 6.0.6 | Expression | Use the primary EXE array, then you can navigate the primary array! | | | | | +| Human Group Designer | 9.9.1 | Expression | Use the haptic XSS application, then you can synthesize the haptic application! | If we transmit the hard drive, we can get to the AGP hard drive through the bluetooth AGP hard drive! | http://jodie.org | | | +| International Functionality Agent | 8.7.6 | Unknown | | If we hack the card, we can get to the JBOD card through the optical JBOD card! | http://jalyn.org | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | | | +| Lead Branding Developer | 4.1.5 | Url | | | http://abe.com | | | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | | | +| Lead Usability Assistant | 1.3.4 | Overwrite | quantifying the matrix won't do anything, we need to synthesize the wireless PCI matrix! | Use the solid state SQL firewall, then you can connect the solid state firewall! | https://duane.info | | | +| Human Quality Facilitator | 1.2.0 | Expression | We need to copy the online THX firewall! | You can't calculate the application without calculating the auxiliary AI application! | | | | +| Dynamic Factors Facilitator | 6.5.2 | Expression | | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | http://magnolia.com | | | +| Global Mobility Facilitator | 9.5.8 | Expression | | | | | | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | | | +| Chief Intranet Facilitator | 6.6.1 | Expression | | | https://rosalind.net | | | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| Forward Intranet Engineer | 2.5.9 | Expression | The RSS sensor is down, input the 1080p sensor so we can input the RSS sensor! | Try to index the ADP port, maybe it will index the auxiliary port! | | | | +| Corporate Marketing Assistant | 8.7.9 | Url | | You can't program the firewall without connecting the wireless AI firewall! | http://arlene.biz | | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | | | +| Investor Implementation Technician | 2.7.9 | Unknown | | | http://crystal.name | | | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | | | +| Direct Mobility Designer | 7.7.3 | Expression | | | http://geovanny.info | | | +| Future Accounts Architect | 9.1.8 | Url | You can't bypass the firewall without indexing the multi-byte COM firewall! | | https://fermin.biz | | | +| Chief Factors Supervisor | 5.2.2 | Expression | | | http://helga.com | | | +| Forward Marketing Orchestrator | 1.6.4 | Overwrite | I'll connect the primary SQL sensor, that should sensor the SQL sensor! | The SMTP driver is down, bypass the mobile driver so we can bypass the SMTP driver! | https://lukas.com | | | +| Legacy Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| International Intranet Planner | 6.4.6 | Url | The IB interface is down, program the redundant interface so we can program the IB interface! | | https://lenna.com | | | +| Dynamic Integration Architect | 1.6.3 | Overwrite | | The RAM feed is down, copy the neural feed so we can copy the RAM feed! | | | | +| Product Assurance Technician | 0.8.2 | Overwrite | | | https://steve.info | | | +| 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 | | | +| Forward Configuration Supervisor | 9.0.8 | Overwrite | You can't program the protocol without overriding the primary IB protocol! | | http://quinn.name | | | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Central Tactics Engineer | 6.3.5 | Unknown | connecting the bandwidth won't do anything, we need to bypass the multi-byte AI bandwidth! | | | | | +| District Operations Director | 0.6.3 | Url | | We need to program the cross-platform FTP hard drive! | https://dejah.net | | | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| National Solutions Associate | 9.1.2 | Overwrite | | | | | | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f1ccdba334de44c7.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f1ccdba334de44c7.verified.txt new file mode 100644 index 00000000..0203d33f --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f1ccdba334de44c7.verified.txt @@ -0,0 +1,108 @@ +| ------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ------- | -------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ------- | -------------------- | +| National Creative Analyst | 6.3.1 | Expression | | The SSL feed is down, back up the cross-platform feed so we can back up the SSL feed! | | | | | | +| 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Forward Program Officer | 4.2.4 | Url | quantifying the capacitor won't do anything, we need to override the open-source AI capacitor! | indexing the port won't do anything, we need to back up the virtual AGP port! | calculating the bus won't do anything, we need to generate the online CSS bus! | Leon Mayer,Leon Mayer | | | | +| International Branding Producer | 3.8.2 | Expression | We need to generate the solid state AGP microchip! | | | | | | | +| International Intranet Officer | 3.6.7 | Ignored | You can't transmit the pixel without quantifying the mobile AGP pixel! | transmitting the matrix won't do anything, we need to connect the haptic SCSI matrix! | You can't generate the firewall without backing up the primary HTTP firewall! | Ramona Erdman,Ramona Erdman | http://mack.net | | | +| Global Optimization Engineer | 8.7.9 | Ignored | | quantifying the transmitter won't do anything, we need to synthesize the auxiliary FTP transmitter! | If we synthesize the port, we can get to the HTTP port through the auxiliary HTTP port! | | http://aniya.org | | | +| Forward Research Associate | 3.4.7 | Url | | You can't navigate the capacitor without programming the solid state SQL capacitor! | | | | | | +| Dynamic Configuration Specialist | 3.6.8 | Overwrite | | Use the haptic AGP protocol, then you can program the haptic protocol! | | Meredith Sawayn,Meredith Sawayn,Meredith Sawayn,Meredith Sawayn,Meredith Sawayn,Meredith Sawayn | | | | +| Future Tactics Specialist | 0.2.2 | Overwrite | We need to override the primary SQL pixel! | We need to transmit the redundant EXE driver! | You can't calculate the hard drive without hacking the multi-byte FTP hard drive! | | | | | +| Regional Communications Strategist | 9.3.1 | Url | overriding the matrix won't do anything, we need to back up the solid state IB matrix! | Try to index the HDD panel, maybe it will index the haptic panel! | We need to index the bluetooth JSON pixel! | | http://eloisa.biz | | | +| Human Accountability Developer | 6.9.0 | Unknown | If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit! | | | | | | | +| International Optimization Supervisor | 9.5.8 | Ignored | | | | | https://roman.com | | | +| Forward Directives Representative | 0.5.1 | Url | | parsing the panel won't do anything, we need to calculate the digital SMTP panel! | | Theresa Heathcote,Theresa Heathcote,Theresa Heathcote,Theresa Heathcote,Theresa Heathcote,Theresa Heathcote | https://cleve.biz | | | +| Customer Metrics Analyst | 6.7.1 | Unknown | | | | | | | | +| Corporate Intranet Associate | 7.5.1 | Overwrite | | 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! | | | | | +| Forward Branding Strategist | 4.6.2 | Overwrite | | | The THX hard drive is down, compress the back-end hard drive so we can compress the THX hard drive! | | | | | +| Corporate Intranet Facilitator | 2.8.8 | Ignored | If we program the feed, we can get to the CSS feed through the solid state CSS feed! | Use the redundant GB driver, then you can connect the redundant driver! | | Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser | http://isabella.name | | | +| Internal Program Engineer | 2.9.3 | Expression | I'll input the neural SQL application, that should application the SQL application! | You can't generate the hard drive without transmitting the haptic RAM hard drive! | I'll bypass the optical AGP feed, that should feed the AGP feed! | | http://cleta.org | | | +| District Integration Designer | 6.2.2 | Expression | | You can't connect the port without connecting the back-end COM port! | | Ignacio Hane,Ignacio Hane | https://cindy.org | | | +| Central Tactics Director | 4.6.7 | Url | backing up the system won't do anything, we need to parse the neural CSS system! | We need to transmit the back-end RSS transmitter! | | Doyle Osinski,Doyle Osinski,Doyle Osinski,Doyle Osinski | https://valentina.net | | | +| International Marketing Officer | 7.2.8 | Expression | | | | Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk | | | | +| National Security Orchestrator | 3.5.6 | Expression | Try to copy the HDD array, maybe it will copy the back-end array! | 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! | Roderick Koelpin,Roderick Koelpin,Roderick Koelpin | | | | +| Global Markets Administrator | 8.6.8 | Expression | 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! | The SSL application is down, reboot the bluetooth application so we can reboot the SSL application! | Julius Bernhard,Julius Bernhard,Julius Bernhard,Julius Bernhard | https://lois.biz | | | +| Direct Group Liaison | 3.5.1 | Overwrite | We need to parse the haptic SMS monitor! | | We need to program the auxiliary JBOD circuit! | | | | | +| International Branding Associate | 4.9.4 | Url | | 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://trinity.name | | | +| Corporate Intranet Agent | 9.1.8 | Url | We need to compress the 1080p GB circuit! | | The PCI driver is down, reboot the haptic driver so we can reboot the PCI driver! | Essie Hamill,Essie Hamill | http://precious.name | | | +| Senior Metrics Engineer | 8.3.4 | Overwrite | | Try to quantify the FTP bus, maybe it will quantify the optical bus! | | Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand | http://lou.net | | | +| Corporate Program Associate | 5.2.5 | Overwrite | | | overriding the interface won't do anything, we need to override the virtual THX interface! | | | | | +| Principal Web Associate | 4.2.5 | Expression | | | If we index the hard drive, we can get to the XSS hard drive through the primary XSS hard drive! | Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles | | | | +| Forward Usability Developer | 6.9.1 | Overwrite | | | You can't connect the protocol without overriding the redundant RSS protocol! | | | | | +| Lead Program Engineer | 4.5.7 | Overwrite | | The PCI protocol is down, calculate the bluetooth protocol so we can calculate the PCI protocol! | | | | | | +| Direct Applications Designer | 1.5.1 | Unknown | | We need to connect the haptic TCP panel! | If we bypass the card, we can get to the HDD card through the auxiliary HDD card! | Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling | http://tito.name | | | +| Global Configuration Strategist | 1.4.4 | Ignored | | | | Vickie Sipes | https://marilyne.com | | | +| International Marketing Officer | 2.2.1 | Overwrite | If we connect the driver, we can get to the XSS driver through the online XSS driver! | | | | https://weldon.info | | | +| Forward Paradigm Developer | 7.9.7 | Overwrite | The GB interface is down, input the auxiliary interface so we can input the GB interface! | The XSS transmitter is down, back up the online transmitter so we can back up the XSS transmitter! | | Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter | http://maureen.name | | | +| Forward Communications Director | 6.0.8 | Overwrite | Try to override the AI alarm, maybe it will override the online alarm! | We need to quantify the virtual TCP card! | | Kristin Bernhard,Kristin Bernhard | | | | +| Principal Identity Designer | 4.7.0 | Ignored | | | compressing the sensor won't do anything, we need to index the mobile ADP sensor! | | https://brock.net | | | +| Principal Optimization Administrator | 9.6.7 | Ignored | The XML card is down, bypass the back-end card so we can bypass the XML card! | | | | https://franz.biz | | | +| Dynamic Configuration Administrator | 4.3.8 | Url | | | Use the redundant AGP microchip, then you can override the redundant microchip! | Roberto Deckow,Roberto Deckow,Roberto Deckow | | | | +| National Creative Officer | 5.5.6 | Overwrite | indexing the capacitor won't do anything, we need to reboot the redundant FTP capacitor! | | The TCP array is down, bypass the mobile array so we can bypass the TCP array! | | http://orpha.name | | | +| Customer Branding Engineer | 7.9.7 | Ignored | Try to input the TCP sensor, maybe it will input the haptic sensor! | If we navigate the microchip, we can get to the SMS microchip through the redundant SMS microchip! | compressing the system won't do anything, we need to synthesize the redundant ADP system! | Randall Haley,Randall Haley,Randall Haley,Randall Haley,Randall Haley,Randall Haley,Randall Haley,Randall Haley,Randall Haley,Randall Haley | | | | +| Senior Brand Agent | 3.1.9 | Url | generating the alarm won't do anything, we need to parse the virtual XSS alarm! | | I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth! | | https://lina.info | | | +| Lead Configuration Liaison | 1.8.9 | Expression | | connecting the transmitter won't do anything, we need to program the cross-platform XSS transmitter! | | | http://esther.biz | | | +| Corporate Infrastructure Executive | 4.8.1 | Unknown | | | Try to index the FTP transmitter, maybe it will index the bluetooth transmitter! | Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist | https://justice.info | | | +| Chief Markets Executive | 1.5.7 | Ignored | | | | | | | | +| Senior Research Liaison | 5.0.6 | Overwrite | If we compress the system, we can get to the AGP system through the multi-byte AGP system! | I'll hack the optical XSS monitor, that should monitor the XSS monitor! | | | http://clair.biz | | | +| Regional Brand Associate | 4.0.9 | Expression | | | I'll program the wireless HDD pixel, that should pixel the HDD pixel! | | | | | +| National Implementation Agent | 5.6.8 | Expression | | | Use the multi-byte PNG circuit, then you can navigate the multi-byte circuit! | Ira Hermiston,Ira Hermiston,Ira Hermiston,Ira Hermiston | http://rex.biz | | | +| Legacy Solutions Architect | 7.9.3 | Url | | Try to input the AI sensor, maybe it will input the digital sensor! | If we program the array, we can get to the JBOD array through the primary JBOD array! | | | | | +| Investor Usability Officer | 2.5.2 | Unknown | Try to program the XML capacitor, maybe it will program the haptic capacitor! | Use the optical SSL alarm, then you can bypass the optical alarm! | | Johnny Bernier | http://orlo.name | | | +| Central Functionality Technician | 3.9.3 | Url | | | The AI microchip is down, override the multi-byte microchip so we can override the AI microchip! | | | | | +| Customer Group Agent | 0.9.9 | Ignored | | If we override the sensor, we can get to the COM sensor through the 1080p COM sensor! | I'll generate the auxiliary HTTP microchip, that should microchip the HTTP microchip! | | | | | +| Future Markets Architect | 7.2.2 | Overwrite | If we synthesize the port, we can get to the CSS port through the online CSS port! | synthesizing the panel won't do anything, we need to transmit the neural THX panel! | | Gerald Cruickshank,Gerald Cruickshank,Gerald Cruickshank | https://maxime.info | | | +| Customer Interactions Representative | 0.8.8 | Url | We need to quantify the digital SSL array! | | | | http://heather.name | | | +| Senior Operations Assistant | 2.4.2 | Expression | | If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth! | | Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva | https://hector.info | | | +| Internal Factors Facilitator | 2.6.3 | Url | | Try to copy the PNG sensor, maybe it will copy the 1080p sensor! | | Mable Kris,Mable Kris,Mable Kris,Mable Kris,Mable Kris | http://melba.name | | | +| Chief Program Director | 8.8.8 | Overwrite | If we parse the protocol, we can get to the IB protocol through the wireless IB protocol! | | Use the primary SCSI matrix, then you can program the primary matrix! | | | | | +| Customer Markets Assistant | 5.9.9 | Ignored | The JSON hard drive is down, copy the digital hard drive so we can copy the JSON hard drive! | | | Cecilia Runolfsdottir,Cecilia Runolfsdottir,Cecilia Runolfsdottir,Cecilia Runolfsdottir,Cecilia Runolfsdottir,Cecilia Runolfsdottir,Cecilia Runolfsdottir | http://cullen.net | | | +| Chief Paradigm Supervisor | 4.3.3 | Url | | | We need to bypass the wireless XML pixel! | Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins | https://zion.info | | | +| Investor Interactions Designer | 1.9.4 | Url | | | parsing the card won't do anything, we need to synthesize the online SQL card! | Stella Barton,Stella Barton | https://octavia.name | | | +| Dynamic Configuration Assistant | 3.2.1 | Expression | | 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 | | | | +| Internal Solutions Director | 8.4.4 | Unknown | | | | | | | | +| Lead Optimization Analyst | 2.1.7 | Expression | Use the wireless XSS bandwidth, then you can program the wireless bandwidth! | The SDD hard drive is down, copy the virtual hard drive so we can copy the SDD hard drive! | | Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson | https://madge.info | | | +| Internal Operations Producer | 5.8.9 | Overwrite | | Use the online SMTP pixel, then you can index the online pixel! | | | | | | +| Legacy Interactions Officer | 8.8.5 | Overwrite | | | Try to program the RAM bandwidth, maybe it will program the optical bandwidth! | | | | | +| Chief Functionality Planner | 5.1.2 | Unknown | | I'll calculate the 1080p HDD system, that should system the HDD system! | | Matt Mills,Matt Mills | http://myrtice.com | | | +| International Paradigm Analyst | 7.0.8 | Ignored | Try to compress the USB hard drive, maybe it will compress the neural hard drive! | We need to parse the solid state TCP interface! | The COM circuit is down, override the primary circuit so we can override the COM circuit! | Wilbert Willms,Wilbert Willms,Wilbert Willms,Wilbert Willms,Wilbert Willms,Wilbert Willms,Wilbert Willms,Wilbert Willms,Wilbert Willms | https://noemie.biz | | | +| Global Configuration Consultant | 5.9.5 | Expression | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | bypassing the bus won't do anything, we need to calculate the virtual GB bus! | | Guadalupe Littel,Guadalupe Littel,Guadalupe Littel | | | | +| Chief Response Strategist | 8.0.4 | Url | | The RSS alarm is down, compress the mobile alarm so we can compress the RSS alarm! | Use the 1080p PNG application, then you can calculate the 1080p application! | Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann | | | | +| National Solutions Representative | 5.6.2 | Overwrite | | | You can't synthesize the bandwidth without programming the solid state XSS bandwidth! | | | | | +| National Factors Administrator | 8.1.4 | Unknown | | | | | http://janelle.name | | | +| Direct Applications Assistant | 3.5.8 | Unknown | The PCI pixel is down, synthesize the multi-byte pixel so we can synthesize the PCI pixel! | If we back up the driver, we can get to the TCP driver through the redundant TCP driver! | We need to back up the 1080p COM interface! | | http://consuelo.info | | | +| District Creative Designer | 1.4.6 | Url | We need to program the haptic IB panel! | | | | http://cameron.info | | | +| Senior Brand Officer | 9.3.6 | Url | If we override the system, we can get to the HDD system through the haptic HDD system! | If we parse the bus, we can get to the XML bus through the solid state XML bus! | | | http://carol.name | | | +| Legacy Communications Engineer | 7.8.1 | Expression | | I'll synthesize the haptic THX hard drive, that should hard drive the THX hard drive! | The ADP hard drive is down, input the back-end hard drive so we can input the ADP hard drive! | Hilda Kub,Hilda Kub,Hilda Kub,Hilda Kub,Hilda Kub | | | | +| Dynamic Paradigm Officer | 2.3.4 | Overwrite | | | | | https://charity.biz | | | +| National Infrastructure Architect | 6.6.7 | Unknown | | If we bypass the hard drive, we can get to the EXE hard drive through the bluetooth EXE hard drive! | | Howard Rath,Howard Rath,Howard Rath,Howard Rath | http://darlene.net | | | +| Dynamic Factors Producer | 5.7.1 | Url | | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | | | | | +| Corporate Optimization Agent | 2.7.0 | Ignored | | | | | http://bryce.com | | | +| Dynamic Tactics Facilitator | 0.7.3 | Unknown | | | The SSL port is down, bypass the haptic port so we can bypass the SSL port! | | | | | +| Legacy Intranet Planner | 8.3.2 | Expression | Use the bluetooth AI bandwidth, then you can transmit the bluetooth bandwidth! | | | | http://nathanael.name | | | +| District Optimization Coordinator | 0.3.2 | Ignored | | If we back up the hard drive, we can get to the SCSI hard drive through the neural SCSI hard drive! | | David Ullrich,David Ullrich,David Ullrich,David Ullrich,David Ullrich,David Ullrich,David Ullrich | | | | +| Future Accounts Designer | 5.1.9 | Expression | We need to navigate the wireless SAS pixel! | | | | | | | +| Legacy Marketing Designer | 4.5.9 | Expression | | You can't bypass the microchip without parsing the back-end JBOD microchip! | You can't bypass the alarm without generating the back-end HTTP alarm! | | http://lexi.net | | | +| Human Program Orchestrator | 5.2.4 | Url | Use the cross-platform EXE microchip, then you can quantify the cross-platform microchip! | | bypassing the bandwidth won't do anything, we need to copy the mobile JBOD bandwidth! | | | | | +| Global Usability Manager | 9.1.0 | Overwrite | | Try to back up the THX interface, maybe it will back up the auxiliary interface! | | | http://vella.com | | | +| Central Marketing Orchestrator | 3.3.1 | Ignored | | Try to parse the IB driver, maybe it will parse the 1080p driver! | We need to connect the bluetooth RSS application! | Kelly Herman,Kelly Herman,Kelly Herman,Kelly Herman,Kelly Herman,Kelly Herman,Kelly Herman,Kelly Herman,Kelly Herman | https://brice.net | | | +| Investor Applications Executive | 9.9.5 | Ignored | The AI application is down, connect the open-source application so we can connect the AI application! | | Use the redundant TCP circuit, then you can calculate the redundant circuit! | | https://xander.com | | | +| Global Solutions Administrator | 5.2.4 | Overwrite | We need to calculate the online SAS bandwidth! | If we index the bus, we can get to the CSS bus through the optical CSS bus! | | Nellie Oberbrunner | https://hailee.biz | | | +| Central Factors Supervisor | 0.8.3 | Overwrite | If we transmit the monitor, we can get to the HTTP monitor through the digital HTTP monitor! | Use the optical IB transmitter, then you can navigate the optical transmitter! | If we back up the firewall, we can get to the TCP firewall through the multi-byte TCP firewall! | Kathleen Blick,Kathleen Blick,Kathleen Blick,Kathleen Blick,Kathleen Blick | http://clement.name | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | | | +| Corporate Division Executive | 4.7.8 | Url | I'll index the neural SDD bus, that should bus the SDD bus! | If we reboot the program, we can get to the SSL program through the primary SSL program! | | Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros | http://wilmer.com | | | +| Human Group Agent | 3.2.2 | Url | | | generating the interface won't do anything, we need to hack the optical PCI interface! | Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser | https://vilma.com | | | +| Human Program Technician | 2.8.4 | Overwrite | | | | Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill | http://tomasa.info | | | +| Regional Factors Designer | 7.4.1 | Url | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | Use the haptic RSS port, then you can transmit the haptic port! | Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus | | | | +| Lead Identity Developer | 7.1.0 | Url | | compressing the bandwidth won't do anything, we need to bypass the primary RAM bandwidth! | | | https://eve.com | | | +| Regional Configuration Engineer | 7.3.8 | Expression | Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter! | You can't reboot the matrix without navigating the optical SDD matrix! | | | http://roman.org | | | +| Senior Quality Executive | 4.4.8 | Url | I'll quantify the solid state THX feed, that should feed the THX feed! | Use the online RAM array, then you can index the online array! | You can't reboot the transmitter without transmitting the online ADP transmitter! | | http://khalid.com | | | +| Forward Tactics Planner | 5.4.6 | Url | I'll input the primary GB port, that should port the GB port! | | 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 | https://caterina.info | | | +| Investor Optimization Executive | 1.6.1 | Ignored | | | Use the auxiliary AGP matrix, then you can generate the auxiliary matrix! | Willard Abshire | http://adalberto.info | | | +| Product Tactics Engineer | 5.6.9 | Overwrite | Use the online TCP driver, then you can navigate the online driver! | I'll transmit the open-source HTTP pixel, that should pixel the HTTP pixel! | transmitting the program won't do anything, we need to generate the multi-byte SAS program! | Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich | | | | +| ------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ------- | -------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f1effbc7aa1da213.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f1effbc7aa1da213.verified.txt new file mode 100644 index 00000000..c49cabb6 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f1effbc7aa1da213.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f1fea66b709e0b39.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f1fea66b709e0b39.verified.txt new file mode 100644 index 00000000..ed8bf291 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f1fea66b709e0b39.verified.txt @@ -0,0 +1,18 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | +| Global Implementation Strategist | 5.9.8 | Ignored | | | Colleen Schroeder,Colleen Schroeder | https://enos.info | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Internal Program Designer | 7.2.5 | Ignored | We need to hack the auxiliary COM hard drive! | | | | | | +| Principal Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | | | | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | | | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f22802f64a7a93e8.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f22802f64a7a93e8.verified.txt new file mode 100644 index 00000000..2d571232 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f22802f64a7a93e8.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f2921e774bf62325.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f2921e774bf62325.verified.txt new file mode 100644 index 00000000..7f86595e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f2921e774bf62325.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Future Integration Analyst | 9.0.4 | Expression | | | Abner | http://tavares.info | +| | | | | | Johann | http://andres.net | +| | | | | | Jaquan | http://carey.org | +| | | | | | Arvel | http://mortimer.org | +| | | | | | Alicia | http://paula.com | +| | | | | | Heidi | http://letha.name | +| | | | | | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Paige | https://remington.info | +| | | | | | Aletha | https://isobel.info | +| | | | | | Pearline | https://johnathon.info | +| | | | | | Eleanora | http://jaeden.info | +| | | | | | Nikolas | https://daphney.net | +| | | | | | Oceane | http://clifton.com | +| | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | http://marina.com | Myles | http://nikko.name | +| | | | | | Rolando | http://nikko.name | +| | | | | | Pamela | https://aliza.net | +| | | | | | Marcella | http://helga.net | +| | | | | | Alisha | http://alyson.name | +| | | | | | Carmelo | http://michele.name | +| | | | | | Miles | https://freddie.com | +| | | | | | Kade | https://jaunita.biz | +| | | | | | Marcelina | http://donna.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f29b9888967b232b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f29b9888967b232b.verified.txt new file mode 100644 index 00000000..a4cd9bcc --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f29b9888967b232b.verified.txt @@ -0,0 +1,44 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Dynamic Integration Assistant | 2.1.6 | Unknown | | | https://gerson.info | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| District Mobility Administrator | 3.2.3 | Unknown | | Christopher Dietrich,Christopher Dietrich,Christopher Dietrich,Christopher Dietrich | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f2c3de5bbca4d7eb.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f2c3de5bbca4d7eb.verified.txt new file mode 100644 index 00000000..b134a93c --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f2c3de5bbca4d7eb.verified.txt @@ -0,0 +1,131 @@ +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Global Usability Representative | 3.5.9 | Url | | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| National Accounts Liaison | 7.2.6 | Overwrite | | | Cedrick | https://zachariah.net | +| | | | | | Marcelle | https://adah.org | +| | | | | | Barney | http://erica.org | +| Global Response Associate | 1.9.8 | Overwrite | The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth! | | Sandra | http://antonina.com | +| | | | | | Willow | https://jason.org | +| | | | | | Orland | http://rigoberto.com | +| | | | | | Laney | http://eryn.org | +| | | | | | Amari | http://viviane.net | +| | | | | | Kelley | http://doris.net | +| | | | | | Kennedy | https://milo.net | +| Legacy Creative Liaison | 0.4.6 | Overwrite | | | Mervin | http://celestine.info | +| | | | | | Amalia | https://shanelle.info | +| | | | | | Sheila | http://darrell.info | +| | | | | | Alec | https://candice.biz | +| | | | | | Linnea | http://everardo.info | +| | | | | | Daryl | https://jerrod.com | +| | | | | | Laila | http://caleigh.net | +| | | | | | Adolfo | http://daisha.biz | +| Forward Quality Producer | 6.3.7 | Overwrite | The CSS microchip is down, back up the bluetooth microchip so we can back up the CSS microchip! | https://jayne.name | | | +| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| | | | | | Jody | http://jakob.org | +| | | | | | Anjali | https://valentin.info | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Regional Security Architect | 2.2.5 | Url | | | | | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| | | | | | Ursula | https://werner.net | +| | | | | | Linwood | http://rebekah.org | +| | | | | | Cleve | https://claudie.net | +| | | | | | Theodora | http://faye.info | +| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| | | | | | Braeden | https://sunny.name | +| | | | | | Leslie | http://bettie.info | +| | | | | | Edmund | http://sadie.info | +| | | | | | Horacio | https://loraine.name | +| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| | | | | | Earnestine | http://nathanial.biz | +| | | | | | Connor | https://augustus.net | +| | | | | | Araceli | http://hailey.biz | +| | | | | | Janessa | https://craig.com | +| | | | | | Erica | http://kristin.org | +| | | | | | Alek | http://shany.biz | +| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| | | | | | Monserrat | http://katrine.name | +| | | | | | Abel | https://geovany.com | +| | | | | | Diana | http://eula.name | +| | | | | | Raphael | https://zackery.info | +| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| | | | | | Clemmie | http://shanny.net | +| | | | | | Hildegard | http://conner.name | +| | | | | | Isabella | https://kennith.com | +| | | | | | Johanna | https://ara.org | +| | | | | | Demarco | https://rae.biz | +| | | | | | Viviane | http://christine.info | +| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| | | | | | Tyson | https://bonita.org | +| | | | | | Jazlyn | http://madonna.net | +| | | | | | Deangelo | https://jess.info | +| | | | | | Alvah | https://hans.net | +| | | | | | Payton | http://shanna.name | +| | | | | | Providenci | https://tyra.org | +| | | | | | Flo | http://isidro.net | +| | | | | | Dawn | https://anika.org | +| | | | | | Silas | http://zane.name | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| | | | | | Clarissa | https://audreanne.name | +| | | | | | Vida | https://theresia.biz | +| | | | | | Ransom | http://isom.com | +| | | | | | Anastasia | http://kamryn.info | +| | | | | | Marlene | https://cyril.name | +| | | | | | Zetta | http://pete.org | +| | | | | | Candida | https://craig.biz | +| | | | | | Timmothy | https://joanny.biz | +| | | | | | Alfonzo | http://dorothea.org | +| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| | | | | | Caleigh | https://albin.info | +| | | | | | Flavie | http://lavonne.biz | +| | | | | | Kaitlyn | http://osborne.org | +| | | | | | Joesph | https://michael.name | +| | | | | | Kali | http://shyanne.net | +| | | | | | Austin | https://marty.net | +| | | | | | Theresia | http://kristin.net | +| | | | | | Lester | https://paige.com | +| Direct Accounts Associate | 3.2.6 | Overwrite | | https://vesta.com | Buck | http://taryn.com | +| | | | | | Hilton | http://isabel.com | +| | | | | | Rogers | https://bertrand.biz | +| | | | | | Annetta | https://remington.org | +| | | | | | Efrain | http://davion.org | +| | | | | | Merle | https://abigayle.org | +| | | | | | Jerod | https://vicenta.info | +| | | | | | Kayli | https://shaun.net | +| | | | | | Antwan | https://hazel.net | +| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| | | | | | Princess | http://haylie.biz | +| | | | | | Jordane | https://gregorio.com | +| | | | | | Opal | http://abbie.org | +| | | | | | Pablo | https://maxime.biz | +| | | | | | Shaun | https://concepcion.net | +| | | | | | Moises | http://rupert.info | +| Dynamic Marketing Consultant | 2.4.9 | Overwrite | | | Angie | https://ardella.info | +| | | | | | Melissa | https://sandra.biz | +| | | | | | Pearline | https://noble.net | +| | | | | | Dusty | https://verlie.com | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f2f188b2fe1ff272.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f2f188b2fe1ff272.verified.txt new file mode 100644 index 00000000..f1e278f3 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f2f188b2fe1ff272.verified.txt @@ -0,0 +1,145 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| Internal Solutions Planner | 1.3.8 | Ignored | | The COM application is down, quantify the auxiliary application so we can quantify the COM application! | | Nyah | http://oliver.com | +| | | | | | | Ettie | http://lonny.net | +| | | | | | | Onie | https://cassie.biz | +| | | | | | | Solon | https://buck.biz | +| | | | | | | Taryn | http://hilton.com | +| | | | | | | Isabel | http://rogers.net | +| | | | | | | Bertrand | http://annetta.org | +| | | | | | | Remington | https://efrain.info | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 Brand Associate | 7.6.8 | Ignored | | | https://lauriane.com | Devin | https://ramona.info | +| | | | | | | Alice | http://laverne.info | +| | | | | | | Layne | https://brooks.name | +| | | | | | | Kaitlyn | http://serenity.biz | +| National Creative Engineer | 4.0.0 | Ignored | You can't parse the alarm without overriding the haptic SMTP alarm! | | | Candida | https://craig.biz | +| | | | | | | Timmothy | https://joanny.biz | +| | | | | | | Alfonzo | http://dorothea.org | +| | | | | | | 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 | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Legacy Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Regional Mobility Manager | 2.7.0 | Ignored | | | http://gianni.info | Alvina | http://elouise.name | +| | | | | | | Ron | http://brown.org | +| | | | | | | Cordia | http://ericka.name | +| | | | | | | Eugene | http://rashad.info | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | +| Forward Directives Supervisor | 8.7.6 | Ignored | | The SSL microchip is down, hack the optical microchip so we can hack the SSL microchip! | http://shaun.org | Jadon | https://amelia.biz | +| | | | | | | Toni | http://angie.name | +| | | | | | | Ardella | http://melissa.net | +| | | | | | | Sandra | http://pearline.org | +| | | | | | | Noble | https://dusty.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f3312266c737388c.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f3312266c737388c.verified.txt new file mode 100644 index 00000000..a5777697 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f3312266c737388c.verified.txt @@ -0,0 +1,12 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Paige | https://remington.info | +| | | | | Aletha | https://isobel.info | +| | | | | Pearline | https://johnathon.info | +| | | | | Eleanora | http://jaeden.info | +| | | | | Nikolas | https://daphney.net | +| | | | | Oceane | http://clifton.com | +| | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f346c9ef60b161c9.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f346c9ef60b161c9.verified.txt new file mode 100644 index 00000000..f5a29520 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f346c9ef60b161c9.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f35a0b605069ade0.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f35a0b605069ade0.verified.txt new file mode 100644 index 00000000..7f86595e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f35a0b605069ade0.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Future Integration Analyst | 9.0.4 | Expression | | | Abner | http://tavares.info | +| | | | | | Johann | http://andres.net | +| | | | | | Jaquan | http://carey.org | +| | | | | | Arvel | http://mortimer.org | +| | | | | | Alicia | http://paula.com | +| | | | | | Heidi | http://letha.name | +| | | | | | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Paige | https://remington.info | +| | | | | | Aletha | https://isobel.info | +| | | | | | Pearline | https://johnathon.info | +| | | | | | Eleanora | http://jaeden.info | +| | | | | | Nikolas | https://daphney.net | +| | | | | | Oceane | http://clifton.com | +| | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | http://marina.com | Myles | http://nikko.name | +| | | | | | Rolando | http://nikko.name | +| | | | | | Pamela | https://aliza.net | +| | | | | | Marcella | http://helga.net | +| | | | | | Alisha | http://alyson.name | +| | | | | | Carmelo | http://michele.name | +| | | | | | Miles | https://freddie.com | +| | | | | | Kade | https://jaunita.biz | +| | | | | | Marcelina | http://donna.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f37853a3497c9f1b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f37853a3497c9f1b.verified.txt new file mode 100644 index 00000000..aaa0c45a --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f37853a3497c9f1b.verified.txt @@ -0,0 +1,208 @@ +| --------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| --------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | +| Internal Infrastructure Strategist | 7.2.2 | Overwrite | I'll transmit the optical XML sensor, that should sensor the XML sensor! | http://ahmad.com | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Internal Branding Supervisor | 6.7.4 | Url | I'll copy the auxiliary PCI panel, that should panel the PCI panel! | | | | +| District Factors Producer | 1.6.6 | Unknown | If we reboot the panel, we can get to the THX panel through the solid state THX panel! | | | | +| Regional Markets Supervisor | 7.7.6 | Expression | If we transmit the system, we can get to the SMTP system through the virtual SMTP system! | | | | +| Global Usability Producer | 4.9.5 | Expression | If we hack the application, we can get to the PCI application through the 1080p PCI application! | | | | +| Human Configuration Assistant | 0.1.1 | Unknown | I'll bypass the solid state SMS system, that should system the SMS system! | http://frederick.com | | | +| Product Implementation Officer | 1.9.9 | Unknown | Try to back up the AGP system, maybe it will back up the 1080p system! | | | | +| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| | | | | | Monserrat | http://katrine.name | +| | | | | | Abel | https://geovany.com | +| | | | | | Diana | http://eula.name | +| | | | | | Raphael | https://zackery.info | +| Principal Markets Designer | 3.8.8 | Url | overriding the transmitter won't do anything, we need to generate the cross-platform SCSI transmitter! | | | | +| Forward Quality Producer | 6.3.7 | Overwrite | The CSS microchip is down, back up the bluetooth microchip so we can back up the CSS microchip! | https://jayne.name | | | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Human Implementation Designer | 8.3.7 | Unknown | Try to navigate the RSS card, maybe it will navigate the haptic card! | | | | +| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| | | | | | Tyson | https://bonita.org | +| | | | | | Jazlyn | http://madonna.net | +| | | | | | Deangelo | https://jess.info | +| | | | | | Alvah | https://hans.net | +| | | | | | Payton | http://shanna.name | +| | | | | | Providenci | https://tyra.org | +| | | | | | Flo | http://isidro.net | +| | | | | | Dawn | https://anika.org | +| | | | | | Silas | http://zane.name | +| National Creative Executive | 7.5.7 | Unknown | | http://mallory.biz | | | +| Dynamic Configuration Specialist | 8.8.8 | Overwrite | Use the 1080p XML circuit, then you can generate the 1080p circuit! | http://brown.com | | | +| Chief Mobility Planner | 7.1.0 | Overwrite | | | | | +| Principal Implementation Director | 7.1.6 | Unknown | We need to transmit the auxiliary FTP transmitter! | http://pearlie.org | | | +| Product Identity Architect | 5.6.4 | Url | The GB bus is down, back up the redundant bus so we can back up the GB bus! | http://darian.org | | | +| Customer Implementation Director | 5.9.1 | Unknown | | | | | +| Customer Quality Technician | 9.7.0 | Unknown | If we index the card, we can get to the XSS card through the neural XSS card! | | | | +| Dynamic Functionality Consultant | 4.9.1 | Unknown | | https://lonnie.info | | | +| Chief Assurance Associate | 3.3.1 | Url | overriding the panel won't do anything, we need to parse the open-source IB panel! | https://tyrese.info | | | +| Customer Integration Agent | 3.6.0 | Expression | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | | | | +| Corporate Paradigm Representative | 7.0.2 | Overwrite | You can't quantify the capacitor without hacking the neural SMS capacitor! | | | | +| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| | | | | | Jody | http://jakob.org | +| | | | | | Anjali | https://valentin.info | +| Product Quality Analyst | 3.6.5 | Overwrite | You can't parse the port without bypassing the multi-byte GB port! | https://delbert.com | | | +| Dynamic Marketing Consultant | 2.4.9 | Overwrite | | | Angie | https://ardella.info | +| | | | | | Melissa | https://sandra.biz | +| | | | | | Pearline | https://noble.net | +| | | | | | Dusty | https://verlie.com | +| Chief Accounts Associate | 8.5.5 | Unknown | You can't generate the panel without compressing the neural SAS panel! | | | | +| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| | | | | | Ursula | https://werner.net | +| | | | | | Linwood | http://rebekah.org | +| | | | | | Cleve | https://claudie.net | +| | | | | | Theodora | http://faye.info | +| International Identity Planner | 4.2.1 | Expression | You can't compress the capacitor without copying the virtual USB capacitor! | | | | +| Global Security Liaison | 8.1.2 | Expression | | | | | +| Corporate Accountability Representative | 2.3.2 | Unknown | | | | | +| Internal Division Agent | 2.4.2 | Unknown | | | | | +| National Accounts Associate | 2.7.6 | Overwrite | | | | | +| Customer Operations Officer | 2.6.0 | Overwrite | Use the bluetooth USB alarm, then you can override the bluetooth alarm! | http://antonette.org | | | +| Central Marketing Director | 3.2.5 | Overwrite | | https://anibal.net | | | +| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| | | | | | Caleigh | https://albin.info | +| | | | | | Flavie | http://lavonne.biz | +| | | | | | Kaitlyn | http://osborne.org | +| | | | | | Joesph | https://michael.name | +| | | | | | Kali | http://shyanne.net | +| | | | | | Austin | https://marty.net | +| | | | | | Theresia | http://kristin.net | +| | | | | | Lester | https://paige.com | +| Customer Security Representative | 3.7.3 | Expression | The GB circuit is down, hack the redundant circuit so we can hack the GB circuit! | https://jalon.net | | | +| Chief Division Director | 3.4.7 | Unknown | Try to override the CSS microchip, maybe it will override the primary microchip! | http://alejandrin.biz | | | +| International Research Director | 4.1.0 | Url | Try to synthesize the SDD hard drive, maybe it will synthesize the bluetooth hard drive! | | | | +| Dynamic Security Technician | 6.8.3 | Unknown | | | | | +| Legacy Data Facilitator | 0.9.0 | Overwrite | bypassing the program won't do anything, we need to bypass the optical AI program! | https://beatrice.net | | | +| Principal Intranet Liaison | 5.1.0 | Overwrite | I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor! | http://neva.info | | | +| Central Marketing Technician | 8.7.2 | Overwrite | Use the cross-platform GB capacitor, then you can parse the cross-platform capacitor! | http://albina.org | | | +| Chief Marketing Assistant | 7.3.5 | Expression | | | | | +| Principal Optimization Representative | 0.4.8 | Overwrite | If we index the system, we can get to the XSS system through the cross-platform XSS system! | | | | +| Global Usability Representative | 3.5.9 | Url | | | | | +| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| | | | | | Braeden | https://sunny.name | +| | | | | | Leslie | http://bettie.info | +| | | | | | Edmund | http://sadie.info | +| | | | | | Horacio | https://loraine.name | +| Global Response Associate | 1.9.8 | Overwrite | The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth! | | Sandra | http://antonina.com | +| | | | | | Willow | https://jason.org | +| | | | | | Orland | http://rigoberto.com | +| | | | | | Laney | http://eryn.org | +| | | | | | Amari | http://viviane.net | +| | | | | | Kelley | http://doris.net | +| | | | | | Kennedy | https://milo.net | +| Corporate Creative Liaison | 2.9.9 | Overwrite | | http://albert.org | | | +| Chief Infrastructure Consultant | 4.1.2 | Url | Use the multi-byte IB feed, then you can navigate the multi-byte feed! | https://theron.info | | | +| Lead Tactics Executive | 6.2.9 | Unknown | | https://lowell.org | | | +| National Accounts Liaison | 7.2.6 | Overwrite | | | Cedrick | https://zachariah.net | +| | | | | | Marcelle | https://adah.org | +| | | | | | Barney | http://erica.org | +| Internal Accounts Consultant | 6.3.4 | Expression | Try to connect the SMS feed, maybe it will connect the mobile feed! | https://elda.info | | | +| Lead Integration Liaison | 1.8.8 | Url | | https://sean.com | | | +| Human Directives Engineer | 5.3.9 | Url | | | | | +| Customer Configuration Manager | 1.6.8 | Unknown | I'll program the online RSS card, that should card the RSS card! | http://sylvan.net | | | +| Central Markets Officer | 6.8.8 | Expression | | | | | +| Human Creative Engineer | 7.5.1 | Unknown | | | | | +| Human Solutions Assistant | 1.9.8 | Expression | Try to parse the PNG panel, maybe it will parse the haptic panel! | http://carter.info | | | +| Direct Accounts Associate | 3.2.6 | Overwrite | | https://vesta.com | Buck | http://taryn.com | +| | | | | | Hilton | http://isabel.com | +| | | | | | Rogers | https://bertrand.biz | +| | | | | | Annetta | https://remington.org | +| | | | | | Efrain | http://davion.org | +| | | | | | Merle | https://abigayle.org | +| | | | | | Jerod | https://vicenta.info | +| | | | | | Kayli | https://shaun.net | +| | | | | | Antwan | https://hazel.net | +| Investor Accountability Officer | 2.4.3 | Overwrite | | | | | +| Human Usability Associate | 5.2.5 | Expression | You can't override the capacitor without overriding the mobile XML capacitor! | http://hunter.info | | | +| Regional Security Architect | 2.2.5 | Url | | | | | +| National Communications Facilitator | 3.1.0 | Url | quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter! | | | | +| Dynamic Interactions Facilitator | 6.8.2 | Expression | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | +| National Communications Orchestrator | 4.5.1 | Unknown | The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit! | | | | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| National Tactics Engineer | 3.7.5 | Url | generating the matrix won't do anything, we need to override the redundant GB matrix! | https://alexys.org | | | +| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| | | | | | Clarissa | https://audreanne.name | +| | | | | | Vida | https://theresia.biz | +| | | | | | Ransom | http://isom.com | +| | | | | | Anastasia | http://kamryn.info | +| | | | | | Marlene | https://cyril.name | +| | | | | | Zetta | http://pete.org | +| | | | | | Candida | https://craig.biz | +| | | | | | Timmothy | https://joanny.biz | +| | | | | | Alfonzo | http://dorothea.org | +| Future Markets Architect | 9.0.8 | Overwrite | | | | | +| Dynamic Brand Technician | 2.5.6 | Expression | | http://lesly.info | | | +| Forward Functionality Analyst | 4.5.1 | Expression | | http://orie.name | | | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | +| Direct Assurance Supervisor | 4.1.8 | Overwrite | | https://aniyah.org | | | +| Corporate Data Strategist | 9.0.0 | Url | | http://eli.net | | | +| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| | | | | | Princess | http://haylie.biz | +| | | | | | Jordane | https://gregorio.com | +| | | | | | Opal | http://abbie.org | +| | | | | | Pablo | https://maxime.biz | +| | | | | | Shaun | https://concepcion.net | +| | | | | | Moises | http://rupert.info | +| Central Interactions Manager | 7.0.9 | Expression | | | | | +| Principal Web Facilitator | 5.4.5 | Overwrite | compressing the firewall won't do anything, we need to copy the bluetooth COM firewall! | http://paris.name | | | +| Dynamic Functionality Agent | 5.9.5 | Unknown | | http://annabelle.net | | | +| District Branding Analyst | 1.9.5 | Url | | https://paula.net | | | +| Future Accounts Producer | 9.4.3 | Unknown | You can't override the port without indexing the neural THX port! | | | | +| Product Applications Assistant | 2.8.4 | Overwrite | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | https://carleton.info | | | +| Dynamic Configuration Executive | 4.7.6 | Unknown | If we parse the transmitter, we can get to the ADP transmitter through the online ADP transmitter! | | | | +| Chief Implementation Assistant | 6.1.2 | Unknown | | http://cathryn.biz | | | +| District Web Developer | 6.1.9 | Unknown | | http://arthur.net | | | +| Dynamic Communications Supervisor | 2.6.8 | Overwrite | | https://carol.biz | | | +| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| | | | | | Earnestine | http://nathanial.biz | +| | | | | | Connor | https://augustus.net | +| | | | | | Araceli | http://hailey.biz | +| | | | | | Janessa | https://craig.com | +| | | | | | Erica | http://kristin.org | +| | | | | | Alek | http://shany.biz | +| National Solutions Associate | 9.1.2 | Expression | | | | | +| National Tactics Architect | 6.7.8 | Url | We need to parse the auxiliary SAS capacitor! | https://margaret.net | | | +| Internal Factors Facilitator | 2.6.3 | Overwrite | | http://melba.name | | | +| Customer Directives Director | 7.9.2 | Overwrite | Try to hack the COM panel, maybe it will hack the auxiliary panel! | | | | +| Global Markets Executive | 2.5.8 | Expression | | | | | +| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| | | | | | Clemmie | http://shanny.net | +| | | | | | Hildegard | http://conner.name | +| | | | | | Isabella | https://kennith.com | +| | | | | | Johanna | https://ara.org | +| | | | | | Demarco | https://rae.biz | +| | | | | | Viviane | http://christine.info | +| National Identity Technician | 7.4.9 | Overwrite | Try to parse the SMTP feed, maybe it will parse the multi-byte feed! | https://benedict.org | | | +| Legacy Creative Liaison | 0.4.6 | Overwrite | | | Mervin | http://celestine.info | +| | | | | | Amalia | https://shanelle.info | +| | | | | | Sheila | http://darrell.info | +| | | | | | Alec | https://candice.biz | +| | | | | | Linnea | http://everardo.info | +| | | | | | Daryl | https://jerrod.com | +| | | | | | Laila | http://caleigh.net | +| | | | | | Adolfo | http://daisha.biz | +| Global Response Coordinator | 9.7.3 | Overwrite | Use the solid state SQL firewall, then you can connect the solid state firewall! | https://zelda.net | | | +| Central Integration Analyst | 0.4.0 | Overwrite | If we synthesize the protocol, we can get to the JBOD protocol through the multi-byte JBOD protocol! | https://laverne.name | | | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| --------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | --------------------- | ----------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f3ed6ef7b9bdc8f4.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f3ed6ef7b9bdc8f4.verified.txt new file mode 100644 index 00000000..e196240c --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f3ed6ef7b9bdc8f4.verified.txt @@ -0,0 +1,33 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Dynamic Integration Assistant | 2.1.6 | Unknown | | | https://gerson.info | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| District Mobility Administrator | 3.2.3 | Unknown | | Christopher Dietrich,Christopher Dietrich,Christopher Dietrich,Christopher Dietrich | | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f444979c7134b9a3.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f444979c7134b9a3.verified.txt new file mode 100644 index 00000000..7e7932d1 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f444979c7134b9a3.verified.txt @@ -0,0 +1,35 @@ +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| | | | | | Shaina | http://dean.name | +| | | | | | Juana | http://aniya.biz | +| | | | | | Fernando | http://shanna.com | +| | | | | | Katelyn | https://judd.com | +| | | | | | Earl | https://bradford.biz | +| Senior Brand Developer | 4.4.1 | Ignored | If we override the system, we can get to the CSS system through the neural CSS system! | http://adelbert.net | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| | | | | | Libby | http://wade.biz | +| | | | | | Leola | https://pietro.info | +| | | | | | Arch | http://hazle.org | +| | | | | | Eldred | http://gabriel.net | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| ------------------------------ | ------- | -------------------------- | -------------------------------------------------------------------------------------- | --------------------- | ----------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f45aca6afe908089.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f45aca6afe908089.verified.txt new file mode 100644 index 00000000..b25c30b8 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f45aca6afe908089.verified.txt @@ -0,0 +1,227 @@ +| ------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | +| Customer Branding Engineer | 7.9.7 | Ignored | Try to input the TCP sensor, maybe it will input the haptic sensor! | If we navigate the microchip, we can get to the SMS microchip through the redundant SMS microchip! | compressing the system won't do anything, we need to synthesize the redundant ADP system! | Randall Haley,Randall Haley,Randall Haley,Randall Haley,Randall Haley,Randall Haley,Randall Haley,Randall Haley,Randall Haley,Randall Haley | | | | +| 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| International Marketing Officer | 2.2.1 | Overwrite | If we connect the driver, we can get to the XSS driver through the online XSS driver! | | | | https://weldon.info | | | +| Internal Program Engineer | 2.9.3 | Expression | I'll input the neural SQL application, that should application the SQL application! | You can't generate the hard drive without transmitting the haptic RAM hard drive! | I'll bypass the optical AGP feed, that should feed the AGP feed! | | http://cleta.org | | | +| Dynamic Configuration Specialist | 3.6.8 | Overwrite | | Use the haptic AGP protocol, then you can program the haptic protocol! | | Meredith Sawayn,Meredith Sawayn,Meredith Sawayn,Meredith Sawayn,Meredith Sawayn,Meredith Sawayn | | | | +| Corporate Intranet Agent | 9.1.8 | Url | We need to compress the 1080p GB circuit! | | The PCI driver is down, reboot the haptic driver so we can reboot the PCI driver! | Essie Hamill,Essie Hamill | http://precious.name | | | +| Central Factors Supervisor | 0.8.3 | Overwrite | If we transmit the monitor, we can get to the HTTP monitor through the digital HTTP monitor! | Use the optical IB transmitter, then you can navigate the optical transmitter! | If we back up the firewall, we can get to the TCP firewall through the multi-byte TCP firewall! | Kathleen Blick,Kathleen Blick,Kathleen Blick,Kathleen Blick,Kathleen Blick | http://clement.name | | | +| District Optimization Coordinator | 0.3.2 | Ignored | | If we back up the hard drive, we can get to the SCSI hard drive through the neural SCSI hard drive! | | David Ullrich,David Ullrich,David Ullrich,David Ullrich,David Ullrich,David Ullrich,David Ullrich | | | | +| Global Optimization Engineer | 8.7.9 | Ignored | | quantifying the transmitter won't do anything, we need to synthesize the auxiliary FTP transmitter! | If we synthesize the port, we can get to the HTTP port through the auxiliary HTTP port! | | http://aniya.org | | | +| Forward Paradigm Developer | 7.9.7 | Overwrite | The GB interface is down, input the auxiliary interface so we can input the GB interface! | The XSS transmitter is down, back up the online transmitter so we can back up the XSS transmitter! | | Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter | http://maureen.name | | | +| International Research Architect | 3.7.4 | Ignored | | Try to quantify the USB application, maybe it will quantify the mobile application! | If we index the pixel, we can get to the AI pixel through the wireless AI pixel! | | | Madisen | http://raegan.biz | +| | | | | | | | | Cathy | http://giovanna.info | +| | | | | | | | | Ike | https://jerome.biz | +| Central Functionality Technician | 3.9.3 | Url | | | The AI microchip is down, override the multi-byte microchip so we can override the AI microchip! | | | | | +| Customer Group Agent | 0.9.9 | Ignored | | If we override the sensor, we can get to the COM sensor through the 1080p COM sensor! | I'll generate the auxiliary HTTP microchip, that should microchip the HTTP microchip! | | | | | +| Lead Configuration Liaison | 1.8.9 | Expression | | connecting the transmitter won't do anything, we need to program the cross-platform XSS transmitter! | | | http://esther.biz | | | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| National Creative Analyst | 6.3.1 | Expression | | The SSL feed is down, back up the cross-platform feed so we can back up the SSL feed! | | | | | | +| Global Mobility Facilitator | 8.5.9 | Url | | We need to parse the primary PCI protocol! | | Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch | https://itzel.info | Mitchel | http://carleton.name | +| | | | | | | | | Madalyn | http://narciso.net | +| | | | | | | | | Mia | http://nicklaus.net | +| | | | | | | | | Abelardo | http://carolina.name | +| Lead Program Engineer | 4.5.7 | Overwrite | | The PCI protocol is down, calculate the bluetooth protocol so we can calculate the PCI protocol! | | | | | | +| Internal Operations Producer | 5.8.9 | Overwrite | | Use the online SMTP pixel, then you can index the online pixel! | | | | | | +| Future Tactics Specialist | 0.2.2 | Overwrite | We need to override the primary SQL pixel! | We need to transmit the redundant EXE driver! | You can't calculate the hard drive without hacking the multi-byte FTP hard drive! | | | | | +| Human Program Technician | 2.8.4 | Overwrite | | | | Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill | http://tomasa.info | | | +| National Security Orchestrator | 3.5.6 | Expression | Try to copy the HDD array, maybe it will copy the back-end array! | 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! | Roderick Koelpin,Roderick Koelpin,Roderick Koelpin | | | | +| Forward Communications Director | 6.0.8 | Overwrite | Try to override the AI alarm, maybe it will override the online alarm! | We need to quantify the virtual TCP card! | | Kristin Bernhard,Kristin Bernhard | | | | +| Legacy Marketing Designer | 4.5.9 | Expression | | You can't bypass the microchip without parsing the back-end JBOD microchip! | You can't bypass the alarm without generating the back-end HTTP alarm! | | http://lexi.net | | | +| Corporate Division Executive | 4.7.8 | Url | I'll index the neural SDD bus, that should bus the SDD bus! | If we reboot the program, we can get to the SSL program through the primary SSL program! | | Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros | http://wilmer.com | | | +| Chief Paradigm Supervisor | 4.3.3 | Url | | | We need to bypass the wireless XML pixel! | Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins | https://zion.info | | | +| Corporate Intranet Facilitator | 2.8.8 | Ignored | If we program the feed, we can get to the CSS feed through the solid state CSS feed! | Use the redundant GB driver, then you can connect the redundant driver! | | Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser | http://isabella.name | | | +| Dynamic Factors Producer | 5.7.1 | Url | | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | | | | | +| Principal Web Associate | 4.2.5 | Expression | | | If we index the hard drive, we can get to the XSS hard drive through the primary XSS hard drive! | Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles | | | | +| Senior Quality Executive | 4.4.8 | Url | I'll quantify the solid state THX feed, that should feed the THX feed! | Use the online RAM array, then you can index the online array! | You can't reboot the transmitter without transmitting the online ADP transmitter! | | http://khalid.com | | | +| Investor Usability Officer | 2.5.2 | Unknown | Try to program the XML capacitor, maybe it will program the haptic capacitor! | Use the optical SSL alarm, then you can bypass the optical alarm! | | Johnny Bernier | http://orlo.name | | | +| District Creative Designer | 1.4.6 | Url | We need to program the haptic IB panel! | | | | http://cameron.info | | | +| National Accountability Producer | 6.9.7 | Unknown | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | https://linwood.biz | Travon | https://dedrick.name | +| | | | | | | | | Elissa | http://kaci.org | +| | | | | | | | | Brandi | https://aniyah.com | +| | | | | | | | | Tyson | https://bonita.org | +| | | | | | | | | Jazlyn | http://madonna.net | +| | | | | | | | | Deangelo | https://jess.info | +| | | | | | | | | Alvah | https://hans.net | +| Human Group Agent | 3.2.2 | Url | | | generating the interface won't do anything, we need to hack the optical PCI interface! | Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser | https://vilma.com | | | +| Chief Solutions Administrator | 0.4.1 | Unknown | | 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 | Shaun | https://antwan.org | +| | | | | | | | | Hazel | https://forrest.net | +| | | | | | | | | Brianne | https://dorothea.name | +| | | | | | | | | Don | http://torey.com | +| | | | | | | | | Cedrick | https://zachariah.net | +| | | | | | | | | Marcelle | https://adah.org | +| | | | | | | | | Barney | http://erica.org | +| | | | | | | | | Jordi | https://alysha.com | +| | | | | | | | | Kristina | https://pattie.info | +| | | | | | | | | Cory | http://kailey.com | +| Regional Brand Associate | 4.0.9 | Expression | | | I'll program the wireless HDD pixel, that should pixel the HDD pixel! | | | | | +| International Intranet Planner | 1.3.4 | Expression | 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 | Ahmad | https://lupe.com | +| | | | | | | | | Randi | https://jaiden.biz | +| | | | | | | | | Patience | https://marlene.name | +| | | | | | | | | Lenna | https://franco.name | +| | | | | | | | | Kyleigh | https://tevin.name | +| | | | | | | | | Sallie | https://jordane.name | +| | | | | | | | | Willy | https://daija.info | +| | | | | | | | | Jannie | https://retta.net | +| | | | | | | | | Lottie | http://yasmine.com | +| | | | | | | | | Delia | http://khalil.com | +| Regional Configuration Engineer | 7.3.8 | Expression | Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter! | You can't reboot the matrix without navigating the optical SDD matrix! | | | http://roman.org | | | +| Global Configuration Consultant | 5.9.5 | Expression | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | bypassing the bus won't do anything, we need to calculate the virtual GB bus! | | Guadalupe Littel,Guadalupe Littel,Guadalupe Littel | | | | +| Human Program Orchestrator | 5.2.4 | Url | Use the cross-platform EXE microchip, then you can quantify the cross-platform microchip! | | bypassing the bandwidth won't do anything, we need to copy the mobile JBOD bandwidth! | | | | | +| Senior Metrics Engineer | 8.3.4 | Overwrite | | Try to quantify the FTP bus, maybe it will quantify the optical bus! | | Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand | http://lou.net | | | +| Corporate Optimization Agent | 2.7.0 | Ignored | | | | | http://bryce.com | | | +| Investor Optimization Executive | 1.6.1 | Ignored | | | Use the auxiliary AGP matrix, then you can generate the auxiliary matrix! | Willard Abshire | http://adalberto.info | | | +| Central Tactics Director | 4.6.7 | Url | backing up the system won't do anything, we need to parse the neural CSS system! | We need to transmit the back-end RSS transmitter! | | Doyle Osinski,Doyle Osinski,Doyle Osinski,Doyle Osinski | https://valentina.net | | | +| Senior Operations Assistant | 2.4.2 | Expression | | If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth! | | Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva | https://hector.info | | | +| Investor Division Assistant | 9.6.2 | Url | | I'll parse the primary PCI matrix, that should matrix the PCI matrix! | | | | Nya | http://sunny.biz | +| | | | | | | | | Arlo | https://cordia.info | +| | | | | | | | | Linnie | https://marcos.name | +| | | | | | | | | Luella | http://frederic.name | +| | | | | | | | | Lucinda | https://dion.name | +| | | | | | | | | Jayson | https://ryleigh.net | +| | | | | | | | | Mervin | https://lorenza.net | +| International Optimization Supervisor | 9.5.8 | Ignored | | | | | https://roman.com | | | +| Forward Usability Developer | 6.9.1 | Overwrite | | | You can't connect the protocol without overriding the redundant RSS protocol! | | | | | +| Direct Group Liaison | 3.5.1 | Overwrite | We need to parse the haptic SMS monitor! | | We need to program the auxiliary JBOD circuit! | | | | | +| Global Usability Manager | 9.1.0 | Overwrite | | Try to back up the THX interface, maybe it will back up the auxiliary interface! | | | http://vella.com | | | +| Global Configuration Strategist | 1.4.4 | Ignored | | | | Vickie Sipes | https://marilyne.com | | | +| Forward Directives Representative | 0.5.1 | Url | | parsing the panel won't do anything, we need to calculate the digital SMTP panel! | | Theresa Heathcote,Theresa Heathcote,Theresa Heathcote,Theresa Heathcote,Theresa Heathcote,Theresa Heathcote | https://cleve.biz | | | +| Chief Program Director | 8.8.8 | Overwrite | If we parse the protocol, we can get to the IB protocol through the wireless IB protocol! | | Use the primary SCSI matrix, then you can program the primary matrix! | | | | | +| Dynamic Paradigm Officer | 2.3.4 | Overwrite | | | | | https://charity.biz | | | +| Principal Identity Designer | 4.7.0 | Ignored | | | compressing the sensor won't do anything, we need to index the mobile ADP sensor! | | https://brock.net | | | +| National Implementation Agent | 5.6.8 | Expression | | | Use the multi-byte PNG circuit, then you can navigate the multi-byte circuit! | Ira Hermiston,Ira Hermiston,Ira Hermiston,Ira Hermiston | http://rex.biz | | | +| Legacy Solutions Architect | 7.9.3 | Url | | Try to input the AI sensor, maybe it will input the digital sensor! | If we program the array, we can get to the JBOD array through the primary JBOD array! | | | | | +| Lead Identity Developer | 7.1.0 | Url | | compressing the bandwidth won't do anything, we need to bypass the primary RAM bandwidth! | | | https://eve.com | | | +| Corporate Intranet Associate | 7.5.1 | Overwrite | | 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! | | | | | +| Investor Operations Director | 5.6.0 | Expression | Try to input the AI microchip, maybe it will input the 1080p microchip! | | If we synthesize the sensor, we can get to the AI sensor through the redundant AI sensor! | | https://alene.info | Elouise | https://ron.com | +| | | | | | | | | Brown | https://cordia.com | +| | | | | | | | | Ericka | https://eugene.com | +| | | | | | | | | Rashad | http://thomas.com | +| | | | | | | | | Antonia | https://marcelle.org | +| Dynamic Group Associate | 6.6.1 | Ignored | We need to input the open-source SMTP bus! | | | | http://kian.name | Burley | http://lemuel.com | +| | | | | | | | | Brenden | http://agnes.net | +| | | | | | | | | Urban | https://micheal.name | +| | | | | | | | | Ida | https://murray.org | +| | | | | | | | | Samanta | http://assunta.biz | +| | | | | | | | | Florencio | http://bradford.info | +| | | | | | | | | Marcella | http://ray.net | +| | | | | | | | | Gunnar | https://elissa.net | +| | | | | | | | | Maud | https://edgar.name | +| | | | | | | | | Angelina | https://adonis.biz | +| Regional Communications Strategist | 9.3.1 | Url | overriding the matrix won't do anything, we need to back up the solid state IB matrix! | Try to index the HDD panel, maybe it will index the haptic panel! | We need to index the bluetooth JSON pixel! | | http://eloisa.biz | | | +| Investor Applications Executive | 9.9.5 | Ignored | The AI application is down, connect the open-source application so we can connect the AI application! | | Use the redundant TCP circuit, then you can calculate the redundant circuit! | | https://xander.com | | | +| Principal Assurance Representative | 3.8.2 | Ignored | | | | Patsy Erdman,Patsy Erdman,Patsy Erdman,Patsy Erdman | | Jadon | https://amelia.biz | +| | | | | | | | | Toni | http://angie.name | +| | | | | | | | | Ardella | http://melissa.net | +| | | | | | | | | Sandra | http://pearline.org | +| | | | | | | | | Noble | https://dusty.net | +| International Marketing Officer | 7.2.8 | Expression | | | | Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk | | | | +| Corporate Marketing Strategist | 3.8.5 | Ignored | | | Use the redundant JSON application, then you can program the redundant application! | Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch | | Naomi | http://mckenna.net | +| | | | | | | | | Jalyn | https://katharina.name | +| | | | | | | | | Kane | http://beulah.biz | +| | | | | | | | | Eleanora | http://birdie.net | +| | | | | | | | | Alvah | http://keanu.net | +| International Intranet Officer | 3.6.7 | Ignored | You can't transmit the pixel without quantifying the mobile AGP pixel! | transmitting the matrix won't do anything, we need to connect the haptic SCSI matrix! | You can't generate the firewall without backing up the primary HTTP firewall! | Ramona Erdman,Ramona Erdman | http://mack.net | | | +| Principal Optimization Administrator | 9.6.7 | Ignored | The XML card is down, bypass the back-end card so we can bypass the XML card! | | | | https://franz.biz | | | +| Future Markets Architect | 7.2.2 | Overwrite | If we synthesize the port, we can get to the CSS port through the online CSS port! | synthesizing the panel won't do anything, we need to transmit the neural THX panel! | | Gerald Cruickshank,Gerald Cruickshank,Gerald Cruickshank | https://maxime.info | | | +| Chief Markets Executive | 1.5.7 | Ignored | | | | | | | | +| Senior Brand Officer | 9.3.6 | Url | If we override the system, we can get to the HDD system through the haptic HDD system! | If we parse the bus, we can get to the XML bus through the solid state XML bus! | | | http://carol.name | | | +| Customer Markets Assistant | 5.9.9 | Ignored | The JSON hard drive is down, copy the digital hard drive so we can copy the JSON hard drive! | | | Cecilia Runolfsdottir,Cecilia Runolfsdottir,Cecilia Runolfsdottir,Cecilia Runolfsdottir,Cecilia Runolfsdottir,Cecilia Runolfsdottir,Cecilia Runolfsdottir | http://cullen.net | | | +| International Branding Associate | 4.9.4 | Url | | 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://trinity.name | | | +| Product Interactions Planner | 7.4.0 | Expression | Try to navigate the PCI matrix, maybe it will navigate the haptic matrix! | | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | http://bertha.net | Rey | https://connie.info | +| | | | | | | | | Hollie | http://rico.name | +| | | | | | | | | Marshall | http://pierce.org | +| | | | | | | | | 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 | +| National Factors Administrator | 8.1.4 | Unknown | | | | | http://janelle.name | | | +| Corporate Infrastructure Executive | 4.8.1 | Unknown | | | Try to index the FTP transmitter, maybe it will index the bluetooth transmitter! | Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist | https://justice.info | | | +| Chief Functionality Planner | 5.1.2 | Unknown | | I'll calculate the 1080p HDD system, that should system the HDD system! | | Matt Mills,Matt Mills | http://myrtice.com | | | +| Human Accountability Developer | 6.9.0 | Unknown | If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit! | | | | | | | +| National Solutions Representative | 5.6.2 | Overwrite | | | You can't synthesize the bandwidth without programming the solid state XSS bandwidth! | | | | | +| Legacy Interactions Officer | 8.8.5 | Overwrite | | | Try to program the RAM bandwidth, maybe it will program the optical bandwidth! | | | | | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Customer Metrics Analyst | 6.7.1 | Unknown | | | | | | | | +| Forward Tactics Agent | 6.8.8 | Url | | We need to back up the primary SMTP circuit! | The COM bandwidth is down, input the auxiliary bandwidth so we can input the COM bandwidth! | Jon Schulist,Jon Schulist | https://flo.info | Diana | http://eula.name | +| | | | | | | | | Raphael | https://zackery.info | +| | | | | | | | | Nettie | https://brayan.com | +| Chief Response Strategist | 8.0.4 | Url | | The RSS alarm is down, compress the mobile alarm so we can compress the RSS alarm! | Use the 1080p PNG application, then you can calculate the 1080p application! | Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann | | | | +| International Branding Producer | 3.8.2 | Expression | We need to generate the solid state AGP microchip! | | | | | | | +| Global Solutions Administrator | 5.2.4 | Overwrite | We need to calculate the online SAS bandwidth! | If we index the bus, we can get to the CSS bus through the optical CSS bus! | | Nellie Oberbrunner | https://hailee.biz | | | +| Global Markets Administrator | 8.6.8 | Expression | 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! | The SSL application is down, reboot the bluetooth application so we can reboot the SSL application! | Julius Bernhard,Julius Bernhard,Julius Bernhard,Julius Bernhard | https://lois.biz | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Brand Agent | 3.1.9 | Url | generating the alarm won't do anything, we need to parse the virtual XSS alarm! | | I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth! | | https://lina.info | | | +| International Paradigm Analyst | 7.0.8 | Ignored | Try to compress the USB hard drive, maybe it will compress the neural hard drive! | We need to parse the solid state TCP interface! | The COM circuit is down, override the primary circuit so we can override the COM circuit! | Wilbert Willms,Wilbert Willms,Wilbert Willms,Wilbert Willms,Wilbert Willms,Wilbert Willms,Wilbert Willms,Wilbert Willms,Wilbert Willms | https://noemie.biz | | | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | Julius Abbott | http://celestine.info | Ettie | http://lonny.net | +| | | | | | | | | Onie | https://cassie.biz | +| | | | | | | | | Solon | https://buck.biz | +| Regional Factors Designer | 7.4.1 | Url | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | Use the haptic RSS port, then you can transmit the haptic port! | Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus | | | | +| Legacy Intranet Planner | 8.3.2 | Expression | Use the bluetooth AI bandwidth, then you can transmit the bluetooth bandwidth! | | | | http://nathanael.name | | | +| Future Accounts Designer | 5.1.9 | Expression | We need to navigate the wireless SAS pixel! | | | | | | | +| Internal Solutions Director | 8.4.4 | Unknown | | | | | | | | +| Direct Applications Designer | 1.5.1 | Unknown | | We need to connect the haptic TCP panel! | If we bypass the card, we can get to the HDD card through the auxiliary HDD card! | Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling | http://tito.name | | | +| Dynamic Configuration Assistant | 3.2.1 | Expression | | 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 | | | | +| Dynamic Configuration Administrator | 4.3.8 | Url | | | Use the redundant AGP microchip, then you can override the redundant microchip! | Roberto Deckow,Roberto Deckow,Roberto Deckow | | | | +| Investor Interactions Designer | 1.9.4 | Url | | | parsing the card won't do anything, we need to synthesize the online SQL card! | Stella Barton,Stella Barton | https://octavia.name | | | +| Corporate Program Associate | 5.2.5 | Overwrite | | | overriding the interface won't do anything, we need to override the virtual THX interface! | | | | | +| Lead Optimization Analyst | 2.1.7 | Expression | Use the wireless XSS bandwidth, then you can program the wireless bandwidth! | The SDD hard drive is down, copy the virtual hard drive so we can copy the SDD hard drive! | | Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson | https://madge.info | | | +| Forward Branding Strategist | 4.6.2 | Overwrite | | | The THX hard drive is down, compress the back-end hard drive so we can compress the THX hard drive! | | | | | +| Dynamic Tactics Facilitator | 0.7.3 | Unknown | | | The SSL port is down, bypass the haptic port so we can bypass the SSL port! | | | | | +| Product Tactics Engineer | 5.6.9 | Overwrite | Use the online TCP driver, then you can navigate the online driver! | I'll transmit the open-source HTTP pixel, that should pixel the HTTP pixel! | transmitting the program won't do anything, we need to generate the multi-byte SAS program! | Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich | | | | +| Direct Applications Assistant | 3.5.8 | Unknown | The PCI pixel is down, synthesize the multi-byte pixel so we can synthesize the PCI pixel! | If we back up the driver, we can get to the TCP driver through the redundant TCP driver! | We need to back up the 1080p COM interface! | | http://consuelo.info | | | +| Dynamic Solutions Assistant | 5.6.4 | Ignored | navigating the alarm won't do anything, we need to copy the 1080p AGP alarm! | | | Craig Halvorson,Craig Halvorson,Craig Halvorson,Craig Halvorson | http://isabell.info | Tess | http://kailyn.info | +| | | | | | | | | Eileen | http://manley.name | +| | | | | | | | | Conor | https://glenna.name | +| | | | | | | | | Sylvester | http://gaylord.biz | +| | | | | | | | | Maxime | https://tom.com | +| Legacy Communications Engineer | 7.8.1 | Expression | | I'll synthesize the haptic THX hard drive, that should hard drive the THX hard drive! | The ADP hard drive is down, input the back-end hard drive so we can input the ADP hard drive! | Hilda Kub,Hilda Kub,Hilda Kub,Hilda Kub,Hilda Kub | | | | +| National Infrastructure Architect | 6.6.7 | Unknown | | If we bypass the hard drive, we can get to the EXE hard drive through the bluetooth EXE hard drive! | | Howard Rath,Howard Rath,Howard Rath,Howard Rath | http://darlene.net | | | +| Forward Tactics Planner | 5.4.6 | Url | I'll input the primary GB port, that should port the GB port! | | 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 | https://caterina.info | | | +| Central Marketing Orchestrator | 3.3.1 | Ignored | | Try to parse the IB driver, maybe it will parse the 1080p driver! | We need to connect the bluetooth RSS application! | Kelly Herman,Kelly Herman,Kelly Herman,Kelly Herman,Kelly Herman,Kelly Herman,Kelly Herman,Kelly Herman,Kelly Herman | https://brice.net | | | +| Customer Interactions Representative | 0.8.8 | Url | We need to quantify the digital SSL array! | | | | http://heather.name | | | +| Forward Program Officer | 4.2.4 | Url | quantifying the capacitor won't do anything, we need to override the open-source AI capacitor! | indexing the port won't do anything, we need to back up the virtual AGP port! | calculating the bus won't do anything, we need to generate the online CSS bus! | Leon Mayer,Leon Mayer | | | | +| Global Mobility Technician | 8.6.3 | Unknown | | We need to input the haptic XML port! | | Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante | | Lonie | http://wilburn.org | +| | | | | | | | | Concepcion | http://ed.org | +| | | | | | | | | Amanda | https://sophie.net | +| | | | | | | | | Claudine | http://ofelia.biz | +| | | | | | | | | Petra | http://clare.name | +| | | | | | | | | Ozella | https://verla.name | +| | | | | | | | | Denis | http://pete.com | +| Forward Research Associate | 3.4.7 | Url | | You can't navigate the capacitor without programming the solid state SQL capacitor! | | | | | | +| District Integration Designer | 6.2.2 | Expression | | You can't connect the port without connecting the back-end COM port! | | Ignacio Hane,Ignacio Hane | https://cindy.org | | | +| Senior Research Liaison | 5.0.6 | Overwrite | If we compress the system, we can get to the AGP system through the multi-byte AGP system! | I'll hack the optical XSS monitor, that should monitor the XSS monitor! | | | http://clair.biz | | | +| Product Data Liaison | 7.8.8 | Unknown | Try to calculate the GB card, maybe it will calculate the wireless card! | | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | | | Lewis | https://alisa.com | +| | | | | | | | | Delores | https://layne.name | +| | | | | | | | | Delphine | https://katlynn.org | +| | | | | | | | | Meredith | https://johanna.info | +| | | | | | | | | Jacklyn | https://kadin.com | +| | | | | | | | | Hardy | https://donna.info | +| National Creative Officer | 5.5.6 | Overwrite | indexing the capacitor won't do anything, we need to reboot the redundant FTP capacitor! | | The TCP array is down, bypass the mobile array so we can bypass the TCP array! | | http://orpha.name | | | +| Internal Factors Facilitator | 2.6.3 | Url | | Try to copy the PNG sensor, maybe it will copy the 1080p sensor! | | Mable Kris,Mable Kris,Mable Kris,Mable Kris,Mable Kris | http://melba.name | | | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| ------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f4d29ad8a9c92d8e.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f4d29ad8a9c92d8e.verified.txt new file mode 100644 index 00000000..de7587d3 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f4d29ad8a9c92d8e.verified.txt @@ -0,0 +1,31 @@ +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| Principal Assurance Representative | 3.8.2 | Ignored | | | | Patsy Erdman,Patsy Erdman,Patsy Erdman,Patsy Erdman | | Jadon | https://amelia.biz | +| | | | | | | | | Toni | http://angie.name | +| | | | | | | | | Ardella | http://melissa.net | +| | | | | | | | | Sandra | http://pearline.org | +| | | | | | | | | Noble | https://dusty.net | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------- | -------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f5318452a5eccb8c.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f5318452a5eccb8c.verified.txt new file mode 100644 index 00000000..ed05c905 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f5318452a5eccb8c.verified.txt @@ -0,0 +1,228 @@ +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------- | ---------- | --------------------- | +| Future Configuration Officer | 7.6.0 | Expression | You can't compress the alarm without parsing the optical JBOD alarm! | 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! | | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | +| Direct Creative Planner | 9.7.2 | Unknown | Try to connect the TCP circuit, maybe it will connect the back-end circuit! | synthesizing the circuit won't do anything, we need to override the neural XML circuit! | bypassing the matrix won't do anything, we need to copy the wireless PCI matrix! | | | | +| District Data Executive | 9.4.3 | Expression | | The FTP transmitter is down, compress the auxiliary transmitter so we can compress the FTP transmitter! | | | | | +| Human Accounts Representative | 4.5.5 | Url | | | The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall! | https://darien.net | | | +| Corporate Quality Planner | 6.6.3 | Ignored | The IB bus is down, bypass the bluetooth bus so we can bypass the IB bus! | You can't transmit the sensor without connecting the digital THX sensor! | The PCI driver is down, parse the neural driver so we can parse the PCI driver! | | | | +| Forward Communications Engineer | 4.5.2 | Overwrite | Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor! | | | | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | | | +| Dynamic Accountability Engineer | 3.1.8 | Url | | Use the online RAM program, then you can generate the online program! | I'll back up the back-end JSON card, that should card the JSON card! | https://gerson.com | | | +| International Data Coordinator | 1.7.7 | Unknown | | connecting the system won't do anything, we need to navigate the solid state HDD system! | | | | | +| International Assurance Executive | 2.8.5 | Ignored | The RSS driver is down, transmit the solid state driver so we can transmit the RSS driver! | | We need to parse the optical FTP driver! | http://antonina.com | Alvah | http://otha.name | +| | | | | | | | Natasha | https://nyah.com | +| | | | | | | | Oliver | http://ettie.biz | +| | | | | | | | Lonny | https://onie.org | +| | | | | | | | Cassie | http://solon.net | +| | | | | | | | Buck | http://taryn.com | +| | | | | | | | Hilton | http://isabel.com | +| Product Assurance Facilitator | 3.5.9 | Ignored | | | | | | | +| Forward Infrastructure Developer | 7.5.6 | Unknown | Try to override the SCSI microchip, maybe it will override the haptic microchip! | programming the monitor won't do anything, we need to parse the online XML monitor! | You can't index the circuit without copying the auxiliary RSS circuit! | | | | +| Central Infrastructure Agent | 6.1.6 | Expression | | | You can't quantify the program without overriding the online SDD program! | | | | +| Lead Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Product Usability Coordinator | 5.4.7 | Overwrite | The GB panel is down, synthesize the neural panel so we can synthesize the GB panel! | You can't copy the system without indexing the virtual XSS system! | If we override the hard drive, we can get to the RSS hard drive through the multi-byte RSS hard drive! | | | | +| Human Accounts Executive | 7.6.7 | Unknown | Use the auxiliary PNG interface, then you can generate the auxiliary interface! | | You can't connect the interface without backing up the optical SMTP interface! | http://kristin.net | Seamus | http://maybell.info | +| | | | | | | | Monserrat | http://katrine.name | +| | | | | | | | Abel | https://geovany.com | +| | | | | | | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| Future Accountability Officer | 2.5.3 | Unknown | | | | http://henderson.biz | | | +| Dynamic Quality Analyst | 0.9.5 | Unknown | We need to index the optical HTTP application! | 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! | | | | +| Internal Program Administrator | 0.3.5 | Expression | We need to navigate the multi-byte PNG application! | The SMS hard drive is down, parse the mobile hard drive so we can parse the SMS hard drive! | The HTTP bandwidth is down, synthesize the 1080p bandwidth so we can synthesize the HTTP bandwidth! | http://viviane.com | | | +| Legacy Infrastructure Producer | 1.1.2 | Unknown | | If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit! | | | | | +| Legacy Interactions Analyst | 3.0.8 | Url | hacking the hard drive won't do anything, we need to generate the open-source RSS hard drive! | connecting the system won't do anything, we need to synthesize the mobile ADP system! | | | | | +| Dynamic Division Agent | 4.2.8 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | https://camilla.info | | | +| Investor Accountability Officer | 2.4.3 | Unknown | | Use the digital XSS hard drive, then you can compress the digital hard drive! | You can't generate the card without synthesizing the bluetooth PNG card! | | | | +| District Implementation Executive | 3.9.4 | Overwrite | | | | http://fae.org | | | +| Human Program Analyst | 3.1.8 | Expression | If we back up the application, we can get to the USB application through the cross-platform USB application! | | | http://efrain.org | | | +| Dynamic Creative Designer | 7.5.8 | Expression | The XML system is down, hack the bluetooth system so we can hack the XML system! | | The GB program is down, program the back-end program so we can program the GB program! | http://daniela.name | | | +| District Optimization Manager | 4.0.4 | Ignored | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | Try to program the CSS circuit, maybe it will program the auxiliary circuit! | | | | +| Lead Intranet Director | 9.2.4 | Url | | You can't parse the bandwidth without transmitting the open-source USB bandwidth! | If we parse the driver, we can get to the GB driver through the neural GB driver! | https://dane.name | | | +| Dynamic Applications Producer | 0.4.7 | Url | Try to input the AI sensor, maybe it will input the digital sensor! | If we program the array, we can get to the JBOD array through the primary JBOD array! | | http://horace.com | | | +| District Intranet Engineer | 7.5.5 | Unknown | 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! | | | | | +| Product Infrastructure Supervisor | 8.1.1 | Ignored | | | | https://merle.com | | | +| Global Optimization Architect | 4.8.0 | Expression | | 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://gaylord.name | Vida | https://theresia.biz | +| | | | | | | | Ransom | http://isom.com | +| | | | | | | | Anastasia | http://kamryn.info | +| | | | | | | | Marlene | https://cyril.name | +| | | | | | | | Zetta | http://pete.org | +| | | | | | | | Candida | https://craig.biz | +| | | | | | | | Timmothy | https://joanny.biz | +| Central Creative Analyst | 3.6.4 | Overwrite | | programming the driver won't do anything, we need to calculate the primary SMTP driver! | | | | | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | Edmund | http://sadie.info | +| | | | | | | | Horacio | https://loraine.name | +| | | | | | | | Sandra | https://emil.info | +| | | | | | | | Dayana | https://leila.info | +| | | | | | | | Micah | http://darien.com | +| | | | | | | | Ethel | http://shakira.net | +| Forward Web Assistant | 5.9.6 | 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! | The SSL application is down, reboot the bluetooth application so we can reboot the SSL application! | | | | +| Dynamic Data Director | 8.6.8 | Overwrite | | | We need to back up the primary SMTP circuit! | https://timothy.info | Kirsten | http://madisyn.com | +| | | | | | | | Murray | https://destinee.com | +| | | | | | | | Emanuel | https://keely.info | +| | | | | | | | Obie | https://caleigh.net | +| | | | | | | | Albin | http://flavie.com | +| | | | | | | | Lavonne | http://kaitlyn.com | +| | | | | | | | Osborne | https://joesph.name | +| | | | | | | | Michael | https://kali.com | +| Direct Web Orchestrator | 1.9.1 | Overwrite | You can't copy the alarm without synthesizing the 1080p IB alarm! | | parsing the card won't do anything, we need to synthesize the online SQL card! | https://kade.com | | | +| 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 Infrastructure Executive | 4.8.1 | Overwrite | | | Try to index the FTP transmitter, maybe it will index the bluetooth transmitter! | https://justice.info | | | +| Corporate Implementation Technician | 2.8.4 | Url | | If we compress the protocol, we can get to the COM protocol through the mobile COM protocol! | Use the multi-byte SMTP program, then you can synthesize the multi-byte program! | | | | +| Forward Factors Director | 5.7.8 | Expression | | | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | | | +| International Accounts Liaison | 5.6.7 | Expression | We need to program the virtual SCSI circuit! | We need to generate the auxiliary GB hard drive! | transmitting the port won't do anything, we need to override the haptic JSON port! | | | | +| Principal Branding Assistant | 8.2.6 | Expression | 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! | We need to hack the auxiliary COM hard drive! | | | | +| Direct Data Designer | 8.4.8 | Unknown | | | We need to transmit the virtual JSON bus! | | | | +| Legacy Creative Liaison | 0.4.6 | Expression | | The SMS system is down, back up the open-source system so we can back up the SMS system! | I'll connect the optical FTP program, that should program the FTP program! | | Candice | http://linnea.com | +| | | | | | | | Everardo | http://daryl.net | +| | | | | | | | Jerrod | http://laila.com | +| | | | | | | | Caleigh | https://adolfo.com | +| | | | | | | | Daisha | http://justine.biz | +| | | | | | | | Americo | http://tessie.org | +| | | | | | | | Howard | https://luis.info | +| Regional Configuration Engineer | 7.3.8 | Expression | Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter! | You can't reboot the matrix without navigating the optical SDD matrix! | | http://roman.org | | | +| Dynamic Group Producer | 5.9.5 | Unknown | We need to hack the multi-byte EXE bus! | If we connect the program, we can get to the SQL program through the digital SQL program! | | https://sonny.com | | | +| Future Marketing Technician | 7.6.7 | Unknown | | overriding the firewall won't do anything, we need to reboot the open-source COM firewall! | | http://abbey.biz | | | +| District Branding Analyst | 1.9.5 | Unknown | | | | https://paula.net | | | +| Principal Intranet Manager | 3.8.8 | Expression | | | | | | | +| International Brand Strategist | 3.9.3 | Ignored | | | I'll hack the optical COM alarm, that should alarm the COM alarm! | https://rowena.info | | | +| Human Response Executive | 6.4.4 | Unknown | If we transmit the matrix, we can get to the SDD matrix through the mobile SDD matrix! | | | https://maida.org | | | +| Future Interactions Facilitator | 7.6.9 | Expression | | If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit! | | | | | +| Internal Data Designer | 9.5.2 | Unknown | | hacking the card won't do anything, we need to hack the neural COM card! | The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive! | https://liana.com | | | +| Principal Accounts Officer | 2.1.8 | Overwrite | 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 Configuration Coordinator | 2.7.5 | Unknown | connecting the panel won't do anything, we need to bypass the wireless AGP panel! | | | | | | +| Dynamic Security Developer | 0.8.7 | Url | You can't back up the array without parsing the haptic CSS array! | | | https://adan.net | | | +| Regional Solutions Supervisor | 1.8.2 | Ignored | You can't parse the system without compressing the haptic GB system! | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | https://lance.net | | | +| Investor Usability Producer | 9.7.6 | Url | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | Jett | https://randal.biz | +| | | | | | | | Leif | http://chaz.name | +| | | | | | | | Tristian | http://susie.com | +| | | | | | | | Carmelo | https://kariane.com | +| | | | | | | | Sofia | http://daphnee.name | +| | | | | | | | Nedra | http://orland.info | +| | | | | | | | Hilton | http://shany.info | +| Dynamic Program Associate | 5.9.7 | Expression | | | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Suzanne | http://ima.name | +| | | | | | | | Earnestine | http://nathanial.biz | +| | | | | | | | Connor | https://augustus.net | +| | | | | | | | Araceli | http://hailey.biz | +| | | | | | | | Janessa | https://craig.com | +| | | | | | | | Erica | http://kristin.org | +| | | | | | | | Alek | http://shany.biz | +| District Configuration Administrator | 8.4.4 | Url | | The XML transmitter is down, calculate the auxiliary transmitter so we can calculate the XML transmitter! | | https://david.name | | | +| Dynamic Factors Facilitator | 6.5.2 | Unknown | | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | | http://magnolia.com | | | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| Dynamic Quality Director | 4.9.9 | Unknown | | | | http://jesse.com | | | +| Investor Creative Architect | 4.5.6 | Overwrite | | The PCI microchip is down, input the cross-platform microchip so we can input the PCI microchip! | If we quantify the transmitter, we can get to the XML transmitter through the optical XML transmitter! | | Selmer | https://jairo.info | +| | | | | | | | Juanita | http://holly.name | +| | | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | | Adalberto | https://sister.biz | +| | | | | | | | Gerald | https://vidal.com | +| | | | | | | | Lucio | http://clemmie.info | +| Dynamic Directives Officer | 5.8.8 | Overwrite | | parsing the program won't do anything, we need to synthesize the haptic IB program! | If we program the microchip, we can get to the SMS microchip through the auxiliary SMS microchip! | http://rafaela.net | | | +| Customer Optimization Engineer | 3.9.7 | Ignored | The JBOD hard drive is down, copy the wireless hard drive so we can copy the JBOD hard drive! | If we synthesize the bus, we can get to the EXE bus through the online EXE bus! | We need to override the auxiliary AGP firewall! | | | | +| Global Markets Director | 3.4.9 | Unknown | The RAM card is down, override the open-source card so we can override the RAM card! | | | | | | +| Future Solutions Officer | 3.3.5 | Unknown | You can't override the hard drive without bypassing the mobile TCP hard drive! | | Use the online IB protocol, then you can back up the online protocol! | | | | +| Corporate Data Strategist | 9.0.0 | Url | | | Try to transmit the PNG capacitor, maybe it will transmit the solid state capacitor! | http://eli.net | | | +| Regional Security Engineer | 5.8.4 | Unknown | | | I'll hack the cross-platform SSL array, that should array the SSL array! | | | | +| International Data Associate | 6.4.8 | Unknown | If we navigate the array, we can get to the SQL array through the 1080p SQL array! | You can't generate the bandwidth without parsing the mobile EXE bandwidth! | | | | | +| Corporate Tactics Analyst | 3.0.8 | Overwrite | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | Use the virtual RAM monitor, then you can override the virtual monitor! | | | Hildegard | http://conner.name | +| | | | | | | | 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 | +| | | | | | | | Irving | https://sydnie.org | +| Senior Metrics Assistant | 8.7.4 | Unknown | | 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 Data Administrator | 9.0.6 | Overwrite | If we navigate the pixel, we can get to the SCSI pixel through the bluetooth SCSI pixel! | I'll program the multi-byte AI transmitter, that should transmitter the AI transmitter! | | https://serenity.info | | | +| Senior Identity Designer | 9.9.3 | Ignored | | | You can't navigate the bandwidth without compressing the open-source AI bandwidth! | https://devyn.info | | | +| National Directives Analyst | 8.2.7 | Overwrite | We need to compress the primary GB array! | | Use the mobile SCSI bus, then you can program the mobile bus! | | | | +| Regional Communications Officer | 3.3.2 | Overwrite | | We need to calculate the redundant THX feed! | | https://cortez.net | | | +| Human Configuration Assistant | 0.1.1 | Overwrite | I'll bypass the solid state SMS system, that should system the SMS system! | | parsing the driver won't do anything, we need to program the auxiliary IB driver! | http://frederick.com | | | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Senior Optimization Assistant | 3.6.0 | Ignored | | overriding the pixel won't do anything, we need to copy the optical JSON pixel! | Try to compress the SMS bus, maybe it will compress the bluetooth bus! | http://akeem.info | | | +| Lead Integration Engineer | 8.7.4 | Unknown | | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | http://jackeline.biz | Reanna | http://buck.net | +| | | | | | | | Christine | http://demarco.name | +| | | | | | | | Marge | http://astrid.net | +| | | | | | | | Charlene | http://rod.net | +| International Optimization Coordinator | 6.5.5 | Ignored | | | If we reboot the system, we can get to the SQL system through the mobile SQL system! | http://antoinette.org | | | +| Future Accounts Architect | 9.1.8 | Ignored | You can't bypass the firewall without indexing the multi-byte COM firewall! | | | https://fermin.biz | | | +| Internal Division Agent | 2.4.2 | Expression | | Try to compress the TCP microchip, maybe it will compress the auxiliary microchip! | | | | | +| Customer Assurance Officer | 0.3.1 | Ignored | I'll navigate the digital CSS sensor, that should sensor the CSS sensor! | | | https://clementine.info | | | +| Legacy Metrics Planner | 9.5.0 | Ignored | 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 Integration Engineer | 4.4.3 | Url | | | | | | | +| Forward Optimization Architect | 8.7.9 | Overwrite | | | backing up the feed won't do anything, we need to compress the haptic SMTP feed! | https://kyle.net | | | +| Dynamic Quality Officer | 8.9.2 | Ignored | | | | https://danika.org | Jadon | https://amelia.biz | +| | | | | | | | Toni | http://angie.name | +| | | | | | | | Ardella | http://melissa.net | +| | | | | | | | Sandra | http://pearline.org | +| | | | | | | | Noble | https://dusty.net | +| Central Marketing Assistant | 9.5.8 | Overwrite | I'll navigate the redundant RAM capacitor, that should capacitor the RAM capacitor! | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | http://julia.biz | | | +| National Functionality Orchestrator | 3.5.0 | Overwrite | If we quantify the array, we can get to the RAM array through the virtual RAM array! | overriding the card won't do anything, we need to hack the auxiliary HTTP card! | If we quantify the feed, we can get to the RAM feed through the neural RAM feed! | https://gina.name | | | +| Corporate Group Planner | 9.2.2 | Ignored | | | We need to reboot the virtual RSS alarm! | | | | +| Corporate Identity Coordinator | 9.8.3 | Url | | If we navigate the bus, we can get to the HDD bus through the primary HDD bus! | | | | | +| Senior Communications Director | 3.1.0 | Expression | | | I'll quantify the neural SCSI port, that should port the SCSI port! | | | | +| Forward Creative Developer | 9.6.7 | Unknown | | I'll transmit the online SSL feed, that should feed the SSL feed! | We need to synthesize the cross-platform SMS circuit! | http://pearline.com | | | +| Forward Division Strategist | 5.7.1 | Unknown | You can't reboot the program without transmitting the mobile SMTP program! | The SCSI circuit is down, index the open-source circuit so we can index the SCSI circuit! | Use the solid state HTTP microchip, then you can back up the solid state microchip! | https://esperanza.name | | | +| Corporate Tactics Strategist | 9.9.9 | Ignored | | copying the alarm won't do anything, we need to index the open-source TCP alarm! | generating the matrix won't do anything, we need to parse the solid state GB matrix! | | | | +| District Implementation Orchestrator | 0.1.4 | Url | I'll synthesize the cross-platform CSS panel, that should panel the CSS panel! | You can't navigate the panel without connecting the optical PNG panel! | | | | | +| Human Division Agent | 2.2.7 | Expression | | 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 | | | +| Lead Factors Designer | 0.9.2 | Url | You can't quantify the bandwidth without calculating the online RAM bandwidth! | | | | | | +| Central Marketing Orchestrator | 3.3.1 | Overwrite | | Try to parse the IB driver, maybe it will parse the 1080p driver! | We need to connect the bluetooth RSS application! | https://brice.net | | | +| Human Communications Supervisor | 6.0.1 | Overwrite | Use the cross-platform SAS feed, then you can bypass the cross-platform feed! | | I'll override the neural XML application, that should application the XML application! | http://ethan.name | | | +| Direct Functionality Representative | 9.9.2 | Ignored | You can't navigate the capacitor without bypassing the multi-byte JSON capacitor! | Try to quantify the COM feed, maybe it will quantify the multi-byte feed! | We need to bypass the multi-byte ADP panel! | | | | +| Regional Paradigm Assistant | 9.8.0 | Url | | If we input the transmitter, we can get to the HDD transmitter through the bluetooth HDD transmitter! | | | Jordan | https://kathryne.name | +| | | | | | | | Mayra | http://lance.name | +| | | | | | | | Jimmie | https://lorine.org | +| | | | | | | | Rebeka | https://malika.org | +| | | | | | | | Trinity | http://fritz.info | +| | | | | | | | Neha | https://marianne.name | +| | | | | | | | Colin | https://billie.biz | +| | | | | | | | Brielle | https://brennon.name | +| | | | | | | | Myriam | https://rosemary.name | +| Internal Factors Designer | 1.9.6 | Url | | | | | | | +| Dynamic Functionality Strategist | 5.8.0 | Url | Use the digital HTTP card, then you can reboot the digital card! | The CSS port is down, quantify the virtual port so we can quantify the CSS port! | | http://filiberto.net | | | +| Direct Mobility Designer | 7.7.3 | Ignored | | | | http://geovanny.info | | | +| Regional Implementation Technician | 8.8.3 | Ignored | | | | | | | +| Legacy Research Associate | 9.9.5 | Url | | We need to navigate the bluetooth RAM bus! | | https://hildegard.name | | | +| Direct Usability Analyst | 3.4.8 | Overwrite | hacking the protocol won't do anything, we need to bypass the back-end SDD protocol! | Try to quantify the EXE program, maybe it will quantify the auxiliary program! | The FTP program is down, override the digital program so we can override the FTP program! | https://maritza.com | | | +| Chief Data Orchestrator | 4.3.2 | Ignored | | | We need to back up the multi-byte SCSI transmitter! | http://gaylord.com | Taya | http://micaela.biz | +| | | | | | | | Evert | http://tomas.net | +| | | | | | | | Brett | http://virginie.net | +| Principal Solutions Facilitator | 7.1.5 | Overwrite | | The RSS pixel is down, calculate the auxiliary pixel so we can calculate the RSS pixel! | | | | | +| Product Tactics Technician | 3.8.3 | Overwrite | If we index the protocol, we can get to the FTP protocol through the online FTP protocol! | Try to synthesize the SDD hard drive, maybe it will synthesize the bluetooth hard drive! | | https://jewel.name | | | +| Direct Factors Representative | 0.5.2 | Overwrite | You can't override the bandwidth without navigating the auxiliary ADP bandwidth! | backing up the system won't do anything, we need to synthesize the digital AI system! | | | | | +| Internal Branding Executive | 2.0.9 | Overwrite | | The SAS sensor is down, input the auxiliary sensor so we can input the SAS sensor! | You can't bypass the application without programming the solid state COM application! | https://efrain.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 | +| Product Directives Engineer | 8.2.3 | Unknown | transmitting the bus won't do anything, we need to navigate the online IB bus! | | We need to bypass the wireless PNG bus! | | | | +| Forward Integration Assistant | 4.8.5 | Expression | | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f86049b152d4d170.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f86049b152d4d170.verified.txt new file mode 100644 index 00000000..f616e66c --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f86049b152d4d170.verified.txt @@ -0,0 +1,25 @@ +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | | | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | | | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | | | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | | | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | | | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | | | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | | | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f8662f5c433c8524.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f8662f5c433c8524.verified.txt new file mode 100644 index 00000000..b9ec2dc3 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f8662f5c433c8524.verified.txt @@ -0,0 +1,13 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ------- | ------------------- | --------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f8e7ea208cb9f856.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f8e7ea208cb9f856.verified.txt new file mode 100644 index 00000000..949fa777 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f8e7ea208cb9f856.verified.txt @@ -0,0 +1,11 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Paige | https://remington.info | +| | | | | Aletha | https://isobel.info | +| | | | | Pearline | https://johnathon.info | +| | | | | Eleanora | http://jaeden.info | +| | | | | Nikolas | https://daphney.net | +| | | | | Oceane | http://clifton.com | +| | | | | Francisco | http://bessie.com | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f8ec9fce6dfe4873.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f8ec9fce6dfe4873.verified.txt new file mode 100644 index 00000000..48f6ca71 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f8ec9fce6dfe4873.verified.txt @@ -0,0 +1,145 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Internal Solutions Planner | 1.3.8 | Ignored | | The COM application is down, quantify the auxiliary application so we can quantify the COM application! | | Nyah | http://oliver.com | +| | | | | | | Ettie | http://lonny.net | +| | | | | | | Onie | https://cassie.biz | +| | | | | | | Solon | https://buck.biz | +| | | | | | | Taryn | http://hilton.com | +| | | | | | | Isabel | http://rogers.net | +| | | | | | | Bertrand | http://annetta.org | +| | | | | | | Remington | https://efrain.info | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | +| National Creative Engineer | 4.0.0 | Ignored | You can't parse the alarm without overriding the haptic SMTP alarm! | | | Candida | https://craig.biz | +| | | | | | | Timmothy | https://joanny.biz | +| | | | | | | Alfonzo | http://dorothea.org | +| | | | | | | 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 | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Chief Brand Associate | 7.6.8 | Ignored | | | https://lauriane.com | Devin | https://ramona.info | +| | | | | | | Alice | http://laverne.info | +| | | | | | | Layne | https://brooks.name | +| | | | | | | Kaitlyn | http://serenity.biz | +| Regional Mobility Manager | 2.7.0 | Ignored | | | http://gianni.info | Alvina | http://elouise.name | +| | | | | | | Ron | http://brown.org | +| | | | | | | Cordia | http://ericka.name | +| | | | | | | Eugene | http://rashad.info | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Forward Directives Supervisor | 8.7.6 | Ignored | | The SSL microchip is down, hack the optical microchip so we can hack the SSL microchip! | http://shaun.org | Jadon | https://amelia.biz | +| | | | | | | Toni | http://angie.name | +| | | | | | | Ardella | http://melissa.net | +| | | | | | | Sandra | http://pearline.org | +| | | | | | | Noble | https://dusty.net | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Legacy Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f91068b6b2377193.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f91068b6b2377193.verified.txt new file mode 100644 index 00000000..41131e83 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f91068b6b2377193.verified.txt @@ -0,0 +1,111 @@ +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| District Metrics Associate | 8.1.6 | Overwrite | | | http://jaylin.org | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Principal Intranet Architect | 4.9.3 | Expression | | | | | | +| Dynamic Group Agent | 1.7.6 | Ignored | | Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins | | | | +| Global Paradigm Producer | 1.8.4 | Overwrite | If we quantify the protocol, we can get to the IB protocol through the auxiliary IB protocol! | | https://london.biz | | | +| Regional Paradigm Director | 3.0.9 | Unknown | The COM pixel is down, quantify the virtual pixel so we can quantify the COM pixel! | | | | | +| Forward Program Officer | 4.2.4 | Unknown | quantifying the capacitor won't do anything, we need to override the open-source AI capacitor! | Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin | | | | +| Customer Group Director | 2.5.2 | Expression | You can't index the pixel without copying the redundant XML pixel! | Vera Krajcik,Vera Krajcik,Vera Krajcik,Vera Krajcik | https://eloise.name | | | +| Dynamic Creative Supervisor | 4.1.3 | Ignored | | | | | | +| Forward Accounts Consultant | 8.9.0 | Expression | | | | | | +| Future Directives Planner | 5.9.7 | Ignored | Use the wireless ADP array, then you can input the wireless array! | Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki | | | | +| Dynamic Group Representative | 9.8.1 | Unknown | | | | | | +| Investor Communications Associate | 0.7.2 | Expression | | Arnold Franecki,Arnold Franecki | http://modesto.info | | | +| Legacy Response Analyst | 9.2.7 | Unknown | | Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata | http://martine.info | | | +| District Mobility Administrator | 3.2.3 | Unknown | | Christopher Dietrich,Christopher Dietrich,Christopher Dietrich,Christopher Dietrich | | | | +| Regional Factors Analyst | 1.5.7 | Overwrite | | | | | | +| Dynamic Integration Assistant | 2.7.5 | Overwrite | I'll back up the 1080p RSS matrix, that should matrix the RSS matrix! | | | | | +| Dynamic Metrics Coordinator | 5.8.1 | Unknown | overriding the circuit won't do anything, we need to copy the mobile AGP circuit! | Helen Fisher,Helen Fisher,Helen Fisher,Helen Fisher,Helen Fisher | | | | +| Human Web Liaison | 8.1.1 | Unknown | | | https://imogene.org | | | +| Future Tactics Producer | 5.8.9 | Url | navigating the pixel won't do anything, we need to parse the back-end IB pixel! | | | | | +| Senior Response Developer | 8.5.8 | Ignored | We need to input the open-source SAS feed! | Jackie Abbott,Jackie Abbott,Jackie Abbott,Jackie Abbott,Jackie Abbott,Jackie Abbott,Jackie Abbott,Jackie Abbott | | | | +| Dynamic Mobility Technician | 6.0.2 | Expression | | | https://keeley.net | | | +| 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 | | | +| Lead Solutions Technician | 1.5.7 | Unknown | | | | | | +| Dynamic Accounts Architect | 9.8.0 | Overwrite | | | | | | +| Regional Mobility Designer | 8.5.4 | Url | | | http://brady.net | | | +| Legacy Communications Manager | 0.1.8 | Unknown | | | http://gus.info | | | +| Future Directives Associate | 1.1.1 | Expression | | Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe | https://shayne.name | | | +| National Security Liaison | 2.4.1 | Ignored | | | http://pierce.info | | | +| Regional Security Agent | 6.2.7 | Overwrite | | | https://kenyon.org | | | +| Corporate Quality Planner | 6.6.3 | Url | 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 | | | | +| Senior Response Officer | 2.8.2 | Expression | | Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann | | | | +| District Brand Producer | 9.3.8 | Overwrite | Use the redundant AGP application, then you can generate the redundant application! | Clarence Metz,Clarence Metz,Clarence Metz | | | | +| Chief Operations Orchestrator | 9.1.5 | Ignored | Try to back up the USB application, maybe it will back up the bluetooth application! | | https://madelynn.name | | | +| Global Data Administrator | 0.8.4 | Unknown | | Frederick Leffler,Frederick Leffler,Frederick Leffler | https://barrett.com | | | +| Product Solutions Manager | 9.5.2 | Overwrite | I'll hack the primary SDD card, that should card the SDD card! | Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach | | | | +| Forward Integration Specialist | 8.7.1 | Expression | | | http://jordon.net | | | +| Lead Identity Developer | 7.1.0 | Unknown | | Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover | https://eve.com | | | +| Internal Division Agent | 2.4.2 | Url | | Gary Von,Gary Von,Gary Von | | | | +| Direct Security Producer | 9.0.7 | Url | | | http://evert.net | | | +| Legacy Assurance Representative | 6.4.9 | Unknown | | Diane Gutkowski,Diane Gutkowski,Diane Gutkowski,Diane Gutkowski,Diane Gutkowski | https://maye.info | | | +| Corporate Interactions Administrator | 1.1.5 | Ignored | | | http://clemmie.info | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| Dynamic Brand Agent | 2.9.2 | Expression | quantifying the application won't do anything, we need to hack the haptic RAM application! | Bertha Schultz,Bertha Schultz | https://reese.info | | | +| Direct Markets Executive | 9.7.7 | Ignored | We need to navigate the open-source PCI pixel! | | https://judge.name | | | +| Future Applications Engineer | 6.8.5 | Unknown | 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 | | | +| Central Applications Planner | 6.6.9 | Overwrite | | Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke | http://ava.org | | | +| Regional Directives Liaison | 4.7.8 | Ignored | If we connect the interface, we can get to the SCSI interface through the auxiliary SCSI interface! | | https://glennie.biz | | | +| District Intranet Agent | 1.1.6 | Url | You can't calculate the application without synthesizing the primary JBOD application! | | | | | +| Product Intranet Assistant | 2.8.1 | Ignored | The THX circuit is down, copy the back-end circuit so we can copy the THX circuit! | | http://lynn.info | | | +| Forward Web Designer | 0.1.4 | Overwrite | | | https://gerard.net | | | +| Future Interactions Developer | 1.1.7 | Unknown | If we reboot the matrix, we can get to the CSS matrix through the cross-platform CSS matrix! | | | | | +| Corporate Mobility Consultant | 1.9.0 | Expression | | | http://letha.name | | | +| Global Integration Assistant | 5.0.1 | Unknown | | | http://demarco.com | | | +| Future Applications Facilitator | 0.1.5 | Expression | transmitting the program won't do anything, we need to bypass the virtual HTTP program! | | | | | +| Principal Factors Producer | 0.8.5 | Unknown | connecting the system won't do anything, we need to override the back-end SQL system! | Devin Nolan | http://toby.info | | | +| Central Mobility Executive | 5.0.3 | Unknown | | Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling | | | | +| Future Web Associate | 5.1.3 | Ignored | | | http://favian.biz | | | +| Lead Implementation Supervisor | 4.9.9 | Overwrite | The ADP card is down, hack the solid state card so we can hack the ADP card! | Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis | http://katlynn.net | | | +| Central Applications Coordinator | 1.6.8 | Ignored | | | http://curtis.com | | | +| Regional Integration Consultant | 5.3.8 | Expression | | | http://michael.name | | | +| Human Marketing Representative | 0.6.1 | Ignored | | Salvador Berge,Salvador Berge,Salvador Berge,Salvador Berge,Salvador Berge,Salvador Berge,Salvador Berge | | | | +| Dynamic Division Specialist | 9.6.4 | Expression | | | https://keenan.net | | | +| Senior Brand Analyst | 2.5.0 | Ignored | | Darlene Dickens,Darlene Dickens,Darlene Dickens,Darlene Dickens,Darlene Dickens,Darlene Dickens,Darlene Dickens,Darlene Dickens | | | | +| Lead Directives Administrator | 5.1.9 | Ignored | Use the haptic GB matrix, then you can generate the haptic matrix! | | | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Global Markets Designer | 1.7.0 | Overwrite | Use the multi-byte COM feed, then you can parse the multi-byte feed! | | https://toby.biz | | | +| Forward Division Strategist | 5.7.1 | Expression | You can't reboot the program without transmitting the mobile SMTP program! | Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode | https://esperanza.name | | | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | http://hanna.net | | | +| National Quality Executive | 4.5.1 | Expression | Use the solid state TCP driver, then you can generate the solid state driver! | | http://rylan.com | | | +| Legacy Data Consultant | 5.8.8 | Unknown | Try to connect the JSON pixel, maybe it will connect the primary pixel! | | | | | +| Human Security Administrator | 9.8.5 | Overwrite | I'll synthesize the redundant XML feed, that should feed the XML feed! | Mario Stamm,Mario Stamm,Mario Stamm,Mario Stamm,Mario Stamm,Mario Stamm | | | | +| Dynamic Integration Assistant | 2.1.6 | Unknown | | | https://gerson.info | | | +| Future Configuration Architect | 4.2.6 | Expression | I'll generate the primary TCP bus, that should bus the TCP bus! | Victoria Padberg,Victoria Padberg,Victoria Padberg,Victoria Padberg,Victoria Padberg,Victoria Padberg | | | | +| Global Mobility Associate | 0.6.4 | Expression | We need to hack the haptic XSS program! | | https://brooke.org | | | +| Senior Group Designer | 3.0.6 | Url | The AGP pixel is down, hack the neural pixel so we can hack the AGP pixel! | | | | | +| Product Metrics Representative | 2.7.9 | Expression | connecting the feed won't do anything, we need to transmit the primary IB feed! | Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson | http://denis.info | | | +| Human Implementation Producer | 0.9.1 | Url | | | | | | +| Future Optimization Associate | 4.0.5 | Unknown | | Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel | https://linnie.net | | | +| Corporate Implementation Officer | 0.2.6 | Ignored | | | | | | +| Global Communications Administrator | 3.0.6 | Ignored | | | | | | +| District Identity Administrator | 2.9.6 | Unknown | | Isabel Schmitt,Isabel Schmitt,Isabel Schmitt,Isabel Schmitt | http://duncan.name | | | +| Customer Operations Liaison | 9.0.9 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | | | | +| Investor Configuration Technician | 1.9.1 | Url | We need to copy the primary FTP bus! | Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin | http://malvina.name | | | +| District Factors Associate | 0.2.6 | Expression | | Betsy Powlowski | https://cloyd.biz | | | +| Dynamic Applications Director | 5.1.4 | Unknown | | Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel | | | | +| Global Group Planner | 5.4.5 | Ignored | | | | | | +| Direct Accountability Producer | 1.8.1 | Url | | | http://justine.net | | | +| Forward Factors Architect | 6.7.6 | Overwrite | | Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt | | | | +| Global Directives Orchestrator | 8.7.6 | Expression | | Tommy Franecki,Tommy Franecki | | | | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| Senior Identity Specialist | 2.8.9 | Ignored | We need to program the primary THX protocol! | Barbara Osinski,Barbara Osinski,Barbara Osinski,Barbara Osinski,Barbara Osinski,Barbara Osinski,Barbara Osinski,Barbara Osinski,Barbara Osinski | https://kennedy.biz | | | +| Principal Group Strategist | 4.1.0 | Url | I'll bypass the primary GB bandwidth, that should bandwidth the GB bandwidth! | | | | | +| Internal Web Associate | 6.2.5 | Expression | | | https://arvel.name | | | +| Investor Interactions Designer | 1.9.4 | Overwrite | | | https://octavia.name | | | +| Dynamic Research Designer | 5.6.8 | Unknown | If we connect the program, we can get to the SQL program through the digital SQL program! | | | | | +| Central Identity Analyst | 8.9.6 | Expression | | | http://leta.org | | | +| Investor Assurance Technician | 7.3.8 | Overwrite | | Merle Hirthe | | | | +| Forward Intranet Technician | 2.5.3 | Expression | | Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton | https://ruby.biz | | | +| Senior Applications Technician | 7.8.2 | Overwrite | | Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert | | | | +| Senior Factors Technician | 3.2.5 | Overwrite | You can't input the protocol without copying the auxiliary USB protocol! | Lee Zieme,Lee Zieme,Lee Zieme,Lee Zieme,Lee Zieme | | | | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f9734b5534d5af9c.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f9734b5534d5af9c.verified.txt new file mode 100644 index 00000000..5662d543 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f9734b5534d5af9c.verified.txt @@ -0,0 +1,115 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error Context | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | +| Customer Metrics Analyst | 6.7.1 | Unknown | | | | | | | | +| 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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Dynamic Factors Producer | 5.7.1 | Url | | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | | | | | +| District Creative Designer | 1.4.6 | Url | We need to program the haptic IB panel! | | | | http://cameron.info | | | +| Chief Functionality Planner | 5.1.2 | Unknown | | I'll calculate the 1080p HDD system, that should system the HDD system! | | Matt Mills,Matt Mills | http://myrtice.com | | | +| Global Markets Administrator | 8.6.8 | Expression | 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! | The SSL application is down, reboot the bluetooth application so we can reboot the SSL application! | Julius Bernhard,Julius Bernhard,Julius Bernhard,Julius Bernhard | https://lois.biz | | | +| National Accountability Producer | 6.9.7 | Unknown | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | https://linwood.biz | Travon | https://dedrick.name | +| | | | | | | | | Elissa | http://kaci.org | +| | | | | | | | | Brandi | https://aniyah.com | +| | | | | | | | | Tyson | https://bonita.org | +| | | | | | | | | Jazlyn | http://madonna.net | +| | | | | | | | | Deangelo | https://jess.info | +| | | | | | | | | Alvah | https://hans.net | +| Global Mobility Technician | 8.6.3 | Unknown | | We need to input the haptic XML port! | | Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante | | Lonie | http://wilburn.org | +| | | | | | | | | Concepcion | http://ed.org | +| | | | | | | | | Amanda | https://sophie.net | +| | | | | | | | | Claudine | http://ofelia.biz | +| | | | | | | | | Petra | http://clare.name | +| | | | | | | | | Ozella | https://verla.name | +| | | | | | | | | Denis | http://pete.com | +| Dynamic Configuration Assistant | 3.2.1 | Expression | | 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 Consultant | 5.9.5 | Expression | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | bypassing the bus won't do anything, we need to calculate the virtual GB bus! | | Guadalupe Littel,Guadalupe Littel,Guadalupe Littel | | | | +| International Intranet Planner | 1.3.4 | Expression | 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 | Ahmad | https://lupe.com | +| | | | | | | | | Randi | https://jaiden.biz | +| | | | | | | | | Patience | https://marlene.name | +| | | | | | | | | Lenna | https://franco.name | +| | | | | | | | | Kyleigh | https://tevin.name | +| | | | | | | | | Sallie | https://jordane.name | +| | | | | | | | | Willy | https://daija.info | +| | | | | | | | | Jannie | https://retta.net | +| | | | | | | | | Lottie | http://yasmine.com | +| | | | | | | | | Delia | http://khalil.com | +| Investor Operations Director | 5.6.0 | Expression | Try to input the AI microchip, maybe it will input the 1080p microchip! | | If we synthesize the sensor, we can get to the AI sensor through the redundant AI sensor! | | https://alene.info | Elouise | https://ron.com | +| | | | | | | | | Brown | https://cordia.com | +| | | | | | | | | Ericka | https://eugene.com | +| | | | | | | | | Rashad | http://thomas.com | +| | | | | | | | | Antonia | https://marcelle.org | +| Investor Division Assistant | 9.6.2 | Url | | I'll parse the primary PCI matrix, that should matrix the PCI matrix! | | | | Nya | http://sunny.biz | +| | | | | | | | | Arlo | https://cordia.info | +| | | | | | | | | Linnie | https://marcos.name | +| | | | | | | | | Luella | http://frederic.name | +| | | | | | | | | Lucinda | https://dion.name | +| | | | | | | | | Jayson | https://ryleigh.net | +| | | | | | | | | Mervin | https://lorenza.net | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| Regional Factors Designer | 7.4.1 | Url | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | Use the haptic RSS port, then you can transmit the haptic port! | Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus | | | | +| Customer Interactions Representative | 0.8.8 | Url | We need to quantify the digital SSL array! | | | | http://heather.name | | | +| Product Data Liaison | 7.8.8 | Unknown | Try to calculate the GB card, maybe it will calculate the wireless card! | | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | | | Lewis | https://alisa.com | +| | | | | | | | | Delores | https://layne.name | +| | | | | | | | | Delphine | https://katlynn.org | +| | | | | | | | | Meredith | https://johanna.info | +| | | | | | | | | Jacklyn | https://kadin.com | +| | | | | | | | | Hardy | https://donna.info | +| Product Interactions Planner | 7.4.0 | Expression | Try to navigate the PCI matrix, maybe it will navigate the haptic matrix! | | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | http://bertha.net | Rey | https://connie.info | +| | | | | | | | | Hollie | http://rico.name | +| | | | | | | | | Marshall | http://pierce.org | +| | | | | | | | | 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 | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Usability Manager | 9.1.0 | Overwrite | | Try to back up the THX interface, maybe it will back up the auxiliary interface! | | | http://vella.com | | | +| Forward Tactics Agent | 6.8.8 | Url | | We need to back up the primary SMTP circuit! | The COM bandwidth is down, input the auxiliary bandwidth so we can input the COM bandwidth! | Jon Schulist,Jon Schulist | https://flo.info | Diana | http://eula.name | +| | | | | | | | | Raphael | https://zackery.info | +| | | | | | | | | Nettie | https://brayan.com | +| Global Mobility Facilitator | 8.5.9 | Url | | We need to parse the primary PCI protocol! | | Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch | https://itzel.info | Mitchel | http://carleton.name | +| | | | | | | | | Madalyn | http://narciso.net | +| | | | | | | | | Mia | http://nicklaus.net | +| | | | | | | | | Abelardo | http://carolina.name | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| National Security Orchestrator | 3.5.6 | Expression | Try to copy the HDD array, maybe it will copy the back-end array! | 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! | Roderick Koelpin,Roderick Koelpin,Roderick Koelpin | | | | +| Human Accountability Developer | 6.9.0 | Unknown | If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit! | | | | | | | +| Future Accounts Designer | 5.1.9 | Expression | We need to navigate the wireless SAS pixel! | | | | | | | +| Lead Configuration Liaison | 1.8.9 | Expression | | connecting the transmitter won't do anything, we need to program the cross-platform XSS transmitter! | | | http://esther.biz | | | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| Internal Factors Facilitator | 2.6.3 | Url | | Try to copy the PNG sensor, maybe it will copy the 1080p sensor! | | Mable Kris,Mable Kris,Mable Kris,Mable Kris,Mable Kris | http://melba.name | | | +| Investor Interactions Designer | 1.9.4 | Url | | | parsing the card won't do anything, we need to synthesize the online SQL card! | Stella Barton,Stella Barton | https://octavia.name | | | +| Corporate Intranet Associate | 7.5.1 | Overwrite | | 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! | | | | | +| Chief Solutions Administrator | 0.4.1 | Unknown | | 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 | Shaun | https://antwan.org | +| | | | | | | | | Hazel | https://forrest.net | +| | | | | | | | | Brianne | https://dorothea.name | +| | | | | | | | | Don | http://torey.com | +| | | | | | | | | Cedrick | https://zachariah.net | +| | | | | | | | | Marcelle | https://adah.org | +| | | | | | | | | Barney | http://erica.org | +| | | | | | | | | Jordi | https://alysha.com | +| | | | | | | | | Kristina | https://pattie.info | +| | | | | | | | | Cory | http://kailey.com | +| Central Tactics Director | 4.6.7 | Url | backing up the system won't do anything, we need to parse the neural CSS system! | We need to transmit the back-end RSS transmitter! | | Doyle Osinski,Doyle Osinski,Doyle Osinski,Doyle Osinski | https://valentina.net | | | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f97f7612040b7f18.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f97f7612040b7f18.verified.txt new file mode 100644 index 00000000..f81123c7 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_f97f7612040b7f18.verified.txt @@ -0,0 +1,130 @@ +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.biz | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| Corporate Accountability Designer | 0.8.0 | Ignored | We need to hack the online FTP application! | | Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn | http://taya.info | Abelardo | http://carolina.name | +| | | | | | | | Lindsey | http://rigoberto.org | +| | | | | | | | Lou | http://darlene.biz | +| | | | | | | | Oliver | https://filomena.com | +| | | | | | | | Vincenzo | https://ulices.biz | +| | | | | | | | Florida | http://jovan.net | +| | | | | | | | Ari | https://chad.com | +| | | | | | | | Yvonne | http://jada.name | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Customer Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| Investor Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Dynamic Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| Legacy Usability Coordinator | 5.8.8 | Overwrite | Try to calculate the PNG port, maybe it will calculate the back-end port! | | | http://thora.info | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Senior Solutions Strategist | 7.5.0 | 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 | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Corporate Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | http://celestine.info | Clemens | https://abagail.info | +| | | | | | | | Franz | http://prudence.info | +| | | | | | | | Casper | https://alva.com | +| | | | | | | | Mario | http://alexandria.biz | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fb4aae8d13fc4bee.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fb4aae8d13fc4bee.verified.txt new file mode 100644 index 00000000..0d15c82d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fb4aae8d13fc4bee.verified.txt @@ -0,0 +1,145 @@ +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | Error | Error Context | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Interactions Developer | 7.0.9 | Overwrite | I'll input the multi-byte AI circuit, that should circuit the AI circuit! | | | Mia | http://olga.com | +| | | | | | | Myriam | http://lizeth.biz | +| | | | | | | Aylin | https://amie.biz | +| | | | | | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| Internal Solutions Planner | 1.3.8 | Ignored | | The COM application is down, quantify the auxiliary application so we can quantify the COM application! | | Nyah | http://oliver.com | +| | | | | | | Ettie | http://lonny.net | +| | | | | | | Onie | https://cassie.biz | +| | | | | | | Solon | https://buck.biz | +| | | | | | | Taryn | http://hilton.com | +| | | | | | | Isabel | http://rogers.net | +| | | | | | | Bertrand | http://annetta.org | +| | | | | | | Remington | https://efrain.info | +| Legacy Accountability Director | 8.2.2 | Url | | We need to navigate the bluetooth CSS array! | | 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 Data Engineer | 9.4.1 | Overwrite | Use the multi-byte SSL matrix, then you can input the multi-byte matrix! | The GB system is down, synthesize the auxiliary system so we can synthesize the GB system! | | Leonie | https://jason.info | +| | | | | | | Joany | https://carol.biz | +| | | | | | | Luisa | https://ewell.info | +| | | | | | | Jonas | http://nichole.net | +| | | | | | | Arden | http://shemar.org | +| | | | | | | Rhoda | https://selena.info | +| | | | | | | Selmer | https://jairo.info | +| | | | | | | Juanita | http://holly.name | +| | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | Adalberto | https://sister.biz | +| National Creative Engineer | 4.0.0 | Ignored | You can't parse the alarm without overriding the haptic SMTP alarm! | | | Candida | https://craig.biz | +| | | | | | | Timmothy | https://joanny.biz | +| | | | | | | Alfonzo | http://dorothea.org | +| | | | | | | 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 | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Forward Directives Supervisor | 8.7.6 | Ignored | | The SSL microchip is down, hack the optical microchip so we can hack the SSL microchip! | http://shaun.org | Jadon | https://amelia.biz | +| | | | | | | Toni | http://angie.name | +| | | | | | | Ardella | http://melissa.net | +| | | | | | | Sandra | http://pearline.org | +| | | | | | | Noble | https://dusty.net | +| Regional Interactions Strategist | 0.6.3 | Url | | | | Vicky | https://alayna.com | +| | | | | | | Adrain | https://ahmad.name | +| | | | | | | Lupe | http://randi.net | +| | | | | | | Jaiden | http://patience.name | +| | | | | | | Marlene | https://lenna.net | +| | | | | | | Franco | https://kyleigh.name | +| | | | | | | Tevin | https://sallie.net | +| | | | | | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| Customer Group Consultant | 8.1.7 | Expression | | | | 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 | +| Global Factors Assistant | 2.6.3 | Url | I'll parse the solid state RAM panel, that should panel the RAM panel! | If we input the alarm, we can get to the SCSI alarm through the online SCSI alarm! | | Jess | http://alvah.org | +| | | | | | | Hans | https://payton.info | +| | | | | | | Shanna | https://providenci.org | +| | | | | | | Tyra | https://flo.info | +| | | | | | | Isidro | https://dawn.net | +| | | | | | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| Regional Mobility Manager | 2.7.0 | Ignored | | | http://gianni.info | Alvina | http://elouise.name | +| | | | | | | Ron | http://brown.org | +| | | | | | | Cordia | http://ericka.name | +| | | | | | | Eugene | http://rashad.info | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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 | +| Chief Brand Associate | 7.6.8 | Ignored | | | https://lauriane.com | Devin | https://ramona.info | +| | | | | | | Alice | http://laverne.info | +| | | | | | | Layne | https://brooks.name | +| | | | | | | Kaitlyn | http://serenity.biz | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Dynamic Program Associate | 5.9.7 | Unknown | | | | Leatha | https://felix.name | +| | | | | | | Lucious | http://junior.org | +| | | | | | | Alene | http://laurel.biz | +| Regional Integration Assistant | 6.3.7 | Url | | | | Shakira | https://layne.org | +| | | | | | | Neoma | https://oliver.name | +| | | | | | | Clarabelle | https://vern.biz | +| | | | | | | Tristin | http://maximillia.org | +| | | | | | | Brown | http://giuseppe.name | +| Product Accountability Analyst | 6.8.0 | Url | | Try to input the SCSI system, maybe it will input the open-source system! | | 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 | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | Jermaine | http://helga.org | +| | | | | | | Jermey | http://wilfrid.name | +| | | | | | | Josianne | https://vivian.biz | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| -------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fb95d69df6f962d3.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fb95d69df6f962d3.verified.txt new file mode 100644 index 00000000..c7e75c0c --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fb95d69df6f962d3.verified.txt @@ -0,0 +1,130 @@ +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | Error | Error Context | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Configuration Liaison | 7.9.6 | Unknown | | | Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader,Emilio Nader | http://bettie.info | Alvah | https://hans.net | +| | | | | | | | Payton | http://shanna.name | +| | | | | | | | Providenci | https://tyra.org | +| | | | | | | | Flo | http://isidro.net | +| | | | | | | | Dawn | https://anika.org | +| | | | | | | | Silas | http://zane.name | +| Internal Communications Liaison | 2.2.0 | Overwrite | | We need to synthesize the primary GB circuit! | Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz,Beulah Mraz | | Carmela | https://kraig.com | +| | | | | | | | Ana | https://enid.biz | +| | | | | | | | Archibald | http://jamey.biz | +| | | | | | | | Tito | https://margie.info | +| | | | | | | | Jamaal | https://shakira.name | +| | | | | | | | Dixie | https://reinhold.name | +| | | | | | | | Lauretta | https://marietta.com | +| | | | | | | | Karolann | http://stephon.net | +| | | | | | | | Sheila | http://lesly.net | +| | | | | | | | Arlene | http://burley.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 | Cedrick | https://zachariah.net | +| | | | | | | | Marcelle | https://adah.org | +| | | | | | | | Barney | http://erica.org | +| Senior Solutions Strategist | 7.5.0 | 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 | +| National Division Producer | 4.2.3 | Expression | You can't navigate the feed without hacking the virtual JSON feed! | | Angie Dach,Angie Dach,Angie Dach | http://moses.org | Gabe | http://margarett.org | +| | | | | | | | Tamia | https://laurie.info | +| | | | | | | | Rebecca | https://torrance.org | +| | | | | | | | Belle | http://dax.info | +| International Interactions Strategist | 6.8.4 | Overwrite | Use the virtual GB monitor, then you can navigate the virtual monitor! | | Kristy Blick,Kristy Blick | | Jordane | https://willy.org | +| | | | | | | | Daija | http://jannie.net | +| | | | | | | | Retta | https://lottie.biz | +| | | | | | | | Yasmine | http://delia.com | +| | | | | | | | Khalil | http://jewel.net | +| | | | | | | | Roy | https://johanna.org | +| | | | | | | | Price | https://itzel.info | +| | | | | | | | Dalton | https://daren.info | +| | | | | | | | Arnold | http://arlo.org | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Legacy Branding Designer | 6.1.3 | Url | You can't synthesize the monitor without calculating the optical XSS monitor! | indexing the array won't do anything, we need to input the back-end SMS array! | | https://maggie.biz | Milo | http://newton.org | +| | | | | | | | Hilario | https://lenny.name | +| | | | | | | | Barry | http://meredith.org | +| | | | | | | | Laverna | http://elmo.name | +| | | | | | | | Audrey | https://alfredo.net | +| | | | | | | | Cydney | http://jaiden.info | +| Corporate Research Director | 6.2.8 | Url | The PNG protocol is down, quantify the virtual protocol so we can quantify the PNG protocol! | | | http://zakary.biz | 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 Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| Customer Program Technician | 1.7.7 | Url | | | Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg,Spencer Stoltenberg | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| | | | | | | | Nettie | https://brayan.com | +| Customer Communications Architect | 0.4.1 | Overwrite | | | Rickey Wintheiser | | Katherine | http://izaiah.net | +| | | | | | | | Jerrod | http://russ.com | +| | | | | | | | Cortney | http://kyla.biz | +| | | | | | | | Jerry | https://yvette.info | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst,Mitchell Medhurst | http://cory.com | Nicolette | https://deven.org | +| | | | | | | | Jazlyn | http://grant.org | +| | | | | | | | Kariane | http://lemuel.net | +| | | | | | | | Wyatt | https://melba.net | +| | | | | | | | Carolyn | http://sigmund.info | +| Corporate Accountability Designer | 0.8.0 | Ignored | We need to hack the online FTP application! | | Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn,Jose Conn | http://taya.info | Abelardo | http://carolina.name | +| | | | | | | | Lindsey | http://rigoberto.org | +| | | | | | | | Lou | http://darlene.biz | +| | | | | | | | Oliver | https://filomena.com | +| | | | | | | | Vincenzo | https://ulices.biz | +| | | | | | | | Florida | http://jovan.net | +| | | | | | | | Ari | https://chad.com | +| | | | | | | | Yvonne | http://jada.name | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Directives Liaison | 9.3.8 | Unknown | Use the redundant JSON application, then you can program the redundant application! | The AGP array is down, generate the mobile array so we can generate the AGP array! | | http://desiree.info | Alfredo | https://giles.info | +| | | | | | | | Jaime | https://gaetano.name | +| | | | | | | | Anna | http://percival.net | +| | | | | | | | Katrina | http://jakob.com | +| | | | | | | | Houston | http://cheyanne.net | +| | | | | | | | Valentin | https://gretchen.net | +| | | | | | | | Boris | https://ilene.net | +| District Program Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | http://celestine.info | Clemens | https://abagail.info | +| | | | | | | | Franz | http://prudence.info | +| | | | | | | | Casper | https://alva.com | +| | | | | | | | Mario | http://alexandria.biz | +| Dynamic Operations Specialist | 0.1.9 | Expression | | The RAM firewall is down, program the open-source firewall so we can program the RAM firewall! | | http://lavinia.name | Willow | https://jason.org | +| | | | | | | | Orland | http://rigoberto.com | +| | | | | | | | Laney | http://eryn.org | +| ------------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc1a4181730e7429.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc1a4181730e7429.verified.txt new file mode 100644 index 00000000..08db0e7f --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc1a4181730e7429.verified.txt @@ -0,0 +1,32 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Lead Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc1acc8b48f32728.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc1acc8b48f32728.verified.txt new file mode 100644 index 00000000..82bae488 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc1acc8b48f32728.verified.txt @@ -0,0 +1,42 @@ +| ----------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------------- | --------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------------- | --------------------- | --------- | --------------------- | +| National Tactics Engineer | 3.7.5 | Url | generating the matrix won't do anything, we need to override the redundant GB matrix! | https://alexys.org | | | +| Dynamic Applications Director | 5.1.4 | Ignored | | | | | +| Forward Functionality Analyst | 4.5.1 | Expression | | http://orie.name | | | +| National Communications Facilitator | 3.1.0 | Url | quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter! | | | | +| Central Integration Analyst | 0.4.0 | Overwrite | If we synthesize the protocol, we can get to the JBOD protocol through the multi-byte JBOD protocol! | https://laverne.name | | | +| Global Security Liaison | 8.1.2 | Expression | | | | | +| Regional Security Architect | 2.2.5 | Url | | | | | +| Forward Quality Producer | 6.3.7 | Overwrite | The CSS microchip is down, back up the bluetooth microchip so we can back up the CSS microchip! | https://jayne.name | | | +| Central Interactions Manager | 7.0.9 | Expression | | | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| | | | | | Guadalupe | http://otho.info | +| | | | | | General | https://skylar.name | +| | | | | | Haylie | http://audreanne.info | +| Chief Assurance Associate | 3.3.1 | Url | overriding the panel won't do anything, we need to parse the open-source IB panel! | https://tyrese.info | | | +| Customer Directives Director | 7.9.2 | Overwrite | Try to hack the COM panel, maybe it will hack the auxiliary panel! | | | | +| District Branding Analyst | 1.9.5 | Url | | https://paula.net | | | +| District Mobility Administrator | 3.2.3 | Ignored | | | | | +| Product Applications Assistant | 2.8.4 | Overwrite | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | https://carleton.info | | | +| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| | | | | | Xander | https://everette.info | +| | | | | | Otha | https://cletus.net | +| | | | | | Carlee | https://jaron.info | +| | | | | | Nannie | https://isaias.net | +| Dynamic Functionality Agent | 5.9.5 | Unknown | | http://annabelle.net | | | +| Global Usability Representative | 3.5.9 | Url | | | | | +| Dynamic Security Technician | 6.8.3 | Unknown | | | | | +| Direct Intranet Facilitator | 7.1.7 | Unknown | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | +| | | | | | 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 | +| | | | | | Emmalee | https://haleigh.name | +| Regional Solutions Supervisor | 1.8.2 | Ignored | You can't parse the system without compressing the haptic GB system! | https://lance.net | | | +| Customer Operations Officer | 2.6.0 | Overwrite | Use the bluetooth USB alarm, then you can override the bluetooth alarm! | http://antonette.org | | | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | +| ----------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------------- | --------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc33440a9759dcf5.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc33440a9759dcf5.verified.txt new file mode 100644 index 00000000..55c25b25 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc33440a9759dcf5.verified.txt @@ -0,0 +1,41 @@ +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 | Unknown | 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 Associate | 0.5.4 | Expression | If we override the monitor, we can get to the SAS monitor through the solid state SAS monitor! | | Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton,Rhonda Barton | https://cyril.name | Melissa | https://sandra.biz | +| | | | | | | | Pearline | https://noble.net | +| | | | | | | | Dusty | https://verlie.com | +| | | | | | | | Maryjane | http://lessie.name | +| | | | | | | | Hayden | https://ernestine.com | +| | | | | | | | Amina | http://steve.com | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Dynamic Program Analyst | 7.8.7 | Unknown | I'll parse the wireless PCI array, that should array the PCI array! | | Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda,Brittany Blanda | | Easton | http://don.com | +| | | | | | | | Margaret | https://michaela.name | +| | | | | | | | Jody | http://jakob.org | +| | | | | | | | Anjali | https://valentin.info | +| | | | | | | | Laurine | http://rosendo.name | +| | | | | | | | Pierce | https://braeden.com | +| | | | | | | | Ayana | https://avery.info | +| | | | | | | | Jarret | http://clarissa.name | +| | | | | | | | Audreanne | https://vida.net | +| | | | | | | | Theresia | http://ransom.biz | +| ----------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | ------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc6a5e7c9378cf96.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc6a5e7c9378cf96.verified.txt new file mode 100644 index 00000000..c1b31118 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc6a5e7c9378cf96.verified.txt @@ -0,0 +1,142 @@ +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | +| Product Identity Analyst | 5.9.3 | Expression | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | | Rey | https://connie.info | +| | | | | | | Hollie | http://rico.name | +| | | | | | | Marshall | http://pierce.org | +| | | | | | | 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 | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Future Response Consultant | 9.3.1 | Unknown | | | https://ulices.biz | Ari | https://chad.com | +| | | | | | | Yvonne | http://jada.name | +| | | | | | | Noemie | https://kayley.name | +| | | | | | | Brandon | http://kristopher.name | +| | | | | | | Maggie | http://kimberly.info | +| | | | | | | Veronica | https://mya.net | +| | | | | | | Marty | https://obie.net | +| | | | | | | Braxton | http://flavio.net | +| | | | | | | Jeramie | http://jaycee.net | +| Future Group Assistant | 1.7.9 | Expression | Use the multi-byte AI port, then you can reboot the multi-byte port! | | | Darien | http://mitchel.biz | +| | | | | | | Carleton | https://madalyn.com | +| | | | | | | Narciso | https://mia.com | +| | | | | | | Nicklaus | https://abelardo.com | +| | | | | | | Carolina | https://lindsey.info | +| | | | | | | Rigoberto | https://lou.biz | +| Corporate Accountability Designer | 0.8.0 | Overwrite | We need to hack the online FTP application! | | http://taya.info | Carlee | http://britney.name | +| | | | | | | Tess | http://julian.biz | +| | | | | | | Isadore | http://billy.net | +| | | | | | | Alice | http://vern.net | +| | | | | | | King | http://trace.net | +| | | | | | | Carmela | https://adolf.info | +| | | | | | | Sherman | http://alec.net | +| | | | | | | Lamar | http://deion.org | +| Dynamic Group Associate | 6.6.1 | Unknown | We need to input the open-source SMTP bus! | | http://kian.name | Neil | https://burley.info | +| | | | | | | Lemuel | http://brenden.info | +| | | | | | | Agnes | https://urban.org | +| | | | | | | Micheal | https://ida.net | +| | | | | | | Murray | https://samanta.com | +| | | | | | | Assunta | http://florencio.com | +| Customer Program Consultant | 5.0.4 | Ignored | Try to compress the GB system, maybe it will compress the neural system! | Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan,Douglas Ryan | http://kieran.biz | Bettie | http://edmund.info | +| | | | | | | Sadie | http://horacio.org | +| | | | | | | Loraine | https://sandra.org | +| | | | | | | Emil | http://dayana.net | +| Chief Security Architect | 4.2.1 | Expression | I'll back up the neural FTP system, that should system the FTP system! | | http://khalil.org | Immanuel | https://juana.biz | +| | | | | | | Maeve | https://alysha.net | +| | | | | | | Sydnee | http://merle.biz | +| | | | | | | Delta | https://missouri.name | +| | | | | | | Doris | http://dallas.biz | +| | | | | | | Samanta | https://jeremie.name | +| | | | | | | Damian | http://domenic.biz | +| Direct Tactics Technician | 2.8.6 | Unknown | Try to quantify the SAS port, maybe it will quantify the wireless port! | | | Demond | http://stefan.name | +| | | | | | | Norval | http://annie.net | +| | | | | | | Destin | http://penelope.name | +| Internal Solutions Planner | 1.3.8 | Expression | | Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin,Sarah Goodwin | | Marianne | https://ramona.net | +| | | | | | | Mariela | http://wilfredo.com | +| | | | | | | Everett | http://vanessa.name | +| | | | | | | Mallory | http://angeline.name | +| Lead Creative Administrator | 9.0.0 | Overwrite | Use the virtual RAM monitor, then you can override the virtual monitor! | | https://roderick.net | Hildegard | http://conner.name | +| | | | | | | 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 | +| | | | | | | Irving | https://sydnie.org | +| Chief Data Director | 2.1.5 | Unknown | Use the haptic PCI bandwidth, then you can generate the haptic bandwidth! | | | Earnestine | http://nathanial.biz | +| | | | | | | Connor | https://augustus.net | +| | | | | | | Araceli | http://hailey.biz | +| | | | | | | Janessa | https://craig.com | +| | | | | | | Erica | http://kristin.org | +| | | | | | | Alek | http://shany.biz | +| | | | | | | Camren | http://joany.info | +| Future Mobility Strategist | 4.7.6 | Overwrite | Use the virtual ADP bandwidth, then you can calculate the virtual bandwidth! | | http://gerardo.net | Cathy | http://giovanna.info | +| | | | | | | Ike | https://jerome.biz | +| | | | | | | Emerald | https://camren.net | +| | | | | | | Sheila | https://garry.org | +| Investor Tactics Strategist | 1.6.5 | Overwrite | | Roberto Schuster,Roberto Schuster,Roberto Schuster | http://arch.biz | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| Product Marketing Developer | 3.3.6 | Unknown | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | Lewis | https://alisa.com | +| | | | | | | Delores | https://layne.name | +| | | | | | | Delphine | https://katlynn.org | +| | | | | | | Meredith | https://johanna.info | +| | | | | | | Jacklyn | https://kadin.com | +| | | | | | | Hardy | https://donna.info | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Global Infrastructure Developer | 5.5.0 | Url | generating the application won't do anything, we need to calculate the auxiliary JSON application! | Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger,Donald Hoeger | https://austin.net | 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 Creative Architect | 4.5.6 | Overwrite | | Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth,Zachary Langworth | | Jordane | https://willy.org | +| | | | | | | Daija | http://jannie.net | +| | | | | | | Retta | https://lottie.biz | +| | | | | | | Yasmine | http://delia.com | +| | | | | | | Khalil | http://jewel.net | +| | | | | | | Roy | https://johanna.org | +| | | | | | | Price | https://itzel.info | +| | | | | | | Dalton | https://daren.info | +| | | | | | | Arnold | http://arlo.org | +| Investor Identity Developer | 4.2.0 | Url | | Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan,Mandy Rohan | | Anika | https://silas.com | +| | | | | | | Zane | https://kirsten.com | +| | | | | | | Madisyn | http://murray.net | +| | | | | | | Destinee | http://emanuel.net | +| | | | | | | Keely | http://obie.org | +| | | | | | | Caleigh | https://albin.info | +| | | | | | | Flavie | http://lavonne.biz | +| | | | | | | Kaitlyn | http://osborne.org | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc6ce769c2298173.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc6ce769c2298173.verified.txt new file mode 100644 index 00000000..9422adb8 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc6ce769c2298173.verified.txt @@ -0,0 +1,133 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | --------------------- | +| Regional Solutions Supervisor | 1.8.2 | Ignored | You can't parse the system without compressing the haptic GB system! | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | https://lance.net | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Creative Architect | 4.5.6 | Overwrite | | The PCI microchip is down, input the cross-platform microchip so we can input the PCI microchip! | If we quantify the transmitter, we can get to the XML transmitter through the optical XML transmitter! | | Selmer | https://jairo.info | +| | | | | | | | Juanita | http://holly.name | +| | | | | | | | Rosemarie | https://lysanne.com | +| | | | | | | | Adalberto | https://sister.biz | +| | | | | | | | Gerald | https://vidal.com | +| | | | | | | | Lucio | http://clemmie.info | +| Dynamic Program Associate | 5.9.7 | Expression | | | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | | Suzanne | http://ima.name | +| | | | | | | | Earnestine | http://nathanial.biz | +| | | | | | | | Connor | https://augustus.net | +| | | | | | | | Araceli | http://hailey.biz | +| | | | | | | | Janessa | https://craig.com | +| | | | | | | | Erica | http://kristin.org | +| | | | | | | | Alek | http://shany.biz | +| Internal Branding Executive | 2.0.9 | Overwrite | | The SAS sensor is down, input the auxiliary sensor so we can input the SAS sensor! | You can't bypass the application without programming the solid state COM application! | https://efrain.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 | +| Central Infrastructure Agent | 6.1.6 | Expression | | | You can't quantify the program without overriding the online SDD program! | | | | +| Global Optimization Architect | 4.8.0 | Expression | | 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://gaylord.name | Vida | https://theresia.biz | +| | | | | | | | Ransom | http://isom.com | +| | | | | | | | Anastasia | http://kamryn.info | +| | | | | | | | Marlene | https://cyril.name | +| | | | | | | | Zetta | http://pete.org | +| | | | | | | | Candida | https://craig.biz | +| | | | | | | | Timmothy | https://joanny.biz | +| Lead Markets Developer | 2.6.5 | Expression | We need to program the digital HTTP sensor! | | Use the auxiliary EXE application, then you can hack the auxiliary application! | http://dean.name | Larry | http://luella.info | +| | | | | | | | Van | http://eugene.biz | +| | | | | | | | Albina | https://leann.net | +| Senior Identity Designer | 9.9.3 | Ignored | | | You can't navigate the bandwidth without compressing the open-source AI bandwidth! | https://devyn.info | | | +| Corporate Factors Architect | 4.7.7 | Ignored | If we input the panel, we can get to the COM panel through the optical COM panel! | connecting the application won't do anything, we need to synthesize the 1080p PCI application! | | | Ila | http://rachel.com | +| | | | | | | | Catalina | http://jolie.com | +| | | | | | | | Dianna | https://leda.net | +| | | | | | | | Nicola | http://aleen.name | +| | | | | | | | Nelda | http://delpha.net | +| | | | | | | | Delores | http://rae.biz | +| | | | | | | | Cynthia | https://zella.com | +| | | | | | | | Greta | http://adolph.com | +| Dynamic Data Director | 8.6.8 | Overwrite | | | We need to back up the primary SMTP circuit! | https://timothy.info | Kirsten | http://madisyn.com | +| | | | | | | | Murray | https://destinee.com | +| | | | | | | | Emanuel | https://keely.info | +| | | | | | | | Obie | https://caleigh.net | +| | | | | | | | Albin | http://flavie.com | +| | | | | | | | Lavonne | http://kaitlyn.com | +| | | | | | | | Osborne | https://joesph.name | +| | | | | | | | Michael | https://kali.com | +| Investor Usability Producer | 9.7.6 | Url | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | Jett | https://randal.biz | +| | | | | | | | Leif | http://chaz.name | +| | | | | | | | Tristian | http://susie.com | +| | | | | | | | Carmelo | https://kariane.com | +| | | | | | | | Sofia | http://daphnee.name | +| | | | | | | | Nedra | http://orland.info | +| | | | | | | | Hilton | http://shany.info | +| Regional Paradigm Assistant | 9.8.0 | Url | | If we input the transmitter, we can get to the HDD transmitter through the bluetooth HDD transmitter! | | | Jordan | https://kathryne.name | +| | | | | | | | Mayra | http://lance.name | +| | | | | | | | Jimmie | https://lorine.org | +| | | | | | | | Rebeka | https://malika.org | +| | | | | | | | Trinity | http://fritz.info | +| | | | | | | | Neha | https://marianne.name | +| | | | | | | | Colin | https://billie.biz | +| | | | | | | | Brielle | https://brennon.name | +| | | | | | | | Myriam | https://rosemary.name | +| International Assurance Executive | 2.8.5 | Ignored | The RSS driver is down, transmit the solid state driver so we can transmit the RSS driver! | | We need to parse the optical FTP driver! | http://antonina.com | Alvah | http://otha.name | +| | | | | | | | Natasha | https://nyah.com | +| | | | | | | | Oliver | http://ettie.biz | +| | | | | | | | Lonny | https://onie.org | +| | | | | | | | Cassie | http://solon.net | +| | | | | | | | Buck | http://taryn.com | +| | | | | | | | Hilton | http://isabel.com | +| Chief Data Orchestrator | 4.3.2 | Ignored | | | We need to back up the multi-byte SCSI transmitter! | http://gaylord.com | Taya | http://micaela.biz | +| | | | | | | | Evert | http://tomas.net | +| | | | | | | | Brett | http://virginie.net | +| Product Infrastructure Supervisor | 8.1.1 | Ignored | | | | https://merle.com | | | +| Human Accounts Executive | 7.6.7 | Unknown | Use the auxiliary PNG interface, then you can generate the auxiliary interface! | | You can't connect the interface without backing up the optical SMTP interface! | http://kristin.net | Seamus | http://maybell.info | +| | | | | | | | Monserrat | http://katrine.name | +| | | | | | | | Abel | https://geovany.com | +| | | | | | | | Diana | http://eula.name | +| | | | | | | | Raphael | https://zackery.info | +| Legacy Metrics Planner | 9.5.0 | Ignored | 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! | | | | +| Corporate Data Supervisor | 3.9.4 | Overwrite | | | | http://andres.net | Adelbert | https://zoe.com | +| | | | | | | | Clare | https://bobby.info | +| | | | | | | | Cecil | https://kira.net | +| Dynamic Program Analyst | 7.8.7 | Overwrite | I'll parse the wireless PCI array, that should array the PCI array! | | Use the cross-platform SAS card, then you can index the cross-platform card! | | Guido | http://reinhold.biz | +| | | | | | | | Albertha | http://robyn.net | +| | | | | | | | Eula | https://rosanna.com | +| | | | | | | | Kian | https://lia.net | +| | | | | | | | Manley | http://bridget.name | +| Lead Integration Engineer | 8.7.4 | Unknown | | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | http://jackeline.biz | Reanna | http://buck.net | +| | | | | | | | Christine | http://demarco.name | +| | | | | | | | Marge | http://astrid.net | +| | | | | | | | Charlene | http://rod.net | +| Legacy Creative Liaison | 0.4.6 | Expression | | The SMS system is down, back up the open-source system so we can back up the SMS system! | I'll connect the optical FTP program, that should program the FTP program! | | Candice | http://linnea.com | +| | | | | | | | Everardo | http://daryl.net | +| | | | | | | | Jerrod | http://laila.com | +| | | | | | | | Caleigh | https://adolfo.com | +| | | | | | | | Daisha | http://justine.biz | +| | | | | | | | Americo | http://tessie.org | +| | | | | | | | Howard | https://luis.info | +| Corporate Tactics Analyst | 3.0.8 | Overwrite | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | Use the virtual RAM monitor, then you can override the virtual monitor! | | | Hildegard | http://conner.name | +| | | | | | | | 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 | +| | | | | | | | Irving | https://sydnie.org | +| Dynamic Quality Officer | 8.9.2 | Ignored | | | | https://danika.org | Jadon | https://amelia.biz | +| | | | | | | | Toni | http://angie.name | +| | | | | | | | Ardella | http://melissa.net | +| | | | | | | | Sandra | http://pearline.org | +| | | | | | | | Noble | https://dusty.net | +| Principal Brand Developer | 2.6.5 | Expression | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | Edmund | http://sadie.info | +| | | | | | | | Horacio | https://loraine.name | +| | | | | | | | Sandra | https://emil.info | +| | | | | | | | Dayana | https://leila.info | +| | | | | | | | Micah | http://darien.com | +| | | | | | | | Ethel | http://shakira.net | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -------------------- | ---------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc71da1ff4603267.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc71da1ff4603267.verified.txt new file mode 100644 index 00000000..7f86595e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fc71da1ff4603267.verified.txt @@ -0,0 +1,29 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | +| Future Integration Analyst | 9.0.4 | Expression | | | Abner | http://tavares.info | +| | | | | | Johann | http://andres.net | +| | | | | | Jaquan | http://carey.org | +| | | | | | Arvel | http://mortimer.org | +| | | | | | Alicia | http://paula.com | +| | | | | | Heidi | http://letha.name | +| | | | | | Reid | https://amely.info | +| | | | | | Nikki | https://mckayla.info | +| | | | | | Kiara | https://floyd.net | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Paige | https://remington.info | +| | | | | | Aletha | https://isobel.info | +| | | | | | Pearline | https://johnathon.info | +| | | | | | Eleanora | http://jaeden.info | +| | | | | | Nikolas | https://daphney.net | +| | | | | | Oceane | http://clifton.com | +| | | | | | Francisco | http://bessie.com | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | http://marina.com | Myles | http://nikko.name | +| | | | | | Rolando | http://nikko.name | +| | | | | | Pamela | https://aliza.net | +| | | | | | Marcella | http://helga.net | +| | | | | | Alisha | http://alyson.name | +| | | | | | Carmelo | http://michele.name | +| | | | | | Miles | https://freddie.com | +| | | | | | Kade | https://jaunita.biz | +| | | | | | Marcelina | http://donna.net | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fd8fe6e3bbbf0187.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fd8fe6e3bbbf0187.verified.txt new file mode 100644 index 00000000..a236e151 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fd8fe6e3bbbf0187.verified.txt @@ -0,0 +1,33 @@ +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | +| Legacy Interactions Analyst | 3.0.8 | Url | hacking the hard drive won't do anything, we need to generate the open-source RSS hard drive! | connecting the system won't do anything, we need to synthesize the mobile ADP system! | | | | | +| Principal Functionality Agent | 1.5.3 | Unknown | 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 Assurance Officer | 0.3.1 | Ignored | I'll navigate the digital CSS sensor, that should sensor the CSS sensor! | | | https://clementine.info | | | +| Corporate Group Planner | 9.2.2 | Ignored | | | We need to reboot the virtual RSS alarm! | | | | +| National Directives Analyst | 8.2.7 | Overwrite | We need to compress the primary GB array! | | Use the mobile SCSI bus, then you can program the mobile bus! | | | | +| Central Marketing Assistant | 9.5.8 | Overwrite | I'll navigate the redundant RAM capacitor, that should capacitor the RAM capacitor! | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | http://julia.biz | | | +| Product Infrastructure Supervisor | 8.1.1 | Ignored | | | | https://merle.com | | | +| Regional Solutions Supervisor | 1.8.2 | Ignored | You can't parse the system without compressing the haptic GB system! | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | https://lance.net | | | +| Forward Factors Director | 5.7.8 | Expression | | | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | | | +| Senior Optimization Assistant | 3.6.0 | Ignored | | overriding the pixel won't do anything, we need to copy the optical JSON pixel! | Try to compress the SMS bus, maybe it will compress the bluetooth bus! | http://akeem.info | | | +| District Branding Analyst | 1.9.5 | Unknown | | | | https://paula.net | | | +| Principal Branding Assistant | 8.2.6 | Expression | 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! | We need to hack the auxiliary COM hard drive! | | | | +| Corporate Tactics Strategist | 9.9.9 | Ignored | | copying the alarm won't do anything, we need to index the open-source TCP alarm! | generating the matrix won't do anything, we need to parse the solid state GB matrix! | | | | +| Senior Identity Designer | 9.9.3 | Ignored | | | You can't navigate the bandwidth without compressing the open-source AI bandwidth! | https://devyn.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! | | | | | +| Legacy Metrics Planner | 9.5.0 | Ignored | 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! | | | | +| Forward Creative Developer | 9.6.7 | Unknown | | I'll transmit the online SSL feed, that should feed the SSL feed! | We need to synthesize the cross-platform SMS circuit! | http://pearline.com | | | +| District Optimization Manager | 4.0.4 | Ignored | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | Try to program the CSS circuit, maybe it will program the auxiliary circuit! | | | | +| Forward Integration Assistant | 4.8.5 | Expression | | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | | | +| Legacy Research Associate | 9.9.5 | Url | | We need to navigate the bluetooth RAM bus! | | https://hildegard.name | | | +| Central Infrastructure Agent | 6.1.6 | Expression | | | You can't quantify the program without overriding the online SDD program! | | | | +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------- | --------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fd950cc8aee53a91.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fd950cc8aee53a91.verified.txt new file mode 100644 index 00000000..83c62da1 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fd950cc8aee53a91.verified.txt @@ -0,0 +1,46 @@ +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | Error | Error Context | +| ----------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------- | --------- | ---------------------- | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| Legacy Research Officer | 0.5.1 | Expression | | | http://van.biz | Leann | https://johnny.name | +| | | | | | | Jamal | http://rodger.com | +| | | | | | | Lazaro | https://gaylord.name | +| | | | | | | Bret | https://jewell.net | +| | | | | | | Khalil | http://aiyana.com | +| | | | | | | Uriel | http://ignatius.info | +| | | | | | | Edgardo | http://laverna.com | +| | | | | | | Khalil | https://mona.org | +| Principal Metrics Facilitator | 3.3.7 | Unknown | You can't synthesize the system without calculating the 1080p ADP system! | | http://marina.com | Myles | http://nikko.name | +| | | | | | | Rolando | http://nikko.name | +| | | | | | | Pamela | https://aliza.net | +| | | | | | | Marcella | http://helga.net | +| | | | | | | Alisha | http://alyson.name | +| | | | | | | Carmelo | http://michele.name | +| | | | | | | Miles | https://freddie.com | +| | | | | | | Kade | https://jaunita.biz | +| | | | | | | Marcelina | http://donna.net | +| Future Integration Analyst | 9.0.4 | Expression | | | | Abner | http://tavares.info | +| | | | | | | Johann | http://andres.net | +| | | | | | | Jaquan | http://carey.org | +| | | | | | | Arvel | http://mortimer.org | +| | | | | | | Alicia | http://paula.com | +| | | | | | | Heidi | http://letha.name | +| | | | | | | Reid | https://amely.info | +| | | | | | | Nikki | https://mckayla.info | +| | | | | | | Kiara | https://floyd.net | +| Investor Tactics Strategist | 1.6.5 | Url | | Try to back up the AI card, maybe it will back up the cross-platform card! | http://arch.biz | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fef1283356ba29a3.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fef1283356ba29a3.verified.txt new file mode 100644 index 00000000..2b10c307 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fef1283356ba29a3.verified.txt @@ -0,0 +1,127 @@ +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | Error | Error Context | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | +| Global Mobility Technician | 8.6.3 | Unknown | | We need to input the haptic XML port! | | Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante,Brittany Mante | | Lonie | http://wilburn.org | +| | | | | | | | | Concepcion | http://ed.org | +| | | | | | | | | Amanda | https://sophie.net | +| | | | | | | | | Claudine | http://ofelia.biz | +| | | | | | | | | Petra | http://clare.name | +| | | | | | | | | Ozella | https://verla.name | +| | | | | | | | | Denis | http://pete.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 | | Alyson | https://carmelo.biz | +| | | | | | | | | Michele | https://miles.net | +| | | | | | | | | Freddie | http://kade.net | +| | | | | | | | | Jaunita | http://marcelina.biz | +| Product Data Liaison | 7.8.8 | Unknown | Try to calculate the GB card, maybe it will calculate the wireless card! | | The GB bus is down, compress the virtual bus so we can compress the GB bus! | | | Dexter | https://quincy.info | +| | | | | | | | | Lewis | https://alisa.com | +| | | | | | | | | Delores | https://layne.name | +| | | | | | | | | Delphine | https://katlynn.org | +| | | | | | | | | Meredith | https://johanna.info | +| | | | | | | | | Jacklyn | https://kadin.com | +| | | | | | | | | Hardy | https://donna.info | +| International Research Architect | 3.7.4 | Ignored | | Try to quantify the USB application, maybe it will quantify the mobile application! | If we index the pixel, we can get to the AI pixel through the wireless AI pixel! | | | Madisen | http://raegan.biz | +| | | | | | | | | Cathy | http://giovanna.info | +| | | | | | | | | Ike | https://jerome.biz | +| Investor Division Assistant | 9.6.2 | Url | | I'll parse the primary PCI matrix, that should matrix the PCI matrix! | | | | Nya | http://sunny.biz | +| | | | | | | | | Arlo | https://cordia.info | +| | | | | | | | | Linnie | https://marcos.name | +| | | | | | | | | Luella | http://frederic.name | +| | | | | | | | | Lucinda | https://dion.name | +| | | | | | | | | Jayson | https://ryleigh.net | +| | | | | | | | | Mervin | https://lorenza.net | +| Corporate Marketing Strategist | 3.8.5 | Ignored | | | Use the redundant JSON application, then you can program the redundant application! | Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch,Emilio Lynch | | Naomi | http://mckenna.net | +| | | | | | | | | Jalyn | https://katharina.name | +| | | | | | | | | Kane | http://beulah.biz | +| | | | | | | | | Eleanora | http://birdie.net | +| | | | | | | | | Alvah | http://keanu.net | +| National Accountability Producer | 6.9.7 | Unknown | I'll reboot the solid state CSS feed, that should feed the CSS feed! | | | | https://linwood.biz | Travon | https://dedrick.name | +| | | | | | | | | Elissa | http://kaci.org | +| | | | | | | | | Brandi | https://aniyah.com | +| | | | | | | | | Tyson | https://bonita.org | +| | | | | | | | | Jazlyn | http://madonna.net | +| | | | | | | | | Deangelo | https://jess.info | +| | | | | | | | | Alvah | https://hans.net | +| Principal Brand Developer | 2.6.5 | Unknown | Try to hack the TCP circuit, maybe it will hack the auxiliary circuit! | programming the alarm won't do anything, we need to calculate the neural RAM alarm! | | | | Helga | https://jermey.info | +| | | | | | | | | Wilfrid | https://josianne.org | +| | | | | | | | | Vivian | http://gertrude.biz | +| | | | | | | | | Renee | https://gabrielle.net | +| | | | | | | | | Jedediah | http://amber.info | +| Dynamic Solutions Assistant | 5.6.4 | Ignored | navigating the alarm won't do anything, we need to copy the 1080p AGP alarm! | | | Craig Halvorson,Craig Halvorson,Craig Halvorson,Craig Halvorson | http://isabell.info | Tess | http://kailyn.info | +| | | | | | | | | Eileen | http://manley.name | +| | | | | | | | | Conor | https://glenna.name | +| | | | | | | | | Sylvester | http://gaylord.biz | +| | | | | | | | | Maxime | https://tom.com | +| Chief Solutions Administrator | 0.4.1 | Unknown | | 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 | Shaun | https://antwan.org | +| | | | | | | | | Hazel | https://forrest.net | +| | | | | | | | | Brianne | https://dorothea.name | +| | | | | | | | | Don | http://torey.com | +| | | | | | | | | Cedrick | https://zachariah.net | +| | | | | | | | | Marcelle | https://adah.org | +| | | | | | | | | Barney | http://erica.org | +| | | | | | | | | Jordi | https://alysha.com | +| | | | | | | | | Kristina | https://pattie.info | +| | | | | | | | | Cory | http://kailey.com | +| International Intranet Planner | 1.3.4 | Expression | 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 | Ahmad | https://lupe.com | +| | | | | | | | | Randi | https://jaiden.biz | +| | | | | | | | | Patience | https://marlene.name | +| | | | | | | | | Lenna | https://franco.name | +| | | | | | | | | Kyleigh | https://tevin.name | +| | | | | | | | | Sallie | https://jordane.name | +| | | | | | | | | Willy | https://daija.info | +| | | | | | | | | Jannie | https://retta.net | +| | | | | | | | | Lottie | http://yasmine.com | +| | | | | | | | | Delia | http://khalil.com | +| Investor Operations Director | 5.6.0 | Expression | Try to input the AI microchip, maybe it will input the 1080p microchip! | | If we synthesize the sensor, we can get to the AI sensor through the redundant AI sensor! | | https://alene.info | Elouise | https://ron.com | +| | | | | | | | | Brown | https://cordia.com | +| | | | | | | | | Ericka | https://eugene.com | +| | | | | | | | | Rashad | http://thomas.com | +| | | | | | | | | Antonia | https://marcelle.org | +| Dynamic Group Associate | 6.6.1 | Ignored | We need to input the open-source SMTP bus! | | | | http://kian.name | Burley | http://lemuel.com | +| | | | | | | | | Brenden | http://agnes.net | +| | | | | | | | | Urban | https://micheal.name | +| | | | | | | | | Ida | https://murray.org | +| | | | | | | | | Samanta | http://assunta.biz | +| | | | | | | | | Florencio | http://bradford.info | +| | | | | | | | | Marcella | http://ray.net | +| | | | | | | | | Gunnar | https://elissa.net | +| | | | | | | | | Maud | https://edgar.name | +| | | | | | | | | Angelina | https://adonis.biz | +| Principal Assurance Representative | 3.8.2 | Ignored | | | | Patsy Erdman,Patsy Erdman,Patsy Erdman,Patsy Erdman | | Jadon | https://amelia.biz | +| | | | | | | | | Toni | http://angie.name | +| | | | | | | | | Ardella | http://melissa.net | +| | | | | | | | | Sandra | http://pearline.org | +| | | | | | | | | Noble | https://dusty.net | +| Product Interactions Planner | 7.4.0 | Expression | Try to navigate the PCI matrix, maybe it will navigate the haptic matrix! | | | Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson,Edwin Wilkinson | http://bertha.net | Rey | https://connie.info | +| | | | | | | | | Hollie | http://rico.name | +| | | | | | | | | Marshall | http://pierce.org | +| | | | | | | | | 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 | +| Future Data Manager | 2.5.9 | Expression | | | | | | Abner | http://tavares.info | +| | | | | | | | | Johann | http://andres.net | +| | | | | | | | | Jaquan | http://carey.org | +| | | | | | | | | Arvel | http://mortimer.org | +| | | | | | | | | Alicia | http://paula.com | +| | | | | | | | | Heidi | http://letha.name | +| | | | | | | | | Reid | https://amely.info | +| | | | | | | | | Nikki | https://mckayla.info | +| | | | | | | | | Kiara | https://floyd.net | +| District Quality Associate | 3.9.7 | Ignored | | I'll connect the optical FTP program, that should program the FTP program! | | Julius Abbott | http://celestine.info | Ettie | http://lonny.net | +| | | | | | | | | Onie | https://cassie.biz | +| | | | | | | | | Solon | https://buck.biz | +| Global Mobility Facilitator | 8.5.9 | Url | | We need to parse the primary PCI protocol! | | Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch,Wilbert Bauch | https://itzel.info | Mitchel | http://carleton.name | +| | | | | | | | | Madalyn | http://narciso.net | +| | | | | | | | | Mia | http://nicklaus.net | +| | | | | | | | | Abelardo | http://carolina.name | +| Forward Tactics Agent | 6.8.8 | Url | | We need to back up the primary SMTP circuit! | The COM bandwidth is down, input the auxiliary bandwidth so we can input the COM bandwidth! | Jon Schulist,Jon Schulist | https://flo.info | Diana | http://eula.name | +| | | | | | | | | Raphael | https://zackery.info | +| | | | | | | | | Nettie | https://brayan.com | +| Investor Tactics Strategist | 1.6.5 | Unknown | | Try to back up the AI card, maybe it will back up the cross-platform card! | | Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer,Rene Sporer | http://arch.biz | Rosendo | https://pierce.name | +| | | | | | | | | Braeden | http://ayana.org | +| | | | | | | | | Avery | http://jarret.biz | +| | | | | | | | | Clarissa | https://audreanne.name | +| ---------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | --------------------- | ---------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fef4ccb7bd6c74ab.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fef4ccb7bd6c74ab.verified.txt new file mode 100644 index 00000000..b8beb5f2 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicensesWithErrors_Should_PrintCorrectTable_fef4ccb7bd6c74ab.verified.txt @@ -0,0 +1,31 @@ +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | Error | Error Context | +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | +| Dynamic Mobility Technician | 6.0.2 | Expression | | | https://keeley.net | | | +| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | | Paige | https://remington.info | +| | | | | | | Aletha | https://isobel.info | +| | | | | | | Pearline | https://johnathon.info | +| | | | | | | Eleanora | http://jaeden.info | +| | | | | | | Nikolas | https://daphney.net | +| | | | | | | Oceane | http://clifton.com | +| | | | | | | Francisco | http://bessie.com | +| 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 | | | +| Customer Operations Liaison | 9.0.9 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | | | | +| Future Directives Planner | 5.9.7 | Ignored | Use the wireless ADP array, then you can input the wireless array! | Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki | | | | +| Investor Interactions Designer | 1.9.4 | Overwrite | | | https://octavia.name | | | +| Dynamic Integration Assistant | 2.1.6 | Unknown | | | https://gerson.info | | | +| District Mobility Administrator | 3.2.3 | Unknown | | Christopher Dietrich,Christopher Dietrich,Christopher Dietrich,Christopher Dietrich | | | | +| Future Optimization Associate | 4.0.5 | Unknown | | Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel | https://linnie.net | | | +| Legacy Response Analyst | 9.2.7 | Unknown | | Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata | http://martine.info | | | +| Dynamic Applications Director | 5.1.4 | Unknown | | Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel | | | | +| Future Tactics Producer | 5.8.9 | Url | navigating the pixel won't do anything, we need to parse the back-end IB pixel! | | | | | +| Central Applications Coordinator | 1.6.8 | Ignored | | | http://curtis.com | | | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | | | +| Forward Division Strategist | 5.7.1 | Expression | You can't reboot the program without transmitting the mobile SMTP program! | Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode | https://esperanza.name | | | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | | | +| Regional Integration Consultant | 5.3.8 | Expression | | | http://michael.name | | | +| Human Implementation Producer | 0.9.1 | Url | | | | | | +| Principal Factors Producer | 0.8.5 | Unknown | connecting the system won't do anything, we need to override the back-end SQL system! | Devin Nolan | http://toby.info | | | +| Global Integration Assistant | 5.0.1 | Unknown | | | http://demarco.com | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | | | +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | --------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_00d2315fe9578442.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_00d2315fe9578442.verified.txt new file mode 100644 index 00000000..f97b355d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_00d2315fe9578442.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_019787a856a16ad2.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_019787a856a16ad2.verified.txt new file mode 100644 index 00000000..171c4a01 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_019787a856a16ad2.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | +| Package | Version | License Information Origin | License Expression | +| ------- | ------- | -------------------------- | ------------------ | +| ------- | ------- | -------------------------- | ------------------ | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_0314779574b30847.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_0314779574b30847.verified.txt new file mode 100644 index 00000000..e0936383 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_0314779574b30847.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | +| Package | Version | License Information Origin | +| ------- | ------- | -------------------------- | +| ------- | ------- | -------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_04c7618456407021.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_04c7618456407021.verified.txt new file mode 100644 index 00000000..e0936383 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_04c7618456407021.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | +| Package | Version | License Information Origin | +| ------- | ------- | -------------------------- | +| ------- | ------- | -------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_0544bb1ec3c42cdc.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_0544bb1ec3c42cdc.verified.txt new file mode 100644 index 00000000..e0936383 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_0544bb1ec3c42cdc.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | +| Package | Version | License Information Origin | +| ------- | ------- | -------------------------- | +| ------- | ------- | -------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_0743411a34e69cf6.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_0743411a34e69cf6.verified.txt new file mode 100644 index 00000000..ecae40f7 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_0743411a34e69cf6.verified.txt @@ -0,0 +1,104 @@ +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | +| Internal Program Designer | 7.2.5 | Ignored | We need to hack the auxiliary COM hard drive! | | | | +| Global Implementation Strategist | 5.9.8 | Ignored | | | Colleen Schroeder,Colleen Schroeder | https://enos.info | +| Customer Assurance Officer | 0.3.1 | Ignored | I'll navigate the digital CSS sensor, that should sensor the CSS sensor! | | | https://clementine.info | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | +| Customer Division Manager | 1.3.9 | Ignored | 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! | Rafael Altenwerth,Rafael Altenwerth,Rafael Altenwerth | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | +| International Optimization Coordinator | 6.5.5 | Ignored | | | Darnell Terry | http://antoinette.org | +| International Tactics Administrator | 9.9.9 | Url | | | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | +| Legacy Interactions Supervisor | 9.7.2 | Ignored | | Try to generate the SAS matrix, maybe it will generate the cross-platform matrix! | Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn | | +| Chief Infrastructure Specialist | 9.0.5 | Overwrite | hacking the port won't do anything, we need to back up the optical SMS port! | | Jackie Schumm | | +| International Brand Strategist | 3.9.3 | Url | | | Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy | https://rowena.info | +| Human Paradigm Assistant | 8.8.8 | Expression | | | Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich | | +| Forward Data Orchestrator | 3.3.5 | Expression | Use the haptic XML driver, then you can index the haptic driver! | compressing the system won't do anything, we need to compress the optical RSS system! | | | +| Global Identity Supervisor | 0.9.1 | Overwrite | | | | | +| Customer Metrics Developer | 2.2.9 | Ignored | | | Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir | | +| Senior Paradigm Analyst | 1.1.1 | Ignored | | If we navigate the alarm, we can get to the XML alarm through the cross-platform XML alarm! | | | +| Human Markets Planner | 5.0.1 | Expression | Try to back up the COM driver, maybe it will back up the bluetooth driver! | | | | +| Principal Brand Executive | 7.2.7 | Unknown | | | | https://dariana.com | +| Corporate Intranet Analyst | 0.9.0 | Ignored | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp | http://hanna.net | +| Customer Program Developer | 2.9.8 | Expression | | You can't transmit the pixel without calculating the bluetooth FTP pixel! | | http://lenora.com | +| Dynamic Security Specialist | 7.8.5 | Overwrite | Try to input the GB pixel, maybe it will input the wireless pixel! | You can't transmit the bus without indexing the digital TCP bus! | Guy Waters,Guy Waters | http://nova.biz | +| Human Program Analyst | 3.1.8 | Expression | If we back up the application, we can get to the USB application through the cross-platform USB application! | | | http://efrain.org | +| Product Directives Engineer | 8.2.3 | Unknown | transmitting the bus won't do anything, we need to navigate the online IB bus! | | Maggie Lindgren | | +| Customer Web Assistant | 1.9.0 | Unknown | | | | | +| Direct Division Officer | 6.5.6 | Url | transmitting the protocol won't do anything, we need to generate the multi-byte THX protocol! | | Glenda Schuppe,Glenda Schuppe | http://catherine.name | +| Product Solutions Manager | 9.5.2 | Overwrite | I'll hack the primary SDD card, that should card the SDD card! | hacking the transmitter won't do anything, we need to index the open-source CSS transmitter! | Sergio Bailey,Sergio Bailey,Sergio Bailey | | +| Regional Optimization Administrator | 3.6.4 | Expression | | I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive! | | http://serenity.info | +| Dynamic Data Technician | 4.2.3 | Url | I'll copy the optical RAM feed, that should feed the RAM feed! | | June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds | http://nia.info | +| International Solutions Planner | 9.0.0 | Url | Use the multi-byte SMTP program, then you can synthesize the multi-byte program! | | | | +| Principal Operations Assistant | 0.9.0 | Url | I'll copy the auxiliary HDD bus, that should bus the HDD bus! | I'll copy the digital USB circuit, that should circuit the USB circuit! | | | +| Future Configuration Officer | 7.6.0 | Unknown | You can't compress the alarm without parsing the optical JBOD alarm! | I'll compress the back-end SSL system, that should system the SSL system! | Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie | | +| Lead Program Technician | 5.8.9 | Expression | | We need to transmit the back-end AGP sensor! | Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer | http://curtis.org | +| Dynamic Security Director | 0.0.2 | Url | transmitting the feed won't do anything, we need to navigate the redundant SDD feed! | Try to parse the HTTP port, maybe it will parse the bluetooth port! | Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block | | +| Human Tactics Facilitator | 5.7.0 | Url | Try to bypass the HTTP application, maybe it will bypass the digital application! | | | | +| 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 Accounts Facilitator | 7.7.8 | Expression | | | Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman | http://scottie.biz | +| Customer Mobility Assistant | 4.2.9 | 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 | http://adonis.biz | +| Central Implementation Planner | 7.6.0 | Ignored | | Try to generate the HDD panel, maybe it will generate the solid state panel! | | | +| Global Optimization Architect | 1.5.0 | Unknown | Try to navigate the SCSI sensor, maybe it will navigate the mobile sensor! | | | | +| Dynamic Implementation Engineer | 6.7.1 | Overwrite | We need to transmit the open-source EXE interface! | | | http://margie.info | +| National Assurance Planner | 2.7.7 | Unknown | | I'll reboot the online AGP alarm, that should alarm the AGP alarm! | Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag | | +| Senior Configuration Developer | 4.0.9 | Url | Use the primary SCSI matrix, then you can program the primary matrix! | If we parse the interface, we can get to the JSON interface through the mobile JSON interface! | Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle | | +| International Division Architect | 8.2.4 | Ignored | | | Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins | http://murphy.name | +| Forward Factors Architect | 6.7.6 | Ignored | | The THX transmitter is down, program the neural transmitter so we can program the THX transmitter! | Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts | | +| Customer Branding Orchestrator | 8.3.7 | Overwrite | | We need to bypass the neural USB capacitor! | Nora Dietrich | http://nona.com | +| Product Functionality Supervisor | 9.4.5 | Overwrite | Use the 1080p AI microchip, then you can reboot the 1080p microchip! | Use the open-source ADP matrix, then you can copy the open-source matrix! | | | +| Legacy Security Facilitator | 1.9.0 | Expression | | Use the cross-platform ADP alarm, then you can back up the cross-platform alarm! | | https://edythe.info | +| Investor Research Coordinator | 1.9.7 | Ignored | Use the cross-platform GB bus, then you can calculate the cross-platform bus! | | | https://maegan.name | +| Principal Intranet Architect | 4.9.3 | Unknown | | | | | +| Chief Program Associate | 2.6.7 | Unknown | We need to compress the optical PNG array! | | Wilbert Kunze,Wilbert Kunze,Wilbert Kunze,Wilbert Kunze | http://coy.info | +| Customer Communications Engineer | 6.9.4 | Overwrite | | | Tanya Reinger,Tanya Reinger,Tanya Reinger | http://tito.name | +| Lead Solutions Technician | 1.5.7 | Unknown | | | | | +| International Branding Producer | 3.8.2 | Expression | We need to generate the solid state AGP microchip! | | | | +| Lead Operations Supervisor | 4.5.2 | Expression | The AI panel is down, transmit the open-source panel so we can transmit the AI panel! | | | | +| Dynamic Factors Associate | 1.8.3 | Unknown | | You can't navigate the panel without calculating the open-source THX panel! | | http://dovie.name | +| Corporate Marketing Coordinator | 3.6.1 | Overwrite | | | | https://marcos.org | +| Regional Metrics Strategist | 1.2.1 | Unknown | | Try to override the GB driver, maybe it will override the digital driver! | | | +| Principal Factors Representative | 4.5.7 | Ignored | Try to input the RAM interface, maybe it will input the bluetooth interface! | The GB card is down, hack the digital card so we can hack the GB card! | Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker | https://imelda.org | +| Principal Security Producer | 7.3.3 | Ignored | You can't generate the interface without quantifying the mobile FTP interface! | Use the digital SMTP bandwidth, then you can generate the digital bandwidth! | | http://jarrell.biz | +| Human Accounts Orchestrator | 4.1.6 | Url | | | | | +| Regional Functionality Agent | 5.9.9 | Overwrite | We need to index the 1080p SAS hard drive! | I'll connect the digital JBOD application, that should application the JBOD application! | Gloria Williamson,Gloria Williamson,Gloria Williamson,Gloria Williamson | http://arthur.net | +| Regional Identity Engineer | 1.9.4 | Ignored | | The HTTP microchip is down, copy the digital microchip so we can copy the HTTP microchip! | Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston | | +| Dynamic Solutions Agent | 0.0.5 | Overwrite | Use the haptic USB card, then you can navigate the haptic card! | | | | +| District Optimization Technician | 5.2.3 | Overwrite | | | Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti | https://douglas.info | +| District Assurance Technician | 8.5.5 | Overwrite | | | | http://zander.com | +| Regional Directives Liaison | 4.7.8 | Expression | If we connect the interface, we can get to the SCSI interface through the auxiliary SCSI interface! | | Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic | https://glennie.biz | +| Central Tactics Developer | 0.4.7 | Ignored | indexing the capacitor won't do anything, we need to program the haptic EXE capacitor! | The JBOD application is down, generate the solid state application so we can generate the JBOD application! | Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley | https://royal.name | +| Chief Factors Developer | 5.9.5 | Url | | Try to connect the ADP system, maybe it will connect the solid state system! | Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady | | +| Future Identity Agent | 8.8.0 | Ignored | I'll parse the 1080p USB protocol, that should protocol the USB protocol! | | | https://reva.name | +| Central Research Technician | 2.8.8 | Url | | You can't generate the program without connecting the bluetooth USB program! | | | +| Future Tactics Assistant | 1.5.5 | Expression | The IB sensor is down, reboot the virtual sensor so we can reboot the IB sensor! | If we calculate the matrix, we can get to the SMS matrix through the bluetooth SMS matrix! | | https://giovanny.net | +| District Interactions Supervisor | 4.5.2 | Url | The XSS capacitor is down, generate the bluetooth capacitor so we can generate the XSS capacitor! | The ADP firewall is down, input the primary firewall so we can input the ADP firewall! | | | +| Corporate Intranet Specialist | 3.5.6 | Expression | | | Edmund Lehner,Edmund Lehner,Edmund Lehner,Edmund Lehner | | +| Human Identity Representative | 4.1.5 | Overwrite | The SAS bus is down, program the neural bus so we can program the SAS bus! | | Joyce Auer,Joyce Auer,Joyce Auer | http://alyce.biz | +| Future Research Planner | 8.8.9 | Ignored | | | | https://yvette.com | +| Central Division Administrator | 1.0.4 | Overwrite | We need to program the optical COM microchip! | We need to hack the haptic SAS microchip! | | | +| Dynamic Division Representative | 7.3.5 | Unknown | | I'll index the haptic FTP alarm, that should alarm the FTP alarm! | Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson | http://taurean.net | +| Forward Usability Specialist | 5.6.9 | Overwrite | I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth! | | | | +| Direct Brand Director | 4.7.4 | Url | You can't navigate the capacitor without programming the solid state SQL capacitor! | | | | +| Global Optimization Engineer | 8.7.9 | Expression | | quantifying the transmitter won't do anything, we need to synthesize the auxiliary FTP transmitter! | | http://aniya.org | +| Lead Infrastructure Specialist | 7.2.6 | Ignored | | | Laura Abshire,Laura Abshire,Laura Abshire,Laura Abshire,Laura Abshire | https://wanda.com | +| Investor Quality Associate | 0.5.1 | Expression | | Try to reboot the SSL alarm, maybe it will reboot the solid state alarm! | Carrie Hansen,Carrie Hansen,Carrie Hansen,Carrie Hansen | https://ezequiel.biz | +| Investor Tactics Director | 0.4.3 | Expression | | | | https://aylin.com | +| Future Tactics Specialist | 0.2.2 | Ignored | We need to override the primary SQL pixel! | We need to transmit the redundant EXE driver! | Alejandro Cruickshank,Alejandro Cruickshank,Alejandro Cruickshank,Alejandro Cruickshank | | +| Global Paradigm Assistant | 8.0.5 | Expression | We need to calculate the solid state HTTP hard drive! | | | https://randy.org | +| Customer Solutions Officer | 4.5.2 | Expression | You can't copy the matrix without compressing the wireless AGP matrix! | | | https://rylan.name | +| Human Branding Coordinator | 5.8.1 | Ignored | | | | | +| 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 Branding Manager | 1.4.0 | Overwrite | You can't navigate the application without generating the cross-platform COM application! | Try to program the FTP alarm, maybe it will program the virtual alarm! | | http://dario.info | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_0911184c443d1de1.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_0911184c443d1de1.verified.txt new file mode 100644 index 00000000..97367809 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_0911184c443d1de1.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ------- | ------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_0a5a76f0add5ac7b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_0a5a76f0add5ac7b.verified.txt new file mode 100644 index 00000000..982ccbd9 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_0a5a76f0add5ac7b.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_0bb76a105dcc8e15.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_0bb76a105dcc8e15.verified.txt new file mode 100644 index 00000000..cd234fa7 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_0bb76a105dcc8e15.verified.txt @@ -0,0 +1,5 @@ +| ---------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | +| Package | Version | License Information Origin | License Expression | +| ---------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | +| ---------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_0c6febc546a1da82.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_0c6febc546a1da82.verified.txt new file mode 100644 index 00000000..e0936383 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_0c6febc546a1da82.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | +| Package | Version | License Information Origin | +| ------- | ------- | -------------------------- | +| ------- | ------- | -------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_1019848b651111b3.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_1019848b651111b3.verified.txt new file mode 100644 index 00000000..5d373604 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_1019848b651111b3.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | --------- | ------- | ------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | --------- | ------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | --------- | ------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_11a8f7de1f52f663.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_11a8f7de1f52f663.verified.txt new file mode 100644 index 00000000..08e39d47 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_11a8f7de1f52f663.verified.txt @@ -0,0 +1,24 @@ +| ----------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | +| ----------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------------- | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | +| Forward Quality Producer | 6.3.7 | Overwrite | The CSS microchip is down, back up the bluetooth microchip so we can back up the CSS microchip! | https://jayne.name | +| Regional Security Architect | 2.2.5 | Url | | | +| Global Usability Representative | 3.5.9 | Url | | | +| District Mobility Administrator | 3.2.3 | Ignored | | | +| Regional Solutions Supervisor | 1.8.2 | Ignored | You can't parse the system without compressing the haptic GB system! | https://lance.net | +| Customer Directives Director | 7.9.2 | Overwrite | Try to hack the COM panel, maybe it will hack the auxiliary panel! | | +| Chief Assurance Associate | 3.3.1 | Url | overriding the panel won't do anything, we need to parse the open-source IB panel! | https://tyrese.info | +| Customer Operations Officer | 2.6.0 | Overwrite | Use the bluetooth USB alarm, then you can override the bluetooth alarm! | http://antonette.org | +| Dynamic Security Technician | 6.8.3 | Unknown | | | +| Central Integration Analyst | 0.4.0 | Overwrite | If we synthesize the protocol, we can get to the JBOD protocol through the multi-byte JBOD protocol! | https://laverne.name | +| National Communications Facilitator | 3.1.0 | Url | quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter! | | +| Dynamic Functionality Agent | 5.9.5 | Unknown | | http://annabelle.net | +| Forward Functionality Analyst | 4.5.1 | Expression | | http://orie.name | +| District Branding Analyst | 1.9.5 | Url | | https://paula.net | +| Product Applications Assistant | 2.8.4 | Overwrite | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | https://carleton.info | +| Global Security Liaison | 8.1.2 | Expression | | | +| Central Interactions Manager | 7.0.9 | Expression | | | +| National Tactics Engineer | 3.7.5 | Url | generating the matrix won't do anything, we need to override the redundant GB matrix! | https://alexys.org | +| Dynamic Applications Director | 5.1.4 | Ignored | | | +| ----------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_12431d6c30ea0e02.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_12431d6c30ea0e02.verified.txt new file mode 100644 index 00000000..0670ed22 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_12431d6c30ea0e02.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | --------- | ------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | --------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | --------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_1466516dd9d0a6e7.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_1466516dd9d0a6e7.verified.txt new file mode 100644 index 00000000..e0936383 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_1466516dd9d0a6e7.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | +| Package | Version | License Information Origin | +| ------- | ------- | -------------------------- | +| ------- | ------- | -------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_15a0708baf3ce807.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_15a0708baf3ce807.verified.txt new file mode 100644 index 00000000..171c4a01 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_15a0708baf3ce807.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | +| Package | Version | License Information Origin | License Expression | +| ------- | ------- | -------------------------- | ------------------ | +| ------- | ------- | -------------------------- | ------------------ | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_15b5ba01e84fe0b0.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_15b5ba01e84fe0b0.verified.txt new file mode 100644 index 00000000..62de91e7 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_15b5ba01e84fe0b0.verified.txt @@ -0,0 +1,24 @@ +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ---------------------- | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | +| Investor Intranet Producer | 5.4.1 | Ignored | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | http://hyman.org | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | +| International Data Representative | 3.5.7 | Ignored | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | http://dakota.com | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | +| Regional Directives Supervisor | 4.9.8 | Ignored | Try to reboot the THX hard drive, maybe it will reboot the open-source hard drive! | Use the primary GB driver, then you can generate the primary driver! | https://malcolm.net | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | +| National Directives Analyst | 8.2.7 | Ignored | We need to compress the primary GB array! | | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | +| Dynamic Optimization Director | 3.4.6 | Ignored | The PNG protocol is down, index the digital protocol so we can index the PNG protocol! | I'll transmit the online SSL feed, that should feed the SSL feed! | https://maximilian.org | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_19f73af6e30abbb5.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_19f73af6e30abbb5.verified.txt new file mode 100644 index 00000000..b9fcea62 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_19f73af6e30abbb5.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | --------- | +| Package | Version | License Information Origin | License Expression | Copyright | +| ------- | ------- | -------------------------- | ------------------ | --------- | +| ------- | ------- | -------------------------- | ------------------ | --------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_1b0601daf1a6647f.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_1b0601daf1a6647f.verified.txt new file mode 100644 index 00000000..171c4a01 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_1b0601daf1a6647f.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | +| Package | Version | License Information Origin | License Expression | +| ------- | ------- | -------------------------- | ------------------ | +| ------- | ------- | -------------------------- | ------------------ | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_1ec01e8c932df2e3.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_1ec01e8c932df2e3.verified.txt new file mode 100644 index 00000000..f4fce8c7 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_1ec01e8c932df2e3.verified.txt @@ -0,0 +1,104 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ---------------------- | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | +| Investor Intranet Producer | 5.4.1 | Ignored | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | http://hyman.org | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | +| International Data Representative | 3.5.7 | Ignored | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | http://dakota.com | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | +| Regional Directives Supervisor | 4.9.8 | Ignored | Try to reboot the THX hard drive, maybe it will reboot the open-source hard drive! | Use the primary GB driver, then you can generate the primary driver! | https://malcolm.net | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | +| National Directives Analyst | 8.2.7 | Ignored | We need to compress the primary GB array! | | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | +| Dynamic Optimization Director | 3.4.6 | Ignored | The PNG protocol is down, index the digital protocol so we can index the PNG protocol! | I'll transmit the online SSL feed, that should feed the SSL feed! | https://maximilian.org | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | +| Investor Interactions Liaison | 4.4.9 | Overwrite | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | | +| Senior Optimization Assistant | 3.6.0 | Overwrite | | overriding the pixel won't do anything, we need to copy the optical JSON pixel! | http://akeem.info | +| Product Assurance Technician | 0.8.2 | Overwrite | | | https://steve.info | +| Central Web Assistant | 4.2.1 | Unknown | | Use the wireless ADP array, then you can input the wireless array! | https://verda.net | +| Legacy Directives Officer | 2.4.4 | Url | | The PCI program is down, hack the multi-byte program so we can hack the PCI program! | http://sedrick.biz | +| Chief Division Producer | 2.3.9 | Overwrite | | | | +| Direct Mobility Designer | 7.7.3 | Expression | | | http://geovanny.info | +| International Functionality Agent | 8.7.6 | Unknown | | If we hack the card, we can get to the JBOD card through the optical JBOD card! | http://jalyn.org | +| Customer Functionality Consultant | 5.5.1 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | http://terence.com | +| 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 | +| Investor Implementation Technician | 2.7.9 | Unknown | | | http://crystal.name | +| Direct Assurance Strategist | 1.3.7 | Expression | The RSS firewall is down, hack the neural firewall so we can hack the RSS firewall! | | | +| National Creative Assistant | 4.9.0 | Ignored | | If we navigate the pixel, we can get to the SCSI pixel through the bluetooth SCSI pixel! | https://michelle.org | +| Principal Markets Designer | 3.8.8 | Overwrite | overriding the transmitter won't do anything, we need to generate the cross-platform SCSI transmitter! | | | +| Forward Functionality Developer | 5.1.1 | Url | | | | +| Dynamic Branding Facilitator | 8.3.2 | Ignored | | | | +| Forward Division Strategist | 5.7.1 | Ignored | You can't reboot the program without transmitting the mobile SMTP program! | The SCSI circuit is down, index the open-source circuit so we can index the SCSI circuit! | https://esperanza.name | +| Global Program Representative | 5.1.0 | Url | | If we back up the monitor, we can get to the PCI monitor through the virtual PCI monitor! | | +| Corporate Marketing Assistant | 8.7.9 | Url | | You can't program the firewall without connecting the wireless AI firewall! | http://arlene.biz | +| Senior Factors Administrator | 1.6.1 | Expression | I'll calculate the solid state ADP panel, that should panel the ADP panel! | If we generate the circuit, we can get to the XSS circuit through the primary XSS circuit! | | +| Chief Applications Facilitator | 7.7.6 | Overwrite | | parsing the card won't do anything, we need to synthesize the online SQL card! | | +| Dynamic Quality Analyst | 0.9.5 | Overwrite | We need to index the optical HTTP application! | I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor! | | +| National Communications Orchestrator | 4.5.1 | Unknown | The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit! | | | +| Corporate Tactics Director | 2.5.7 | Url | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | http://marcos.info | +| Human Group Designer | 9.9.1 | Expression | Use the haptic XSS application, then you can synthesize the haptic application! | If we transmit the hard drive, we can get to the AGP hard drive through the bluetooth AGP hard drive! | http://jodie.org | +| National Research Facilitator | 6.0.6 | Expression | Use the primary EXE array, then you can navigate the primary array! | | | +| Regional Paradigm Manager | 8.9.8 | Ignored | | If we transmit the application, we can get to the SMS application through the primary SMS application! | https://eileen.name | +| Lead Branding Developer | 4.1.5 | Url | | | http://abe.com | +| Human Directives Engineer | 5.3.9 | Url | | | | +| National Applications Designer | 6.4.9 | Expression | | Use the back-end SMS feed, then you can program the back-end feed! | | +| Regional Factors Designer | 7.4.1 | Overwrite | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | | +| Global Division Designer | 8.2.7 | Expression | Try to program the EXE hard drive, maybe it will program the virtual hard drive! | | https://pamela.name | +| Dynamic Accountability Analyst | 4.9.7 | Overwrite | | | https://jaron.info | +| Regional Operations Coordinator | 0.2.5 | Unknown | | I'll hack the cross-platform SSL array, that should array the SSL array! | http://ena.com | +| Corporate Data Strategist | 9.0.0 | Ignored | | | http://eli.net | +| Future Accounts Agent | 0.9.7 | Ignored | | | | +| National Creative Coordinator | 5.9.5 | Expression | | | https://bobbie.info | +| District Operations Director | 0.6.3 | Url | | We need to program the cross-platform FTP hard drive! | https://dejah.net | +| Forward Marketing Orchestrator | 1.6.4 | Overwrite | I'll connect the primary SQL sensor, that should sensor the SQL sensor! | The SMTP driver is down, bypass the mobile driver so we can bypass the SMTP driver! | https://lukas.com | +| Lead Usability Assistant | 1.3.4 | Overwrite | quantifying the matrix won't do anything, we need to synthesize the wireless PCI matrix! | Use the solid state SQL firewall, then you can connect the solid state firewall! | https://duane.info | +| Human Quality Facilitator | 1.2.0 | Expression | We need to copy the online THX firewall! | You can't calculate the application without calculating the auxiliary AI application! | | +| Human Program Technician | 2.8.4 | Unknown | | | http://tomasa.info | +| International Quality Director | 0.3.8 | Expression | | | | +| Corporate Directives Planner | 8.8.5 | Unknown | The CSS bus is down, generate the 1080p bus so we can generate the CSS bus! | We need to back up the 1080p SMTP feed! | | +| Dynamic Accountability Strategist | 7.0.9 | Unknown | You can't bypass the sensor without transmitting the neural JSON sensor! | | | +| Chief Intranet Facilitator | 6.6.1 | Expression | | | https://rosalind.net | +| Global Security Coordinator | 1.7.9 | Ignored | | | https://carol.info | +| Forward Configuration Supervisor | 9.0.8 | Overwrite | You can't program the protocol without overriding the primary IB protocol! | | http://quinn.name | +| Product Creative Facilitator | 8.4.6 | Unknown | 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://juliana.net | +| Global Mobility Facilitator | 9.5.8 | Expression | | | | +| Chief Factors Supervisor | 5.2.2 | Expression | | | http://helga.com | +| Principal Accounts Coordinator | 1.0.4 | Overwrite | | I'll connect the digital JSON bus, that should bus the JSON bus! | http://rene.com | +| Customer Security Representative | 3.7.3 | Ignored | The GB circuit is down, hack the redundant circuit so we can hack the GB circuit! | | https://jalon.net | +| Future Accounts Architect | 9.1.8 | Url | You can't bypass the firewall without indexing the multi-byte COM firewall! | | https://fermin.biz | +| Investor Creative Architect | 8.2.4 | Unknown | | | | +| National Solutions Associate | 9.1.2 | Overwrite | | | | +| Customer Metrics Developer | 2.2.9 | Ignored | | | | +| Human Optimization Facilitator | 7.4.8 | Overwrite | 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! | https://cooper.name | +| Investor Research Manager | 6.3.1 | Ignored | | | | +| Human Directives Specialist | 4.3.4 | Unknown | Use the digital XSS hard drive, then you can compress the digital hard drive! | You can't generate the card without synthesizing the bluetooth PNG card! | | +| Dynamic Factors Facilitator | 6.5.2 | Expression | | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | http://magnolia.com | +| Central Tactics Engineer | 6.3.5 | Unknown | connecting the bandwidth won't do anything, we need to bypass the multi-byte AI bandwidth! | | | +| National Intranet Technician | 8.0.0 | Overwrite | | | | +| Senior Security Consultant | 2.7.5 | Unknown | | | http://adelbert.biz | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | http://hanna.net | +| Central Identity Analyst | 8.9.6 | Expression | | | http://leta.org | +| Senior Brand Analyst | 2.5.0 | Url | | overriding the interface won't do anything, we need to override the virtual THX interface! | | +| Internal Directives Designer | 0.4.8 | Url | The EXE protocol is down, reboot the redundant protocol so we can reboot the EXE protocol! | | | +| Dynamic Division Consultant | 4.8.7 | Overwrite | Use the multi-byte IB microchip, then you can connect the multi-byte microchip! | backing up the feed won't do anything, we need to compress the haptic SMTP feed! | http://raquel.net | +| Human Communications Supervisor | 6.0.1 | Ignored | Use the cross-platform SAS feed, then you can bypass the cross-platform feed! | | http://ethan.name | +| Human Operations Assistant | 0.7.2 | Overwrite | Use the haptic USB driver, then you can override the haptic driver! | | http://camila.net | +| Forward Intranet Engineer | 2.5.9 | Expression | The RSS sensor is down, input the 1080p sensor so we can input the RSS sensor! | Try to index the ADP port, maybe it will index the auxiliary port! | | +| Human Optimization Producer | 5.0.9 | Overwrite | | | | +| Dynamic Integration Architect | 1.6.3 | Overwrite | | The RAM feed is down, copy the neural feed so we can copy the RAM feed! | | +| Legacy Directives Supervisor | 9.6.2 | Url | The PNG circuit is down, back up the online circuit so we can back up the PNG circuit! | | | +| Direct Accountability Assistant | 2.2.8 | Url | bypassing the protocol won't do anything, we need to compress the primary HTTP protocol! | | http://natasha.info | +| Human Response Coordinator | 2.9.7 | Ignored | | | http://ruth.org | +| Corporate Accounts Technician | 5.8.0 | Ignored | | | https://isobel.org | +| International Intranet Planner | 6.4.6 | Url | The IB interface is down, program the redundant interface so we can program the IB interface! | | https://lenna.com | +| Direct Data Orchestrator | 2.4.5 | Expression | | Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor! | | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_1fb523224190f184.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_1fb523224190f184.verified.txt new file mode 100644 index 00000000..d0e33ce2 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_1fb523224190f184.verified.txt @@ -0,0 +1,24 @@ +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | +| District Mobility Administrator | 3.2.3 | Unknown | | Christopher Dietrich,Christopher Dietrich,Christopher Dietrich,Christopher Dietrich | | +| Dynamic Integration Assistant | 2.1.6 | Unknown | | | https://gerson.info | +| Future Optimization Associate | 4.0.5 | Unknown | | Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel | https://linnie.net | +| Global Integration Assistant | 5.0.1 | Unknown | | | http://demarco.com | +| Human Implementation Producer | 0.9.1 | Url | | | | +| Future Tactics Producer | 5.8.9 | Url | navigating the pixel won't do anything, we need to parse the back-end IB pixel! | | | +| Dynamic Applications Director | 5.1.4 | Unknown | | Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel | | +| Principal Factors Producer | 0.8.5 | Unknown | connecting the system won't do anything, we need to override the back-end SQL system! | Devin Nolan | http://toby.info | +| Future Directives Planner | 5.9.7 | Ignored | Use the wireless ADP array, then you can input the wireless array! | Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki | | +| Customer Operations Liaison | 9.0.9 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | | +| 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 | +| Regional Integration Consultant | 5.3.8 | Expression | | | http://michael.name | +| Central Applications Coordinator | 1.6.8 | Ignored | | | http://curtis.com | +| Forward Division Strategist | 5.7.1 | Expression | You can't reboot the program without transmitting the mobile SMTP program! | Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode | https://esperanza.name | +| Investor Interactions Designer | 1.9.4 | Overwrite | | | https://octavia.name | +| Legacy Response Analyst | 9.2.7 | Unknown | | Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata | http://martine.info | +| Dynamic Mobility Technician | 6.0.2 | Expression | | | https://keeley.net | +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_1ffee189dd4b8e64.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_1ffee189dd4b8e64.verified.txt new file mode 100644 index 00000000..f97b355d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_1ffee189dd4b8e64.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_20332b8146282628.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_20332b8146282628.verified.txt new file mode 100644 index 00000000..798196d3 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_20332b8146282628.verified.txt @@ -0,0 +1,18 @@ +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ------------------- | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_2162838ee3f0aacf.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_2162838ee3f0aacf.verified.txt new file mode 100644 index 00000000..f97b355d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_2162838ee3f0aacf.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_218feb109447dc69.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_218feb109447dc69.verified.txt new file mode 100644 index 00000000..5d373604 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_218feb109447dc69.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | --------- | ------- | ------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | --------- | ------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | --------- | ------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_254503835cbdc217.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_254503835cbdc217.verified.txt new file mode 100644 index 00000000..e0936383 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_254503835cbdc217.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | +| Package | Version | License Information Origin | +| ------- | ------- | -------------------------- | +| ------- | ------- | -------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_254853284c95d37f.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_254853284c95d37f.verified.txt new file mode 100644 index 00000000..1cc34354 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_254853284c95d37f.verified.txt @@ -0,0 +1,9 @@ +| -------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | +| -------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | +| Internal Program Designer | 7.2.5 | Ignored | We need to hack the auxiliary COM hard drive! | | | | +| Global Implementation Strategist | 5.9.8 | Ignored | | | Colleen Schroeder,Colleen Schroeder | https://enos.info | +| -------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_28688354bf069b13.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_28688354bf069b13.verified.txt new file mode 100644 index 00000000..5d373604 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_28688354bf069b13.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | --------- | ------- | ------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | --------- | ------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | --------- | ------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_29edb3e3d80abb04.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_29edb3e3d80abb04.verified.txt new file mode 100644 index 00000000..982ccbd9 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_29edb3e3d80abb04.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_2c78002bf0bb7c60.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_2c78002bf0bb7c60.verified.txt new file mode 100644 index 00000000..0670ed22 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_2c78002bf0bb7c60.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | --------- | ------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | --------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | --------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_2c85be3d342f5662.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_2c85be3d342f5662.verified.txt new file mode 100644 index 00000000..4a6b1d41 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_2c85be3d342f5662.verified.txt @@ -0,0 +1,86 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | ---------------------- | +| Central Infrastructure Agent | 6.1.6 | Expression | | | You can't quantify the program without overriding the online SDD program! | | +| Forward Factors Director | 5.7.8 | Expression | | | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | +| Legacy Research Associate | 9.9.5 | Url | | We need to navigate the bluetooth RAM bus! | | https://hildegard.name | +| Principal Branding Assistant | 8.2.6 | Expression | 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! | We need to hack the auxiliary COM hard drive! | | +| District Branding Analyst | 1.9.5 | Unknown | | | | https://paula.net | +| Forward Integration Assistant | 4.8.5 | Expression | | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | +| National Directives Analyst | 8.2.7 | Overwrite | We need to compress the primary GB array! | | Use the mobile SCSI bus, then you can program the mobile bus! | | +| Forward Creative Developer | 9.6.7 | Unknown | | I'll transmit the online SSL feed, that should feed the SSL feed! | We need to synthesize the cross-platform SMS circuit! | http://pearline.com | +| 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! | | | +| Central Marketing Assistant | 9.5.8 | Overwrite | I'll navigate the redundant RAM capacitor, that should capacitor the RAM capacitor! | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | http://julia.biz | +| Legacy Interactions Analyst | 3.0.8 | Url | hacking the hard drive won't do anything, we need to generate the open-source RSS hard drive! | connecting the system won't do anything, we need to synthesize the mobile ADP system! | | | +| Legacy Infrastructure Producer | 1.1.2 | Unknown | | If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit! | | | +| District Implementation Executive | 3.9.4 | Overwrite | | | | http://fae.org | +| Future Interactions Facilitator | 7.6.9 | Expression | | If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit! | | | +| District Intranet Engineer | 7.5.5 | Unknown | 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! | | | +| Forward Web Assistant | 5.9.6 | 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! | The SSL application is down, reboot the bluetooth application so we can reboot the SSL application! | | +| District Implementation Orchestrator | 0.1.4 | Url | I'll synthesize the cross-platform CSS panel, that should panel the CSS panel! | You can't navigate the panel without connecting the optical PNG panel! | | | +| Forward Data Administrator | 9.0.6 | Overwrite | If we navigate the pixel, we can get to the SCSI pixel through the bluetooth SCSI pixel! | I'll program the multi-byte AI transmitter, that should transmitter the AI transmitter! | | https://serenity.info | +| Legacy Configuration Coordinator | 2.7.5 | Unknown | connecting the panel won't do anything, we need to bypass the wireless AGP panel! | | | | +| Forward Division Strategist | 5.7.1 | Unknown | You can't reboot the program without transmitting the mobile SMTP program! | The SCSI circuit is down, index the open-source circuit so we can index the SCSI circuit! | Use the solid state HTTP microchip, then you can back up the solid state microchip! | https://esperanza.name | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | +| Direct Web Orchestrator | 1.9.1 | Overwrite | You can't copy the alarm without synthesizing the 1080p IB alarm! | | parsing the card won't do anything, we need to synthesize the online SQL card! | https://kade.com | +| Dynamic Quality Analyst | 0.9.5 | Unknown | We need to index the optical HTTP application! | 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! | | +| Dynamic Quality Director | 4.9.9 | Unknown | | | | http://jesse.com | +| International Data Associate | 6.4.8 | Unknown | If we navigate the array, we can get to the SQL array through the 1080p SQL array! | You can't generate the bandwidth without parsing the mobile EXE bandwidth! | | | +| Internal Data Designer | 9.5.2 | Unknown | | hacking the card won't do anything, we need to hack the neural COM card! | The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive! | https://liana.com | +| Senior Communications Director | 3.1.0 | Expression | | | I'll quantify the neural SCSI port, that should port the SCSI port! | | +| Dynamic Security Developer | 0.8.7 | Url | You can't back up the array without parsing the haptic CSS array! | | | https://adan.net | +| Future Accountability Officer | 2.5.3 | Unknown | | | | http://henderson.biz | +| Dynamic Division Agent | 4.2.8 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | https://camilla.info | +| Human Accounts Representative | 4.5.5 | Url | | | The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall! | https://darien.net | +| Forward Infrastructure Developer | 7.5.6 | Unknown | Try to override the SCSI microchip, maybe it will override the haptic microchip! | programming the monitor won't do anything, we need to parse the online XML monitor! | You can't index the circuit without copying the auxiliary RSS circuit! | | +| Regional Security Engineer | 5.8.4 | Unknown | | | I'll hack the cross-platform SSL array, that should array the SSL array! | | +| Corporate Data Strategist | 9.0.0 | Url | | | Try to transmit the PNG capacitor, maybe it will transmit the solid state capacitor! | 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! | Try to synthesize the SDD hard drive, maybe it will synthesize the bluetooth hard drive! | | https://jewel.name | +| Regional Communications Officer | 3.3.2 | Overwrite | | We need to calculate the redundant THX feed! | | https://cortez.net | +| Human Response Executive | 6.4.4 | Unknown | If we transmit the matrix, we can get to the SDD matrix through the mobile SDD matrix! | | | https://maida.org | +| Central Creative Analyst | 3.6.4 | Overwrite | | programming the driver won't do anything, we need to calculate the primary SMTP driver! | | | +| District Data Executive | 9.4.3 | Expression | | The FTP transmitter is down, compress the auxiliary transmitter so we can compress the FTP transmitter! | | | +| Dynamic Directives Officer | 5.8.8 | Overwrite | | parsing the program won't do anything, we need to synthesize the haptic IB program! | If we program the microchip, we can get to the SMS microchip through the auxiliary SMS microchip! | http://rafaela.net | +| Human Configuration Assistant | 0.1.1 | Overwrite | I'll bypass the solid state SMS system, that should system the SMS system! | | parsing the driver won't do anything, we need to program the auxiliary IB driver! | http://frederick.com | +| Direct Data Designer | 8.4.8 | Unknown | | | We need to transmit the virtual JSON bus! | | +| International Accounts Liaison | 5.6.7 | Expression | We need to program the virtual SCSI circuit! | We need to generate the auxiliary GB hard drive! | transmitting the port won't do anything, we need to override the haptic JSON port! | | +| Direct Factors Representative | 0.5.2 | Overwrite | You can't override the bandwidth without navigating the auxiliary ADP bandwidth! | backing up the system won't do anything, we need to synthesize the digital AI system! | | | +| Internal Division Agent | 2.4.2 | Expression | | Try to compress the TCP microchip, maybe it will compress the auxiliary microchip! | | | +| Direct Creative Planner | 9.7.2 | Unknown | Try to connect the TCP circuit, maybe it will connect the back-end circuit! | synthesizing the circuit won't do anything, we need to override the neural XML circuit! | bypassing the matrix won't do anything, we need to copy the wireless PCI matrix! | | +| Global Markets Director | 3.4.9 | Unknown | The RAM card is down, override the open-source card so we can override the RAM card! | | | | +| Investor Accountability Officer | 2.4.3 | Unknown | | Use the digital XSS hard drive, then you can compress the digital hard drive! | You can't generate the card without synthesizing the bluetooth PNG card! | | +| Dynamic Factors Facilitator | 6.5.2 | Unknown | | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | | http://magnolia.com | +| National Functionality Orchestrator | 3.5.0 | Overwrite | If we quantify the array, we can get to the RAM array through the virtual RAM array! | overriding the card won't do anything, we need to hack the auxiliary HTTP card! | If we quantify the feed, we can get to the RAM feed through the neural RAM feed! | https://gina.name | +| Future Solutions Officer | 3.3.5 | Unknown | You can't override the hard drive without bypassing the mobile TCP hard drive! | | Use the online IB protocol, then you can back up the online protocol! | | +| Direct Usability Analyst | 3.4.8 | Overwrite | hacking the protocol won't do anything, we need to bypass the back-end SDD protocol! | Try to quantify the EXE program, maybe it will quantify the auxiliary program! | The FTP program is down, override the digital program so we can override the FTP program! | https://maritza.com | +| Corporate Infrastructure Executive | 4.8.1 | Overwrite | | | Try to index the FTP transmitter, maybe it will index the bluetooth transmitter! | https://justice.info | +| Forward Optimization Architect | 8.7.9 | Overwrite | | | backing up the feed won't do anything, we need to compress the haptic SMTP feed! | https://kyle.net | +| Human Communications Supervisor | 6.0.1 | Overwrite | Use the cross-platform SAS feed, then you can bypass the cross-platform feed! | | I'll override the neural XML application, that should application the XML application! | http://ethan.name | +| Future Marketing Technician | 7.6.7 | Unknown | | overriding the firewall won't do anything, we need to reboot the open-source COM firewall! | | http://abbey.biz | +| Dynamic Applications Producer | 0.4.7 | Url | Try to input the AI sensor, maybe it will input the digital sensor! | If we program the array, we can get to the JBOD array through the primary JBOD array! | | http://horace.com | +| Central Marketing Orchestrator | 3.3.1 | Overwrite | | Try to parse the IB driver, maybe it will parse the 1080p driver! | We need to connect the bluetooth RSS application! | https://brice.net | +| Human Program Analyst | 3.1.8 | Expression | If we back up the application, we can get to the USB application through the cross-platform USB application! | | | http://efrain.org | +| Product Directives Engineer | 8.2.3 | Unknown | transmitting the bus won't do anything, we need to navigate the online IB bus! | | We need to bypass the wireless PNG bus! | | +| Human Division Agent | 2.2.7 | Expression | | 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 | +| Forward Communications Engineer | 4.5.2 | Overwrite | 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! | If we connect the program, we can get to the SQL program through the digital SQL program! | | https://sonny.com | +| Senior Integration Engineer | 4.4.3 | Url | | | | | +| Principal Solutions Facilitator | 7.1.5 | Overwrite | | The RSS pixel is down, calculate the auxiliary pixel so we can calculate the RSS pixel! | | | +| Dynamic Accountability Engineer | 3.1.8 | Url | | Use the online RAM program, then you can generate the online program! | I'll back up the back-end JSON card, that should card the JSON card! | https://gerson.com | +| Principal Intranet Manager | 3.8.8 | Expression | | | | | +| Principal Accounts Officer | 2.1.8 | Overwrite | 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! | | +| Internal Program Administrator | 0.3.5 | Expression | We need to navigate the multi-byte PNG application! | The SMS hard drive is down, parse the mobile hard drive so we can parse the SMS hard drive! | The HTTP bandwidth is down, synthesize the 1080p bandwidth so we can synthesize the HTTP bandwidth! | http://viviane.com | +| International Data Coordinator | 1.7.7 | Unknown | | connecting the system won't do anything, we need to navigate the solid state HDD system! | | | +| District Configuration Administrator | 8.4.4 | Url | | The XML transmitter is down, calculate the auxiliary transmitter so we can calculate the XML transmitter! | | https://david.name | +| Regional Configuration Engineer | 7.3.8 | Expression | Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter! | You can't reboot the matrix without navigating the optical SDD matrix! | | http://roman.org | +| Dynamic Creative Designer | 7.5.8 | Expression | The XML system is down, hack the bluetooth system so we can hack the XML system! | | The GB program is down, program the back-end program so we can program the GB program! | http://daniela.name | +| Corporate Identity Coordinator | 9.8.3 | Url | | If we navigate the bus, we can get to the HDD bus through the primary HDD bus! | | | +| Corporate Implementation Technician | 2.8.4 | Url | | If we compress the protocol, we can get to the COM protocol through the mobile COM protocol! | Use the multi-byte SMTP program, then you can synthesize the multi-byte program! | | +| Dynamic Functionality Strategist | 5.8.0 | Url | Use the digital HTTP card, then you can reboot the digital card! | The CSS port is down, quantify the virtual port so we can quantify the CSS port! | | http://filiberto.net | +| Future Configuration Officer | 7.6.0 | Expression | You can't compress the alarm without parsing the optical JBOD alarm! | 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! | | +| Product Usability Coordinator | 5.4.7 | Overwrite | The GB panel is down, synthesize the neural panel so we can synthesize the GB panel! | You can't copy the system without indexing the virtual XSS system! | If we override the hard drive, we can get to the RSS hard drive through the multi-byte RSS hard drive! | | +| Lead Factors Designer | 0.9.2 | Url | You can't quantify the bandwidth without calculating the online RAM bandwidth! | | | | +| Senior Metrics Assistant | 8.7.4 | Unknown | | 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! | | +| Internal Factors Designer | 1.9.6 | Url | | | | | +| Lead Intranet Director | 9.2.4 | Url | | You can't parse the bandwidth without transmitting the open-source USB bandwidth! | If we parse the driver, we can get to the GB driver through the neural GB driver! | https://dane.name | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_2cc4567fa154d569.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_2cc4567fa154d569.verified.txt new file mode 100644 index 00000000..97367809 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_2cc4567fa154d569.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ------- | ------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_2f2c7b71f8c0be58.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_2f2c7b71f8c0be58.verified.txt new file mode 100644 index 00000000..e0936383 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_2f2c7b71f8c0be58.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | +| Package | Version | License Information Origin | +| ------- | ------- | -------------------------- | +| ------- | ------- | -------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_2f49bbbba236db6e.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_2f49bbbba236db6e.verified.txt new file mode 100644 index 00000000..5f3f6c86 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_2f49bbbba236db6e.verified.txt @@ -0,0 +1,9 @@ +| ---------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | +| ---------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Configuration Liaison | 1.8.9 | Expression | | connecting the transmitter won't do anything, we need to program the cross-platform XSS transmitter! | | | http://esther.biz | +| Chief Functionality Planner | 5.1.2 | Unknown | | I'll calculate the 1080p HDD system, that should system the HDD system! | | Matt Mills,Matt Mills | http://myrtice.com | +| Corporate Intranet Associate | 7.5.1 | Overwrite | | 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! | | | +| District Creative Designer | 1.4.6 | Url | We need to program the haptic IB panel! | | | | http://cameron.info | +| ---------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_30d9c5bc91bbfa18.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_30d9c5bc91bbfa18.verified.txt new file mode 100644 index 00000000..129a780b --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_30d9c5bc91bbfa18.verified.txt @@ -0,0 +1,104 @@ +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | +| Internal Program Designer | 7.2.5 | Ignored | We need to hack the auxiliary COM hard drive! | | | | +| Global Implementation Strategist | 5.9.8 | Ignored | | | Colleen Schroeder,Colleen Schroeder | https://enos.info | +| Customer Assurance Officer | 0.3.1 | Ignored | I'll navigate the digital CSS sensor, that should sensor the CSS sensor! | | | https://clementine.info | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | +| Customer Division Manager | 1.3.9 | Ignored | 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! | Rafael Altenwerth,Rafael Altenwerth,Rafael Altenwerth | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | +| International Optimization Coordinator | 6.5.5 | Ignored | | | Darnell Terry | http://antoinette.org | +| International Tactics Administrator | 9.9.9 | Url | | | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | +| Legacy Interactions Supervisor | 9.7.2 | Ignored | | Try to generate the SAS matrix, maybe it will generate the cross-platform matrix! | Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn | | +| Chief Infrastructure Specialist | 9.0.5 | Overwrite | hacking the port won't do anything, we need to back up the optical SMS port! | | Jackie Schumm | | +| International Brand Strategist | 3.9.3 | Url | | | Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy | https://rowena.info | +| Human Paradigm Assistant | 8.8.8 | Expression | | | Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich | | +| Forward Data Orchestrator | 3.3.5 | Expression | Use the haptic XML driver, then you can index the haptic driver! | compressing the system won't do anything, we need to compress the optical RSS system! | | | +| Global Identity Supervisor | 0.9.1 | Overwrite | | | | | +| Customer Metrics Developer | 2.2.9 | Ignored | | | Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir,Dallas Runolfsdottir | | +| Senior Paradigm Analyst | 1.1.1 | Ignored | | If we navigate the alarm, we can get to the XML alarm through the cross-platform XML alarm! | | | +| Human Markets Planner | 5.0.1 | Expression | Try to back up the COM driver, maybe it will back up the bluetooth driver! | | | | +| Principal Brand Executive | 7.2.7 | Unknown | | | | https://dariana.com | +| Corporate Intranet Analyst | 0.9.0 | Ignored | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp,Cody Tromp | http://hanna.net | +| Customer Program Developer | 2.9.8 | Expression | | You can't transmit the pixel without calculating the bluetooth FTP pixel! | | http://lenora.com | +| Dynamic Security Specialist | 7.8.5 | Overwrite | Try to input the GB pixel, maybe it will input the wireless pixel! | You can't transmit the bus without indexing the digital TCP bus! | Guy Waters,Guy Waters | http://nova.biz | +| Human Program Analyst | 3.1.8 | Expression | If we back up the application, we can get to the USB application through the cross-platform USB application! | | | http://efrain.org | +| Product Directives Engineer | 8.2.3 | Unknown | transmitting the bus won't do anything, we need to navigate the online IB bus! | | Maggie Lindgren | | +| Customer Web Assistant | 1.9.0 | Unknown | | | | | +| Direct Division Officer | 6.5.6 | Url | transmitting the protocol won't do anything, we need to generate the multi-byte THX protocol! | | Glenda Schuppe,Glenda Schuppe | http://catherine.name | +| Product Solutions Manager | 9.5.2 | Overwrite | I'll hack the primary SDD card, that should card the SDD card! | hacking the transmitter won't do anything, we need to index the open-source CSS transmitter! | Sergio Bailey,Sergio Bailey,Sergio Bailey | | +| Regional Optimization Administrator | 3.6.4 | Expression | | I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive! | | http://serenity.info | +| Dynamic Data Technician | 4.2.3 | Url | I'll copy the optical RAM feed, that should feed the RAM feed! | | June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds | http://nia.info | +| International Solutions Planner | 9.0.0 | Url | Use the multi-byte SMTP program, then you can synthesize the multi-byte program! | | | | +| Principal Operations Assistant | 0.9.0 | Url | I'll copy the auxiliary HDD bus, that should bus the HDD bus! | I'll copy the digital USB circuit, that should circuit the USB circuit! | | | +| Future Configuration Officer | 7.6.0 | Unknown | You can't compress the alarm without parsing the optical JBOD alarm! | I'll compress the back-end SSL system, that should system the SSL system! | Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie | | +| Lead Program Technician | 5.8.9 | Expression | | We need to transmit the back-end AGP sensor! | Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer | http://curtis.org | +| Dynamic Security Director | 0.0.2 | Url | transmitting the feed won't do anything, we need to navigate the redundant SDD feed! | Try to parse the HTTP port, maybe it will parse the bluetooth port! | Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block | | +| Human Tactics Facilitator | 5.7.0 | Url | Try to bypass the HTTP application, maybe it will bypass the digital application! | | | | +| 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 Accounts Facilitator | 7.7.8 | Expression | | | Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman | http://scottie.biz | +| Customer Mobility Assistant | 4.2.9 | 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 | http://adonis.biz | +| Central Implementation Planner | 7.6.0 | Ignored | | Try to generate the HDD panel, maybe it will generate the solid state panel! | | | +| Global Optimization Architect | 1.5.0 | Unknown | Try to navigate the SCSI sensor, maybe it will navigate the mobile sensor! | | | | +| Dynamic Implementation Engineer | 6.7.1 | Overwrite | We need to transmit the open-source EXE interface! | | | http://margie.info | +| National Assurance Planner | 2.7.7 | Unknown | | I'll reboot the online AGP alarm, that should alarm the AGP alarm! | Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag | | +| Senior Configuration Developer | 4.0.9 | Url | Use the primary SCSI matrix, then you can program the primary matrix! | If we parse the interface, we can get to the JSON interface through the mobile JSON interface! | Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle | | +| International Division Architect | 8.2.4 | Ignored | | | Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins | http://murphy.name | +| Forward Factors Architect | 6.7.6 | Ignored | | The THX transmitter is down, program the neural transmitter so we can program the THX transmitter! | Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts,Joy Roberts | | +| Customer Branding Orchestrator | 8.3.7 | Overwrite | | We need to bypass the neural USB capacitor! | Nora Dietrich | http://nona.com | +| Product Functionality Supervisor | 9.4.5 | Overwrite | Use the 1080p AI microchip, then you can reboot the 1080p microchip! | Use the open-source ADP matrix, then you can copy the open-source matrix! | | | +| Legacy Security Facilitator | 1.9.0 | Expression | | Use the cross-platform ADP alarm, then you can back up the cross-platform alarm! | | https://edythe.info | +| Investor Research Coordinator | 1.9.7 | Ignored | Use the cross-platform GB bus, then you can calculate the cross-platform bus! | | | https://maegan.name | +| Principal Intranet Architect | 4.9.3 | Unknown | | | | | +| Chief Program Associate | 2.6.7 | Unknown | We need to compress the optical PNG array! | | Wilbert Kunze,Wilbert Kunze,Wilbert Kunze,Wilbert Kunze | http://coy.info | +| Customer Communications Engineer | 6.9.4 | Overwrite | | | Tanya Reinger,Tanya Reinger,Tanya Reinger | http://tito.name | +| Lead Solutions Technician | 1.5.7 | Unknown | | | | | +| International Branding Producer | 3.8.2 | Expression | We need to generate the solid state AGP microchip! | | | | +| Lead Operations Supervisor | 4.5.2 | Expression | The AI panel is down, transmit the open-source panel so we can transmit the AI panel! | | | | +| Dynamic Factors Associate | 1.8.3 | Unknown | | You can't navigate the panel without calculating the open-source THX panel! | | http://dovie.name | +| Corporate Marketing Coordinator | 3.6.1 | Overwrite | | | | https://marcos.org | +| Regional Metrics Strategist | 1.2.1 | Unknown | | Try to override the GB driver, maybe it will override the digital driver! | | | +| Principal Factors Representative | 4.5.7 | Ignored | Try to input the RAM interface, maybe it will input the bluetooth interface! | The GB card is down, hack the digital card so we can hack the GB card! | Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker,Constance Walker | https://imelda.org | +| Principal Security Producer | 7.3.3 | Ignored | You can't generate the interface without quantifying the mobile FTP interface! | Use the digital SMTP bandwidth, then you can generate the digital bandwidth! | | http://jarrell.biz | +| Human Accounts Orchestrator | 4.1.6 | Url | | | | | +| Regional Functionality Agent | 5.9.9 | Overwrite | We need to index the 1080p SAS hard drive! | I'll connect the digital JBOD application, that should application the JBOD application! | Gloria Williamson,Gloria Williamson,Gloria Williamson,Gloria Williamson | http://arthur.net | +| Regional Identity Engineer | 1.9.4 | Ignored | | The HTTP microchip is down, copy the digital microchip so we can copy the HTTP microchip! | Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston,Phillip Johnston | | +| Dynamic Solutions Agent | 0.0.5 | Overwrite | Use the haptic USB card, then you can navigate the haptic card! | | | | +| District Optimization Technician | 5.2.3 | Overwrite | | | Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti | https://douglas.info | +| District Assurance Technician | 8.5.5 | Overwrite | | | | http://zander.com | +| Regional Directives Liaison | 4.7.8 | Expression | If we connect the interface, we can get to the SCSI interface through the auxiliary SCSI interface! | | Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic | https://glennie.biz | +| Central Tactics Developer | 0.4.7 | Ignored | indexing the capacitor won't do anything, we need to program the haptic EXE capacitor! | The JBOD application is down, generate the solid state application so we can generate the JBOD application! | Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley,Marie Dooley | https://royal.name | +| Chief Factors Developer | 5.9.5 | Url | | Try to connect the ADP system, maybe it will connect the solid state system! | Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady | | +| Future Identity Agent | 8.8.0 | Ignored | I'll parse the 1080p USB protocol, that should protocol the USB protocol! | | | https://reva.name | +| Central Research Technician | 2.8.8 | Url | | You can't generate the program without connecting the bluetooth USB program! | | | +| Future Tactics Assistant | 1.5.5 | Expression | The IB sensor is down, reboot the virtual sensor so we can reboot the IB sensor! | If we calculate the matrix, we can get to the SMS matrix through the bluetooth SMS matrix! | | https://giovanny.net | +| District Interactions Supervisor | 4.5.2 | Url | The XSS capacitor is down, generate the bluetooth capacitor so we can generate the XSS capacitor! | The ADP firewall is down, input the primary firewall so we can input the ADP firewall! | | | +| Corporate Intranet Specialist | 3.5.6 | Expression | | | Edmund Lehner,Edmund Lehner,Edmund Lehner,Edmund Lehner | | +| Human Identity Representative | 4.1.5 | Overwrite | The SAS bus is down, program the neural bus so we can program the SAS bus! | | Joyce Auer,Joyce Auer,Joyce Auer | http://alyce.biz | +| Future Research Planner | 8.8.9 | Ignored | | | | https://yvette.com | +| Central Division Administrator | 1.0.4 | Overwrite | We need to program the optical COM microchip! | We need to hack the haptic SAS microchip! | | | +| Dynamic Division Representative | 7.3.5 | Unknown | | I'll index the haptic FTP alarm, that should alarm the FTP alarm! | Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson | http://taurean.net | +| Forward Usability Specialist | 5.6.9 | Overwrite | I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth! | | | | +| Direct Brand Director | 4.7.4 | Url | You can't navigate the capacitor without programming the solid state SQL capacitor! | | | | +| Global Optimization Engineer | 8.7.9 | Expression | | quantifying the transmitter won't do anything, we need to synthesize the auxiliary FTP transmitter! | | http://aniya.org | +| Lead Infrastructure Specialist | 7.2.6 | Ignored | | | Laura Abshire,Laura Abshire,Laura Abshire,Laura Abshire,Laura Abshire | https://wanda.com | +| Investor Quality Associate | 0.5.1 | Expression | | Try to reboot the SSL alarm, maybe it will reboot the solid state alarm! | Carrie Hansen,Carrie Hansen,Carrie Hansen,Carrie Hansen | https://ezequiel.biz | +| Investor Tactics Director | 0.4.3 | Expression | | | | https://aylin.com | +| Future Tactics Specialist | 0.2.2 | Ignored | We need to override the primary SQL pixel! | We need to transmit the redundant EXE driver! | Alejandro Cruickshank,Alejandro Cruickshank,Alejandro Cruickshank,Alejandro Cruickshank | | +| Global Paradigm Assistant | 8.0.5 | Expression | We need to calculate the solid state HTTP hard drive! | | | https://randy.org | +| Customer Solutions Officer | 4.5.2 | Expression | You can't copy the matrix without compressing the wireless AGP matrix! | | | https://rylan.name | +| Human Branding Coordinator | 5.8.1 | Ignored | | | | | +| 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 Branding Manager | 1.4.0 | Overwrite | You can't navigate the application without generating the cross-platform COM application! | Try to program the FTP alarm, maybe it will program the virtual alarm! | | http://dario.info | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_32ca162166452a96.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_32ca162166452a96.verified.txt new file mode 100644 index 00000000..97367809 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_32ca162166452a96.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ------- | ------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_33c778cd4e6e0f69.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_33c778cd4e6e0f69.verified.txt new file mode 100644 index 00000000..13892a79 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_33c778cd4e6e0f69.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_348720950bc394fc.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_348720950bc394fc.verified.txt new file mode 100644 index 00000000..e0936383 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_348720950bc394fc.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | +| Package | Version | License Information Origin | +| ------- | ------- | -------------------------- | +| ------- | ------- | -------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_3776853d983abc0f.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_3776853d983abc0f.verified.txt new file mode 100644 index 00000000..80092189 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_3776853d983abc0f.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------- | ------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_3a4b84f3c4d7264d.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_3a4b84f3c4d7264d.verified.txt new file mode 100644 index 00000000..adcb253a --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_3a4b84f3c4d7264d.verified.txt @@ -0,0 +1,18 @@ +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ------------------- | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_3ba7b0a2c592c040.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_3ba7b0a2c592c040.verified.txt new file mode 100644 index 00000000..e0936383 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_3ba7b0a2c592c040.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | +| Package | Version | License Information Origin | +| ------- | ------- | -------------------------- | +| ------- | ------- | -------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_3bedc520e07eba02.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_3bedc520e07eba02.verified.txt new file mode 100644 index 00000000..13892a79 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_3bedc520e07eba02.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_3c12c946041d925f.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_3c12c946041d925f.verified.txt new file mode 100644 index 00000000..1657bc1c --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_3c12c946041d925f.verified.txt @@ -0,0 +1,7 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_42a9613791d53e7b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_42a9613791d53e7b.verified.txt new file mode 100644 index 00000000..27a731d3 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_42a9613791d53e7b.verified.txt @@ -0,0 +1,5 @@ +| ---------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | +| Package | Version | License Information Origin | License Expression | Authors | +| ---------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_445165e7546d75b6.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_445165e7546d75b6.verified.txt new file mode 100644 index 00000000..113ce79b --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_445165e7546d75b6.verified.txt @@ -0,0 +1,24 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Configuration Liaison | 1.8.9 | Expression | | connecting the transmitter won't do anything, we need to program the cross-platform XSS transmitter! | | | http://esther.biz | +| Chief Functionality Planner | 5.1.2 | Unknown | | I'll calculate the 1080p HDD system, that should system the HDD system! | | Matt Mills,Matt Mills | http://myrtice.com | +| Corporate Intranet Associate | 7.5.1 | Overwrite | | 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! | | | +| District Creative Designer | 1.4.6 | Url | We need to program the haptic IB panel! | | | | http://cameron.info | +| Corporate Optimization Agent | 2.7.0 | Ignored | | | | | http://bryce.com | +| Customer Interactions Representative | 0.8.8 | Url | We need to quantify the digital SSL array! | | | | http://heather.name | +| Dynamic Factors Producer | 5.7.1 | Url | | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | | | +| Central Tactics Director | 4.6.7 | Url | backing up the system won't do anything, we need to parse the neural CSS system! | We need to transmit the back-end RSS transmitter! | | Doyle Osinski,Doyle Osinski,Doyle Osinski,Doyle Osinski | https://valentina.net | +| Global Usability Manager | 9.1.0 | Overwrite | | Try to back up the THX interface, maybe it will back up the auxiliary interface! | | | http://vella.com | +| Internal Factors Facilitator | 2.6.3 | Url | | Try to copy the PNG sensor, maybe it will copy the 1080p sensor! | | Mable Kris,Mable Kris,Mable Kris,Mable Kris,Mable Kris | http://melba.name | +| Human Accountability Developer | 6.9.0 | Unknown | If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit! | | | | | +| Future Accounts Designer | 5.1.9 | Expression | We need to navigate the wireless SAS pixel! | | | | | +| Global Markets Administrator | 8.6.8 | Expression | 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! | The SSL application is down, reboot the bluetooth application so we can reboot the SSL application! | Julius Bernhard,Julius Bernhard,Julius Bernhard,Julius Bernhard | https://lois.biz | +| Dynamic Configuration Assistant | 3.2.1 | Expression | | 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 | | +| Investor Interactions Designer | 1.9.4 | Url | | | parsing the card won't do anything, we need to synthesize the online SQL card! | Stella Barton,Stella Barton | https://octavia.name | +| Global Configuration Consultant | 5.9.5 | Expression | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | bypassing the bus won't do anything, we need to calculate the virtual GB bus! | | Guadalupe Littel,Guadalupe Littel,Guadalupe Littel | | +| Regional Factors Designer | 7.4.1 | Url | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | Use the haptic RSS port, then you can transmit the haptic port! | Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus | | +| Customer Metrics Analyst | 6.7.1 | Unknown | | | | | | +| National Security Orchestrator | 3.5.6 | Expression | Try to copy the HDD array, maybe it will copy the back-end array! | 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! | Roderick Koelpin,Roderick Koelpin,Roderick Koelpin | | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_4584581b34e7d56d.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_4584581b34e7d56d.verified.txt new file mode 100644 index 00000000..f97b355d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_4584581b34e7d56d.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_468dc25d3ce92897.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_468dc25d3ce92897.verified.txt new file mode 100644 index 00000000..f2753b24 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_468dc25d3ce92897.verified.txt @@ -0,0 +1,7 @@ +| --------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | +| --------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | +| --------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_47463714502342a2.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_47463714502342a2.verified.txt new file mode 100644 index 00000000..5d373604 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_47463714502342a2.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | --------- | ------- | ------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | --------- | ------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | --------- | ------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_488dc774c9a3f96d.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_488dc774c9a3f96d.verified.txt new file mode 100644 index 00000000..0670ed22 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_488dc774c9a3f96d.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | --------- | ------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | --------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | --------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_48dfea018f9b6d65.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_48dfea018f9b6d65.verified.txt new file mode 100644 index 00000000..40aaf229 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_48dfea018f9b6d65.verified.txt @@ -0,0 +1,9 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | +| Investor Intranet Producer | 5.4.1 | Ignored | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | http://hyman.org | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_530328bfe8e62d09.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_530328bfe8e62d09.verified.txt new file mode 100644 index 00000000..27a731d3 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_530328bfe8e62d09.verified.txt @@ -0,0 +1,5 @@ +| ---------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | +| Package | Version | License Information Origin | License Expression | Authors | +| ---------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_547ffef09732c09e.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_547ffef09732c09e.verified.txt new file mode 100644 index 00000000..a509adeb --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_547ffef09732c09e.verified.txt @@ -0,0 +1,5 @@ +| ---------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | +| Package | Version | License Information Origin | License Expression | +| ---------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | +| ---------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_568e8bc27a59c1e5.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_568e8bc27a59c1e5.verified.txt new file mode 100644 index 00000000..5f3f6c86 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_568e8bc27a59c1e5.verified.txt @@ -0,0 +1,9 @@ +| ---------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | +| ---------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Configuration Liaison | 1.8.9 | Expression | | connecting the transmitter won't do anything, we need to program the cross-platform XSS transmitter! | | | http://esther.biz | +| Chief Functionality Planner | 5.1.2 | Unknown | | I'll calculate the 1080p HDD system, that should system the HDD system! | | Matt Mills,Matt Mills | http://myrtice.com | +| Corporate Intranet Associate | 7.5.1 | Overwrite | | 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! | | | +| District Creative Designer | 1.4.6 | Url | We need to program the haptic IB panel! | | | | http://cameron.info | +| ---------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_593292f23f711196.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_593292f23f711196.verified.txt new file mode 100644 index 00000000..80092189 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_593292f23f711196.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------- | ------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_59a62396ff5d58dd.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_59a62396ff5d58dd.verified.txt new file mode 100644 index 00000000..e0936383 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_59a62396ff5d58dd.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | +| Package | Version | License Information Origin | +| ------- | ------- | -------------------------- | +| ------- | ------- | -------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_5b07626c565d833e.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_5b07626c565d833e.verified.txt new file mode 100644 index 00000000..b71f703a --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_5b07626c565d833e.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | --------- | ------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | +| ------- | ------- | -------------------------- | ------------------ | --------- | ------- | +| ------- | ------- | -------------------------- | ------------------ | --------- | ------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_5c33be9e8efe3ab7.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_5c33be9e8efe3ab7.verified.txt new file mode 100644 index 00000000..e0936383 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_5c33be9e8efe3ab7.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | +| Package | Version | License Information Origin | +| ------- | ------- | -------------------------- | +| ------- | ------- | -------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_5dbc374c313e7743.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_5dbc374c313e7743.verified.txt new file mode 100644 index 00000000..e0936383 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_5dbc374c313e7743.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | +| Package | Version | License Information Origin | +| ------- | ------- | -------------------------- | +| ------- | ------- | -------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_5de046e40cd484e4.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_5de046e40cd484e4.verified.txt new file mode 100644 index 00000000..a9f84f3f --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_5de046e40cd484e4.verified.txt @@ -0,0 +1,7 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_5e3b53039763dd07.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_5e3b53039763dd07.verified.txt new file mode 100644 index 00000000..e0936383 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_5e3b53039763dd07.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | +| Package | Version | License Information Origin | +| ------- | ------- | -------------------------- | +| ------- | ------- | -------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_61679ba3016cb20b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_61679ba3016cb20b.verified.txt new file mode 100644 index 00000000..3e9a05ef --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_61679ba3016cb20b.verified.txt @@ -0,0 +1,21 @@ +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | +| District Mobility Administrator | 3.2.3 | Unknown | | Christopher Dietrich,Christopher Dietrich,Christopher Dietrich,Christopher Dietrich | | +| Dynamic Integration Assistant | 2.1.6 | Unknown | | | https://gerson.info | +| Future Optimization Associate | 4.0.5 | Unknown | | Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel | https://linnie.net | +| Global Integration Assistant | 5.0.1 | Unknown | | | http://demarco.com | +| Human Implementation Producer | 0.9.1 | Url | | | | +| Future Tactics Producer | 5.8.9 | Url | navigating the pixel won't do anything, we need to parse the back-end IB pixel! | | | +| Dynamic Applications Director | 5.1.4 | Unknown | | Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel | | +| Principal Factors Producer | 0.8.5 | Unknown | connecting the system won't do anything, we need to override the back-end SQL system! | Devin Nolan | http://toby.info | +| Customer Operations Liaison | 9.0.9 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | | +| 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 | +| Regional Integration Consultant | 5.3.8 | Expression | | | http://michael.name | +| Forward Division Strategist | 5.7.1 | Expression | You can't reboot the program without transmitting the mobile SMTP program! | Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode | https://esperanza.name | +| Investor Interactions Designer | 1.9.4 | Overwrite | | | https://octavia.name | +| Legacy Response Analyst | 9.2.7 | Unknown | | Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata | http://martine.info | +| Dynamic Mobility Technician | 6.0.2 | Expression | | | https://keeley.net | +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_64b052b2c37d8c91.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_64b052b2c37d8c91.verified.txt new file mode 100644 index 00000000..e0936383 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_64b052b2c37d8c91.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | +| Package | Version | License Information Origin | +| ------- | ------- | -------------------------- | +| ------- | ------- | -------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_67b6e7cb6626d3f6.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_67b6e7cb6626d3f6.verified.txt new file mode 100644 index 00000000..95d03528 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_67b6e7cb6626d3f6.verified.txt @@ -0,0 +1,7 @@ +| --------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | +| --------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | +| --------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_68a2f49e28800a2b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_68a2f49e28800a2b.verified.txt new file mode 100644 index 00000000..5d373604 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_68a2f49e28800a2b.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | --------- | ------- | ------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | --------- | ------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | --------- | ------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_697a587d03251cf9.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_697a587d03251cf9.verified.txt new file mode 100644 index 00000000..1475bd28 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_697a587d03251cf9.verified.txt @@ -0,0 +1,24 @@ +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ---------------------- | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | +| Investor Intranet Producer | 5.4.1 | Ignored | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | http://hyman.org | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | +| International Data Representative | 3.5.7 | Ignored | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | http://dakota.com | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | +| Regional Directives Supervisor | 4.9.8 | Ignored | Try to reboot the THX hard drive, maybe it will reboot the open-source hard drive! | Use the primary GB driver, then you can generate the primary driver! | https://malcolm.net | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | +| National Directives Analyst | 8.2.7 | Ignored | We need to compress the primary GB array! | | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | +| Dynamic Optimization Director | 3.4.6 | Ignored | The PNG protocol is down, index the digital protocol so we can index the PNG protocol! | I'll transmit the online SSL feed, that should feed the SSL feed! | https://maximilian.org | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_70f99fec7eacf3dc.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_70f99fec7eacf3dc.verified.txt new file mode 100644 index 00000000..e0936383 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_70f99fec7eacf3dc.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | +| Package | Version | License Information Origin | +| ------- | ------- | -------------------------- | +| ------- | ------- | -------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_71c160373ea16472.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_71c160373ea16472.verified.txt new file mode 100644 index 00000000..e0936383 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_71c160373ea16472.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | +| Package | Version | License Information Origin | +| ------- | ------- | -------------------------- | +| ------- | ------- | -------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_74529958a9908361.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_74529958a9908361.verified.txt new file mode 100644 index 00000000..f16456ed --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_74529958a9908361.verified.txt @@ -0,0 +1,82 @@ +| ----------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | +| ----------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | +| International Tactics Administrator | 9.9.9 | Url | | | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | +| Chief Infrastructure Specialist | 9.0.5 | Overwrite | hacking the port won't do anything, we need to back up the optical SMS port! | | Jackie Schumm | | +| International Brand Strategist | 3.9.3 | Url | | | Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy | https://rowena.info | +| Human Paradigm Assistant | 8.8.8 | Expression | | | Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich | | +| Forward Data Orchestrator | 3.3.5 | Expression | Use the haptic XML driver, then you can index the haptic driver! | compressing the system won't do anything, we need to compress the optical RSS system! | | | +| Global Identity Supervisor | 0.9.1 | Overwrite | | | | | +| Human Markets Planner | 5.0.1 | Expression | Try to back up the COM driver, maybe it will back up the bluetooth driver! | | | | +| Principal Brand Executive | 7.2.7 | Unknown | | | | https://dariana.com | +| Customer Program Developer | 2.9.8 | Expression | | You can't transmit the pixel without calculating the bluetooth FTP pixel! | | http://lenora.com | +| Dynamic Security Specialist | 7.8.5 | Overwrite | Try to input the GB pixel, maybe it will input the wireless pixel! | You can't transmit the bus without indexing the digital TCP bus! | Guy Waters,Guy Waters | http://nova.biz | +| Human Program Analyst | 3.1.8 | Expression | If we back up the application, we can get to the USB application through the cross-platform USB application! | | | http://efrain.org | +| Product Directives Engineer | 8.2.3 | Unknown | transmitting the bus won't do anything, we need to navigate the online IB bus! | | Maggie Lindgren | | +| Customer Web Assistant | 1.9.0 | Unknown | | | | | +| Direct Division Officer | 6.5.6 | Url | transmitting the protocol won't do anything, we need to generate the multi-byte THX protocol! | | Glenda Schuppe,Glenda Schuppe | http://catherine.name | +| Product Solutions Manager | 9.5.2 | Overwrite | I'll hack the primary SDD card, that should card the SDD card! | hacking the transmitter won't do anything, we need to index the open-source CSS transmitter! | Sergio Bailey,Sergio Bailey,Sergio Bailey | | +| Regional Optimization Administrator | 3.6.4 | Expression | | I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive! | | http://serenity.info | +| Dynamic Data Technician | 4.2.3 | Url | I'll copy the optical RAM feed, that should feed the RAM feed! | | June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds | http://nia.info | +| International Solutions Planner | 9.0.0 | Url | Use the multi-byte SMTP program, then you can synthesize the multi-byte program! | | | | +| Principal Operations Assistant | 0.9.0 | Url | I'll copy the auxiliary HDD bus, that should bus the HDD bus! | I'll copy the digital USB circuit, that should circuit the USB circuit! | | | +| Future Configuration Officer | 7.6.0 | Unknown | You can't compress the alarm without parsing the optical JBOD alarm! | I'll compress the back-end SSL system, that should system the SSL system! | Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie | | +| Lead Program Technician | 5.8.9 | Expression | | We need to transmit the back-end AGP sensor! | Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer | http://curtis.org | +| Dynamic Security Director | 0.0.2 | Url | transmitting the feed won't do anything, we need to navigate the redundant SDD feed! | Try to parse the HTTP port, maybe it will parse the bluetooth port! | Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block | | +| Human Tactics Facilitator | 5.7.0 | Url | Try to bypass the HTTP application, maybe it will bypass the digital application! | | | | +| 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 Accounts Facilitator | 7.7.8 | Expression | | | Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman | http://scottie.biz | +| Customer Mobility Assistant | 4.2.9 | 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 | http://adonis.biz | +| Global Optimization Architect | 1.5.0 | Unknown | Try to navigate the SCSI sensor, maybe it will navigate the mobile sensor! | | | | +| Dynamic Implementation Engineer | 6.7.1 | Overwrite | We need to transmit the open-source EXE interface! | | | http://margie.info | +| National Assurance Planner | 2.7.7 | Unknown | | I'll reboot the online AGP alarm, that should alarm the AGP alarm! | Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag | | +| Senior Configuration Developer | 4.0.9 | Url | Use the primary SCSI matrix, then you can program the primary matrix! | If we parse the interface, we can get to the JSON interface through the mobile JSON interface! | Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle | | +| Customer Branding Orchestrator | 8.3.7 | Overwrite | | We need to bypass the neural USB capacitor! | Nora Dietrich | http://nona.com | +| Product Functionality Supervisor | 9.4.5 | Overwrite | Use the 1080p AI microchip, then you can reboot the 1080p microchip! | Use the open-source ADP matrix, then you can copy the open-source matrix! | | | +| Legacy Security Facilitator | 1.9.0 | Expression | | Use the cross-platform ADP alarm, then you can back up the cross-platform alarm! | | https://edythe.info | +| Principal Intranet Architect | 4.9.3 | Unknown | | | | | +| Chief Program Associate | 2.6.7 | Unknown | We need to compress the optical PNG array! | | Wilbert Kunze,Wilbert Kunze,Wilbert Kunze,Wilbert Kunze | http://coy.info | +| Customer Communications Engineer | 6.9.4 | Overwrite | | | Tanya Reinger,Tanya Reinger,Tanya Reinger | http://tito.name | +| Lead Solutions Technician | 1.5.7 | Unknown | | | | | +| International Branding Producer | 3.8.2 | Expression | We need to generate the solid state AGP microchip! | | | | +| Lead Operations Supervisor | 4.5.2 | Expression | The AI panel is down, transmit the open-source panel so we can transmit the AI panel! | | | | +| Dynamic Factors Associate | 1.8.3 | Unknown | | You can't navigate the panel without calculating the open-source THX panel! | | http://dovie.name | +| Corporate Marketing Coordinator | 3.6.1 | Overwrite | | | | https://marcos.org | +| Regional Metrics Strategist | 1.2.1 | Unknown | | Try to override the GB driver, maybe it will override the digital driver! | | | +| Human Accounts Orchestrator | 4.1.6 | Url | | | | | +| Regional Functionality Agent | 5.9.9 | Overwrite | We need to index the 1080p SAS hard drive! | I'll connect the digital JBOD application, that should application the JBOD application! | Gloria Williamson,Gloria Williamson,Gloria Williamson,Gloria Williamson | http://arthur.net | +| Dynamic Solutions Agent | 0.0.5 | Overwrite | Use the haptic USB card, then you can navigate the haptic card! | | | | +| District Optimization Technician | 5.2.3 | Overwrite | | | Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti | https://douglas.info | +| District Assurance Technician | 8.5.5 | Overwrite | | | | http://zander.com | +| Regional Directives Liaison | 4.7.8 | Expression | If we connect the interface, we can get to the SCSI interface through the auxiliary SCSI interface! | | Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic | https://glennie.biz | +| Chief Factors Developer | 5.9.5 | Url | | Try to connect the ADP system, maybe it will connect the solid state system! | Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady | | +| Central Research Technician | 2.8.8 | Url | | You can't generate the program without connecting the bluetooth USB program! | | | +| Future Tactics Assistant | 1.5.5 | Expression | The IB sensor is down, reboot the virtual sensor so we can reboot the IB sensor! | If we calculate the matrix, we can get to the SMS matrix through the bluetooth SMS matrix! | | https://giovanny.net | +| District Interactions Supervisor | 4.5.2 | Url | The XSS capacitor is down, generate the bluetooth capacitor so we can generate the XSS capacitor! | The ADP firewall is down, input the primary firewall so we can input the ADP firewall! | | | +| Corporate Intranet Specialist | 3.5.6 | Expression | | | Edmund Lehner,Edmund Lehner,Edmund Lehner,Edmund Lehner | | +| Human Identity Representative | 4.1.5 | Overwrite | The SAS bus is down, program the neural bus so we can program the SAS bus! | | Joyce Auer,Joyce Auer,Joyce Auer | http://alyce.biz | +| Central Division Administrator | 1.0.4 | Overwrite | We need to program the optical COM microchip! | We need to hack the haptic SAS microchip! | | | +| Dynamic Division Representative | 7.3.5 | Unknown | | I'll index the haptic FTP alarm, that should alarm the FTP alarm! | Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson | http://taurean.net | +| Forward Usability Specialist | 5.6.9 | Overwrite | I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth! | | | | +| Direct Brand Director | 4.7.4 | Url | You can't navigate the capacitor without programming the solid state SQL capacitor! | | | | +| Global Optimization Engineer | 8.7.9 | Expression | | quantifying the transmitter won't do anything, we need to synthesize the auxiliary FTP transmitter! | | http://aniya.org | +| Investor Quality Associate | 0.5.1 | Expression | | Try to reboot the SSL alarm, maybe it will reboot the solid state alarm! | Carrie Hansen,Carrie Hansen,Carrie Hansen,Carrie Hansen | https://ezequiel.biz | +| Investor Tactics Director | 0.4.3 | Expression | | | | https://aylin.com | +| Global Paradigm Assistant | 8.0.5 | Expression | We need to calculate the solid state HTTP hard drive! | | | https://randy.org | +| Customer Solutions Officer | 4.5.2 | Expression | 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 Branding Manager | 1.4.0 | Overwrite | You can't navigate the application without generating the cross-platform COM application! | Try to program the FTP alarm, maybe it will program the virtual alarm! | | http://dario.info | +| ----------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_74632487b87d746a.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_74632487b87d746a.verified.txt new file mode 100644 index 00000000..9e02291e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_74632487b87d746a.verified.txt @@ -0,0 +1,8 @@ +| ------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------- | ------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | +| ------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------- | ------------------- | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | +| Forward Quality Producer | 6.3.7 | Overwrite | The CSS microchip is down, back up the bluetooth microchip so we can back up the CSS microchip! | https://jayne.name | +| Regional Security Architect | 2.2.5 | Url | | | +| Global Usability Representative | 3.5.9 | Url | | | +| ------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_749cfd68aedac5b2.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_749cfd68aedac5b2.verified.txt new file mode 100644 index 00000000..af1634fa --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_749cfd68aedac5b2.verified.txt @@ -0,0 +1,21 @@ +| ----------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | +| ----------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------------- | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | +| Forward Quality Producer | 6.3.7 | Overwrite | The CSS microchip is down, back up the bluetooth microchip so we can back up the CSS microchip! | https://jayne.name | +| Regional Security Architect | 2.2.5 | Url | | | +| Global Usability Representative | 3.5.9 | Url | | | +| Customer Directives Director | 7.9.2 | Overwrite | Try to hack the COM panel, maybe it will hack the auxiliary panel! | | +| Chief Assurance Associate | 3.3.1 | Url | overriding the panel won't do anything, we need to parse the open-source IB panel! | https://tyrese.info | +| Customer Operations Officer | 2.6.0 | Overwrite | Use the bluetooth USB alarm, then you can override the bluetooth alarm! | http://antonette.org | +| Dynamic Security Technician | 6.8.3 | Unknown | | | +| Central Integration Analyst | 0.4.0 | Overwrite | If we synthesize the protocol, we can get to the JBOD protocol through the multi-byte JBOD protocol! | https://laverne.name | +| National Communications Facilitator | 3.1.0 | Url | quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter! | | +| Dynamic Functionality Agent | 5.9.5 | Unknown | | http://annabelle.net | +| Forward Functionality Analyst | 4.5.1 | Expression | | http://orie.name | +| District Branding Analyst | 1.9.5 | Url | | https://paula.net | +| Product Applications Assistant | 2.8.4 | Overwrite | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | https://carleton.info | +| Global Security Liaison | 8.1.2 | Expression | | | +| Central Interactions Manager | 7.0.9 | Expression | | | +| National Tactics Engineer | 3.7.5 | Url | generating the matrix won't do anything, we need to override the redundant GB matrix! | https://alexys.org | +| ----------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_761cedcf3c3ca0db.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_761cedcf3c3ca0db.verified.txt new file mode 100644 index 00000000..1c36a95e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_761cedcf3c3ca0db.verified.txt @@ -0,0 +1,5 @@ +| ---------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | +| ---------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | +| Legacy Metrics Planner | 9.5.0 | Ignored | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_777f06878bc3d3c4.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_777f06878bc3d3c4.verified.txt new file mode 100644 index 00000000..92f0535e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_777f06878bc3d3c4.verified.txt @@ -0,0 +1,9 @@ +| ------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------- | ------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | +| ------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------- | ------------------- | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | +| Forward Quality Producer | 6.3.7 | Overwrite | The CSS microchip is down, back up the bluetooth microchip so we can back up the CSS microchip! | https://jayne.name | +| Regional Security Architect | 2.2.5 | Url | | | +| Global Usability Representative | 3.5.9 | Url | | | +| District Mobility Administrator | 3.2.3 | Ignored | | | +| ------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_7baa8c52594adf11.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_7baa8c52594adf11.verified.txt new file mode 100644 index 00000000..545e0ea2 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_7baa8c52594adf11.verified.txt @@ -0,0 +1,9 @@ +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------- | +| Legacy Metrics Planner | 9.5.0 | Ignored | 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! | | +| Central Infrastructure Agent | 6.1.6 | Expression | | | You can't quantify the program without overriding the online SDD program! | | +| Senior Identity Designer | 9.9.3 | Ignored | | | You can't navigate the bandwidth without compressing the open-source AI bandwidth! | https://devyn.info | +| Regional Solutions Supervisor | 1.8.2 | Ignored | You can't parse the system without compressing the haptic GB system! | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | https://lance.net | +| Product Infrastructure Supervisor | 8.1.1 | Ignored | | | | https://merle.com | +| --------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_7d47b80e9013bc3b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_7d47b80e9013bc3b.verified.txt new file mode 100644 index 00000000..4e5a045e --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_7d47b80e9013bc3b.verified.txt @@ -0,0 +1,15 @@ +| ----------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | +| ----------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ---------------------- | +| Central Infrastructure Agent | 6.1.6 | Expression | | | You can't quantify the program without overriding the online SDD program! | | +| Forward Factors Director | 5.7.8 | Expression | | | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | +| Legacy Research Associate | 9.9.5 | Url | | We need to navigate the bluetooth RAM bus! | | https://hildegard.name | +| Principal Branding Assistant | 8.2.6 | Expression | 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! | We need to hack the auxiliary COM hard drive! | | +| District Branding Analyst | 1.9.5 | Unknown | | | | https://paula.net | +| Forward Integration Assistant | 4.8.5 | Expression | | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | +| National Directives Analyst | 8.2.7 | Overwrite | We need to compress the primary GB array! | | Use the mobile SCSI bus, then you can program the mobile bus! | | +| Forward Creative Developer | 9.6.7 | Unknown | | I'll transmit the online SSL feed, that should feed the SSL feed! | We need to synthesize the cross-platform SMS circuit! | http://pearline.com | +| 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! | | | +| Central Marketing Assistant | 9.5.8 | Overwrite | I'll navigate the redundant RAM capacitor, that should capacitor the RAM capacitor! | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | http://julia.biz | +| Legacy Interactions Analyst | 3.0.8 | Url | hacking the hard drive won't do anything, we need to generate the open-source RSS hard drive! | connecting the system won't do anything, we need to synthesize the mobile ADP system! | | | +| ----------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_7f47fd5bc3a8779c.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_7f47fd5bc3a8779c.verified.txt new file mode 100644 index 00000000..e0936383 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_7f47fd5bc3a8779c.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | +| Package | Version | License Information Origin | +| ------- | ------- | -------------------------- | +| ------- | ------- | -------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_82d20a0606ec22c9.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_82d20a0606ec22c9.verified.txt new file mode 100644 index 00000000..13892a79 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_82d20a0606ec22c9.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_834a898a9c3b075f.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_834a898a9c3b075f.verified.txt new file mode 100644 index 00000000..982ccbd9 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_834a898a9c3b075f.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_83a38fea305e70b6.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_83a38fea305e70b6.verified.txt new file mode 100644 index 00000000..b9eecacc --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_83a38fea305e70b6.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ------- | +| Package | Version | License Information Origin | License Expression | Authors | +| ------- | ------- | -------------------------- | ------------------ | ------- | +| ------- | ------- | -------------------------- | ------------------ | ------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_84ffb4652e46dfd7.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_84ffb4652e46dfd7.verified.txt new file mode 100644 index 00000000..9fcafcca --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_84ffb4652e46dfd7.verified.txt @@ -0,0 +1,84 @@ +| --------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | +| --------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | +| District Mobility Administrator | 3.2.3 | Unknown | | Christopher Dietrich,Christopher Dietrich,Christopher Dietrich,Christopher Dietrich | | +| Dynamic Integration Assistant | 2.1.6 | Unknown | | | https://gerson.info | +| Future Optimization Associate | 4.0.5 | Unknown | | Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel | https://linnie.net | +| Global Integration Assistant | 5.0.1 | Unknown | | | http://demarco.com | +| Human Implementation Producer | 0.9.1 | Url | | | | +| Future Tactics Producer | 5.8.9 | Url | navigating the pixel won't do anything, we need to parse the back-end IB pixel! | | | +| Dynamic Applications Director | 5.1.4 | Unknown | | Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel | | +| Principal Factors Producer | 0.8.5 | Unknown | connecting the system won't do anything, we need to override the back-end SQL system! | Devin Nolan | http://toby.info | +| Customer Operations Liaison | 9.0.9 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | | +| 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 | +| Regional Integration Consultant | 5.3.8 | Expression | | | http://michael.name | +| Forward Division Strategist | 5.7.1 | Expression | You can't reboot the program without transmitting the mobile SMTP program! | Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode | https://esperanza.name | +| Investor Interactions Designer | 1.9.4 | Overwrite | | | https://octavia.name | +| Legacy Response Analyst | 9.2.7 | Unknown | | Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata | http://martine.info | +| Dynamic Mobility Technician | 6.0.2 | Expression | | | https://keeley.net | +| Internal Web Associate | 6.2.5 | Expression | | | https://arvel.name | +| Forward Intranet Technician | 2.5.3 | Expression | | Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton | https://ruby.biz | +| Senior Group Designer | 3.0.6 | Url | The AGP pixel is down, hack the neural pixel so we can hack the AGP pixel! | | | +| Central Applications Planner | 6.6.9 | Overwrite | | Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke | http://ava.org | +| Future Directives Associate | 1.1.1 | Expression | | Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe | https://shayne.name | +| Dynamic Brand Agent | 2.9.2 | Expression | quantifying the application won't do anything, we need to hack the haptic RAM application! | Bertha Schultz,Bertha Schultz | https://reese.info | +| District Intranet Agent | 1.1.6 | Url | You can't calculate the application without synthesizing the primary JBOD application! | | | +| Internal Division Agent | 2.4.2 | Url | | Gary Von,Gary Von,Gary Von | | +| District Identity Administrator | 2.9.6 | Unknown | | Isabel Schmitt,Isabel Schmitt,Isabel Schmitt,Isabel Schmitt | http://duncan.name | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | http://hanna.net | +| Central Identity Analyst | 8.9.6 | Expression | | | http://leta.org | +| Dynamic Accounts Architect | 9.8.0 | Overwrite | | | | +| Forward Integration Specialist | 8.7.1 | Expression | | | http://jordon.net | +| Senior Response Officer | 2.8.2 | Expression | | Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann | | +| Dynamic Research Designer | 5.6.8 | Unknown | If we connect the program, we can get to the SQL program through the digital SQL program! | | | +| Corporate Quality Planner | 6.6.3 | Url | 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 | | +| Product Solutions Manager | 9.5.2 | Overwrite | I'll hack the primary SDD card, that should card the SDD card! | Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach | | +| Customer Group Director | 2.5.2 | Expression | You can't index the pixel without copying the redundant XML pixel! | Vera Krajcik,Vera Krajcik,Vera Krajcik,Vera Krajcik | https://eloise.name | +| Future Interactions Developer | 1.1.7 | Unknown | If we reboot the matrix, we can get to the CSS matrix through the cross-platform CSS matrix! | | | +| Future Configuration Architect | 4.2.6 | Expression | I'll generate the primary TCP bus, that should bus the TCP bus! | Victoria Padberg,Victoria Padberg,Victoria Padberg,Victoria Padberg,Victoria Padberg,Victoria Padberg | | +| Human Web Liaison | 8.1.1 | Unknown | | | https://imogene.org | +| National Quality Executive | 4.5.1 | Expression | Use the solid state TCP driver, then you can generate the solid state driver! | | http://rylan.com | +| Central Mobility Executive | 5.0.3 | Unknown | | Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling | | +| Lead Identity Developer | 7.1.0 | Unknown | | Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover | https://eve.com | +| Principal Group Strategist | 4.1.0 | Url | I'll bypass the primary GB bandwidth, that should bandwidth the GB bandwidth! | | | +| Dynamic Metrics Coordinator | 5.8.1 | Unknown | overriding the circuit won't do anything, we need to copy the mobile AGP circuit! | Helen Fisher,Helen Fisher,Helen Fisher,Helen Fisher,Helen Fisher | | +| Global Paradigm Producer | 1.8.4 | Overwrite | If we quantify the protocol, we can get to the IB protocol through the auxiliary IB protocol! | | https://london.biz | +| Investor Communications Associate | 0.7.2 | Expression | | Arnold Franecki,Arnold Franecki | http://modesto.info | +| Future Applications Facilitator | 0.1.5 | Expression | transmitting the program won't do anything, we need to bypass the virtual HTTP program! | | | +| Senior Applications Technician | 7.8.2 | Overwrite | | Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert | | +| Future Applications Engineer | 6.8.5 | Unknown | 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 | +| Human Security Administrator | 9.8.5 | Overwrite | I'll synthesize the redundant XML feed, that should feed the XML feed! | Mario Stamm,Mario Stamm,Mario Stamm,Mario Stamm,Mario Stamm,Mario Stamm | | +| Forward Factors Architect | 6.7.6 | Overwrite | | Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt | | +| Corporate Mobility Consultant | 1.9.0 | Expression | | | http://letha.name | +| Investor Configuration Technician | 1.9.1 | Url | We need to copy the primary FTP bus! | Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin | http://malvina.name | +| Direct Accountability Producer | 1.8.1 | Url | | | http://justine.net | +| Principal Intranet Architect | 4.9.3 | Expression | | | | +| District Factors Associate | 0.2.6 | Expression | | Betsy Powlowski | https://cloyd.biz | +| Global Markets Designer | 1.7.0 | Overwrite | Use the multi-byte COM feed, then you can parse the multi-byte feed! | | https://toby.biz | +| Senior Factors Technician | 3.2.5 | Overwrite | You can't input the protocol without copying the auxiliary USB protocol! | Lee Zieme,Lee Zieme,Lee Zieme,Lee Zieme,Lee Zieme | | +| Lead Solutions Technician | 1.5.7 | Unknown | | | | +| Investor Assurance Technician | 7.3.8 | Overwrite | | Merle Hirthe | | +| Lead Implementation Supervisor | 4.9.9 | Overwrite | The ADP card is down, hack the solid state card so we can hack the ADP card! | Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis | http://katlynn.net | +| Direct Security Producer | 9.0.7 | Url | | | http://evert.net | +| Dynamic Division Specialist | 9.6.4 | Expression | | | https://keenan.net | +| Global Directives Orchestrator | 8.7.6 | Expression | | Tommy Franecki,Tommy Franecki | | +| Regional Security Agent | 6.2.7 | Overwrite | | | https://kenyon.org | +| Regional Mobility Designer | 8.5.4 | Url | | | http://brady.net | +| Forward Program Officer | 4.2.4 | Unknown | quantifying the capacitor won't do anything, we need to override the open-source AI capacitor! | Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin | | +| Regional Paradigm Director | 3.0.9 | Unknown | The COM pixel is down, quantify the virtual pixel so we can quantify the COM pixel! | | | +| District Brand Producer | 9.3.8 | Overwrite | Use the redundant AGP application, then you can generate the redundant application! | Clarence Metz,Clarence Metz,Clarence Metz | | +| Global Data Administrator | 0.8.4 | Unknown | | Frederick Leffler,Frederick Leffler,Frederick Leffler | https://barrett.com | +| Forward Web Designer | 0.1.4 | Overwrite | | | https://gerard.net | +| Forward Accounts Consultant | 8.9.0 | Expression | | | | +| Dynamic Group Representative | 9.8.1 | Unknown | | | | +| Dynamic Integration Assistant | 2.7.5 | Overwrite | I'll back up the 1080p RSS matrix, that should matrix the RSS matrix! | | | +| Legacy Communications Manager | 0.1.8 | Unknown | | | http://gus.info | +| Product Metrics Representative | 2.7.9 | Expression | connecting the feed won't do anything, we need to transmit the primary IB feed! | Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson | http://denis.info | +| Legacy Assurance Representative | 6.4.9 | Unknown | | Diane Gutkowski,Diane Gutkowski,Diane Gutkowski,Diane Gutkowski,Diane Gutkowski | https://maye.info | +| District Metrics Associate | 8.1.6 | Overwrite | | | http://jaylin.org | +| Regional Factors Analyst | 1.5.7 | Overwrite | | | | +| Legacy Data Consultant | 5.8.8 | Unknown | Try to connect the JSON pixel, maybe it will connect the primary pixel! | | | +| Global Mobility Associate | 0.6.4 | Expression | We need to hack the haptic XSS program! | | https://brooke.org | +| --------------------------------- | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_85e85fe19b8fa300.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_85e85fe19b8fa300.verified.txt new file mode 100644 index 00000000..1a068e34 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_85e85fe19b8fa300.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------- | ------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_8752bca4f23969a5.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_8752bca4f23969a5.verified.txt new file mode 100644 index 00000000..0670ed22 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_8752bca4f23969a5.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | --------- | ------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | --------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | --------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_8a5901af451db8bf.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_8a5901af451db8bf.verified.txt new file mode 100644 index 00000000..e0936383 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_8a5901af451db8bf.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | +| Package | Version | License Information Origin | +| ------- | ------- | -------------------------- | +| ------- | ------- | -------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_8a66380b02728ba5.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_8a66380b02728ba5.verified.txt new file mode 100644 index 00000000..1a068e34 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_8a66380b02728ba5.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------- | ------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_8dec82ffcf646af7.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_8dec82ffcf646af7.verified.txt new file mode 100644 index 00000000..171c4a01 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_8dec82ffcf646af7.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | +| Package | Version | License Information Origin | License Expression | +| ------- | ------- | -------------------------- | ------------------ | +| ------- | ------- | -------------------------- | ------------------ | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_8e17cb81e46b82a5.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_8e17cb81e46b82a5.verified.txt new file mode 100644 index 00000000..982ccbd9 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_8e17cb81e46b82a5.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_8ee6aa36725e8611.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_8ee6aa36725e8611.verified.txt new file mode 100644 index 00000000..1a068e34 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_8ee6aa36725e8611.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------- | ------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_9716f5dc9aa3734d.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_9716f5dc9aa3734d.verified.txt new file mode 100644 index 00000000..e0936383 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_9716f5dc9aa3734d.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | +| Package | Version | License Information Origin | +| ------- | ------- | -------------------------- | +| ------- | ------- | -------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_971dc44de97467b3.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_971dc44de97467b3.verified.txt new file mode 100644 index 00000000..1898f232 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_971dc44de97467b3.verified.txt @@ -0,0 +1,23 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Configuration Liaison | 1.8.9 | Expression | | connecting the transmitter won't do anything, we need to program the cross-platform XSS transmitter! | | | http://esther.biz | +| Chief Functionality Planner | 5.1.2 | Unknown | | I'll calculate the 1080p HDD system, that should system the HDD system! | | Matt Mills,Matt Mills | http://myrtice.com | +| Corporate Intranet Associate | 7.5.1 | Overwrite | | 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! | | | +| District Creative Designer | 1.4.6 | Url | We need to program the haptic IB panel! | | | | http://cameron.info | +| Customer Interactions Representative | 0.8.8 | Url | We need to quantify the digital SSL array! | | | | http://heather.name | +| Dynamic Factors Producer | 5.7.1 | Url | | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | | | +| Central Tactics Director | 4.6.7 | Url | backing up the system won't do anything, we need to parse the neural CSS system! | We need to transmit the back-end RSS transmitter! | | Doyle Osinski,Doyle Osinski,Doyle Osinski,Doyle Osinski | https://valentina.net | +| Global Usability Manager | 9.1.0 | Overwrite | | Try to back up the THX interface, maybe it will back up the auxiliary interface! | | | http://vella.com | +| Internal Factors Facilitator | 2.6.3 | Url | | Try to copy the PNG sensor, maybe it will copy the 1080p sensor! | | Mable Kris,Mable Kris,Mable Kris,Mable Kris,Mable Kris | http://melba.name | +| Human Accountability Developer | 6.9.0 | Unknown | If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit! | | | | | +| Future Accounts Designer | 5.1.9 | Expression | We need to navigate the wireless SAS pixel! | | | | | +| Global Markets Administrator | 8.6.8 | Expression | 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! | The SSL application is down, reboot the bluetooth application so we can reboot the SSL application! | Julius Bernhard,Julius Bernhard,Julius Bernhard,Julius Bernhard | https://lois.biz | +| Dynamic Configuration Assistant | 3.2.1 | Expression | | 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 | | +| Investor Interactions Designer | 1.9.4 | Url | | | parsing the card won't do anything, we need to synthesize the online SQL card! | Stella Barton,Stella Barton | https://octavia.name | +| Global Configuration Consultant | 5.9.5 | Expression | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | bypassing the bus won't do anything, we need to calculate the virtual GB bus! | | Guadalupe Littel,Guadalupe Littel,Guadalupe Littel | | +| Regional Factors Designer | 7.4.1 | Url | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | Use the haptic RSS port, then you can transmit the haptic port! | Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus | | +| Customer Metrics Analyst | 6.7.1 | Unknown | | | | | | +| National Security Orchestrator | 3.5.6 | Expression | Try to copy the HDD array, maybe it will copy the back-end array! | 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! | Roderick Koelpin,Roderick Koelpin,Roderick Koelpin | | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_9a26a71813ee32a3.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_9a26a71813ee32a3.verified.txt new file mode 100644 index 00000000..80092189 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_9a26a71813ee32a3.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------- | ------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_9be8fc62eb0bfb55.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_9be8fc62eb0bfb55.verified.txt new file mode 100644 index 00000000..97367809 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_9be8fc62eb0bfb55.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ------- | ------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_9ea6bcf2528452ab.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_9ea6bcf2528452ab.verified.txt new file mode 100644 index 00000000..36eb0ec2 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_9ea6bcf2528452ab.verified.txt @@ -0,0 +1,82 @@ +| ----------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | +| ----------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | +| International Tactics Administrator | 9.9.9 | Url | | | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | +| Chief Infrastructure Specialist | 9.0.5 | Overwrite | hacking the port won't do anything, we need to back up the optical SMS port! | | Jackie Schumm | | +| International Brand Strategist | 3.9.3 | Url | | | Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy,Ginger Murphy | https://rowena.info | +| Human Paradigm Assistant | 8.8.8 | Expression | | | Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich,Lynne Streich | | +| Forward Data Orchestrator | 3.3.5 | Expression | Use the haptic XML driver, then you can index the haptic driver! | compressing the system won't do anything, we need to compress the optical RSS system! | | | +| Global Identity Supervisor | 0.9.1 | Overwrite | | | | | +| Human Markets Planner | 5.0.1 | Expression | Try to back up the COM driver, maybe it will back up the bluetooth driver! | | | | +| Principal Brand Executive | 7.2.7 | Unknown | | | | https://dariana.com | +| Customer Program Developer | 2.9.8 | Expression | | You can't transmit the pixel without calculating the bluetooth FTP pixel! | | http://lenora.com | +| Dynamic Security Specialist | 7.8.5 | Overwrite | Try to input the GB pixel, maybe it will input the wireless pixel! | You can't transmit the bus without indexing the digital TCP bus! | Guy Waters,Guy Waters | http://nova.biz | +| Human Program Analyst | 3.1.8 | Expression | If we back up the application, we can get to the USB application through the cross-platform USB application! | | | http://efrain.org | +| Product Directives Engineer | 8.2.3 | Unknown | transmitting the bus won't do anything, we need to navigate the online IB bus! | | Maggie Lindgren | | +| Customer Web Assistant | 1.9.0 | Unknown | | | | | +| Direct Division Officer | 6.5.6 | Url | transmitting the protocol won't do anything, we need to generate the multi-byte THX protocol! | | Glenda Schuppe,Glenda Schuppe | http://catherine.name | +| Product Solutions Manager | 9.5.2 | Overwrite | I'll hack the primary SDD card, that should card the SDD card! | hacking the transmitter won't do anything, we need to index the open-source CSS transmitter! | Sergio Bailey,Sergio Bailey,Sergio Bailey | | +| Regional Optimization Administrator | 3.6.4 | Expression | | I'll synthesize the multi-byte SSL hard drive, that should hard drive the SSL hard drive! | | http://serenity.info | +| Dynamic Data Technician | 4.2.3 | Url | I'll copy the optical RAM feed, that should feed the RAM feed! | | June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds,June Reynolds | http://nia.info | +| International Solutions Planner | 9.0.0 | Url | Use the multi-byte SMTP program, then you can synthesize the multi-byte program! | | | | +| Principal Operations Assistant | 0.9.0 | Url | I'll copy the auxiliary HDD bus, that should bus the HDD bus! | I'll copy the digital USB circuit, that should circuit the USB circuit! | | | +| Future Configuration Officer | 7.6.0 | Unknown | You can't compress the alarm without parsing the optical JBOD alarm! | I'll compress the back-end SSL system, that should system the SSL system! | Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie,Kelvin Ritchie | | +| Lead Program Technician | 5.8.9 | Expression | | We need to transmit the back-end AGP sensor! | Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer,Domingo Pfeffer | http://curtis.org | +| Dynamic Security Director | 0.0.2 | Url | transmitting the feed won't do anything, we need to navigate the redundant SDD feed! | Try to parse the HTTP port, maybe it will parse the bluetooth port! | Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block,Jackie Block | | +| Human Tactics Facilitator | 5.7.0 | Url | Try to bypass the HTTP application, maybe it will bypass the digital application! | | | | +| 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 Accounts Facilitator | 7.7.8 | Expression | | | Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman,Forrest Wilderman | http://scottie.biz | +| Customer Mobility Assistant | 4.2.9 | 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 | http://adonis.biz | +| Global Optimization Architect | 1.5.0 | Unknown | Try to navigate the SCSI sensor, maybe it will navigate the mobile sensor! | | | | +| Dynamic Implementation Engineer | 6.7.1 | Overwrite | We need to transmit the open-source EXE interface! | | | http://margie.info | +| National Assurance Planner | 2.7.7 | Unknown | | I'll reboot the online AGP alarm, that should alarm the AGP alarm! | Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag,Jacquelyn Haag | | +| Senior Configuration Developer | 4.0.9 | Url | Use the primary SCSI matrix, then you can program the primary matrix! | If we parse the interface, we can get to the JSON interface through the mobile JSON interface! | Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle,Tracey Hickle | | +| Customer Branding Orchestrator | 8.3.7 | Overwrite | | We need to bypass the neural USB capacitor! | Nora Dietrich | http://nona.com | +| Product Functionality Supervisor | 9.4.5 | Overwrite | Use the 1080p AI microchip, then you can reboot the 1080p microchip! | Use the open-source ADP matrix, then you can copy the open-source matrix! | | | +| Legacy Security Facilitator | 1.9.0 | Expression | | Use the cross-platform ADP alarm, then you can back up the cross-platform alarm! | | https://edythe.info | +| Principal Intranet Architect | 4.9.3 | Unknown | | | | | +| Chief Program Associate | 2.6.7 | Unknown | We need to compress the optical PNG array! | | Wilbert Kunze,Wilbert Kunze,Wilbert Kunze,Wilbert Kunze | http://coy.info | +| Customer Communications Engineer | 6.9.4 | Overwrite | | | Tanya Reinger,Tanya Reinger,Tanya Reinger | http://tito.name | +| Lead Solutions Technician | 1.5.7 | Unknown | | | | | +| International Branding Producer | 3.8.2 | Expression | We need to generate the solid state AGP microchip! | | | | +| Lead Operations Supervisor | 4.5.2 | Expression | The AI panel is down, transmit the open-source panel so we can transmit the AI panel! | | | | +| Dynamic Factors Associate | 1.8.3 | Unknown | | You can't navigate the panel without calculating the open-source THX panel! | | http://dovie.name | +| Corporate Marketing Coordinator | 3.6.1 | Overwrite | | | | https://marcos.org | +| Regional Metrics Strategist | 1.2.1 | Unknown | | Try to override the GB driver, maybe it will override the digital driver! | | | +| Human Accounts Orchestrator | 4.1.6 | Url | | | | | +| Regional Functionality Agent | 5.9.9 | Overwrite | We need to index the 1080p SAS hard drive! | I'll connect the digital JBOD application, that should application the JBOD application! | Gloria Williamson,Gloria Williamson,Gloria Williamson,Gloria Williamson | http://arthur.net | +| Dynamic Solutions Agent | 0.0.5 | Overwrite | Use the haptic USB card, then you can navigate the haptic card! | | | | +| District Optimization Technician | 5.2.3 | Overwrite | | | Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti,Doyle Bartoletti | https://douglas.info | +| District Assurance Technician | 8.5.5 | Overwrite | | | | http://zander.com | +| Regional Directives Liaison | 4.7.8 | Expression | If we connect the interface, we can get to the SCSI interface through the auxiliary SCSI interface! | | Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic,Betty Kuhic | https://glennie.biz | +| Chief Factors Developer | 5.9.5 | Url | | Try to connect the ADP system, maybe it will connect the solid state system! | Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady,Sylvia Grady | | +| Central Research Technician | 2.8.8 | Url | | You can't generate the program without connecting the bluetooth USB program! | | | +| Future Tactics Assistant | 1.5.5 | Expression | The IB sensor is down, reboot the virtual sensor so we can reboot the IB sensor! | If we calculate the matrix, we can get to the SMS matrix through the bluetooth SMS matrix! | | https://giovanny.net | +| District Interactions Supervisor | 4.5.2 | Url | The XSS capacitor is down, generate the bluetooth capacitor so we can generate the XSS capacitor! | The ADP firewall is down, input the primary firewall so we can input the ADP firewall! | | | +| Corporate Intranet Specialist | 3.5.6 | Expression | | | Edmund Lehner,Edmund Lehner,Edmund Lehner,Edmund Lehner | | +| Human Identity Representative | 4.1.5 | Overwrite | The SAS bus is down, program the neural bus so we can program the SAS bus! | | Joyce Auer,Joyce Auer,Joyce Auer | http://alyce.biz | +| Central Division Administrator | 1.0.4 | Overwrite | We need to program the optical COM microchip! | We need to hack the haptic SAS microchip! | | | +| Dynamic Division Representative | 7.3.5 | Unknown | | I'll index the haptic FTP alarm, that should alarm the FTP alarm! | Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson,Kelley Runolfsson | http://taurean.net | +| Forward Usability Specialist | 5.6.9 | Overwrite | I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth! | | | | +| Direct Brand Director | 4.7.4 | Url | You can't navigate the capacitor without programming the solid state SQL capacitor! | | | | +| Global Optimization Engineer | 8.7.9 | Expression | | quantifying the transmitter won't do anything, we need to synthesize the auxiliary FTP transmitter! | | http://aniya.org | +| Investor Quality Associate | 0.5.1 | Expression | | Try to reboot the SSL alarm, maybe it will reboot the solid state alarm! | Carrie Hansen,Carrie Hansen,Carrie Hansen,Carrie Hansen | https://ezequiel.biz | +| Investor Tactics Director | 0.4.3 | Expression | | | | https://aylin.com | +| Global Paradigm Assistant | 8.0.5 | Expression | We need to calculate the solid state HTTP hard drive! | | | https://randy.org | +| Customer Solutions Officer | 4.5.2 | Expression | 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 Branding Manager | 1.4.0 | Overwrite | You can't navigate the application without generating the cross-platform COM application! | Try to program the FTP alarm, maybe it will program the virtual alarm! | | http://dario.info | +| ----------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_9ed6df5fefaf5f0d.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_9ed6df5fefaf5f0d.verified.txt new file mode 100644 index 00000000..3d5bde85 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_9ed6df5fefaf5f0d.verified.txt @@ -0,0 +1,18 @@ +| ----------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | -------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | +| ----------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | -------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | +| International Tactics Administrator | 9.9.9 | Url | | | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | +| ----------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | -------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_9f512812085d1780.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_9f512812085d1780.verified.txt new file mode 100644 index 00000000..27a731d3 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_9f512812085d1780.verified.txt @@ -0,0 +1,5 @@ +| ---------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | +| Package | Version | License Information Origin | License Expression | Authors | +| ---------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_a54f0bfb1f1efd34.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_a54f0bfb1f1efd34.verified.txt new file mode 100644 index 00000000..e0936383 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_a54f0bfb1f1efd34.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | +| Package | Version | License Information Origin | +| ------- | ------- | -------------------------- | +| ------- | ------- | -------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_a68f863ab8a91a3a.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_a68f863ab8a91a3a.verified.txt new file mode 100644 index 00000000..f97b355d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_a68f863ab8a91a3a.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_a74892fd232cb9fe.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_a74892fd232cb9fe.verified.txt new file mode 100644 index 00000000..e0936383 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_a74892fd232cb9fe.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | +| Package | Version | License Information Origin | +| ------- | ------- | -------------------------- | +| ------- | ------- | -------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_a7489861e31d7df1.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_a7489861e31d7df1.verified.txt new file mode 100644 index 00000000..ac0c6eb4 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_a7489861e31d7df1.verified.txt @@ -0,0 +1,85 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | -------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | -------------------- | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | +| Investor Interactions Liaison | 4.4.9 | Overwrite | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | | +| Senior Optimization Assistant | 3.6.0 | Overwrite | | overriding the pixel won't do anything, we need to copy the optical JSON pixel! | http://akeem.info | +| Product Assurance Technician | 0.8.2 | Overwrite | | | https://steve.info | +| Central Web Assistant | 4.2.1 | Unknown | | Use the wireless ADP array, then you can input the wireless array! | https://verda.net | +| Legacy Directives Officer | 2.4.4 | Url | | The PCI program is down, hack the multi-byte program so we can hack the PCI program! | http://sedrick.biz | +| Chief Division Producer | 2.3.9 | Overwrite | | | | +| Direct Mobility Designer | 7.7.3 | Expression | | | http://geovanny.info | +| International Functionality Agent | 8.7.6 | Unknown | | If we hack the card, we can get to the JBOD card through the optical JBOD card! | http://jalyn.org | +| Customer Functionality Consultant | 5.5.1 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | http://terence.com | +| 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 | +| Investor Implementation Technician | 2.7.9 | Unknown | | | http://crystal.name | +| Direct Assurance Strategist | 1.3.7 | Expression | The RSS firewall is down, hack the neural firewall so we can hack the RSS firewall! | | | +| Principal Markets Designer | 3.8.8 | Overwrite | overriding the transmitter won't do anything, we need to generate the cross-platform SCSI transmitter! | | | +| Forward Functionality Developer | 5.1.1 | Url | | | | +| Global Program Representative | 5.1.0 | Url | | If we back up the monitor, we can get to the PCI monitor through the virtual PCI monitor! | | +| Corporate Marketing Assistant | 8.7.9 | Url | | You can't program the firewall without connecting the wireless AI firewall! | http://arlene.biz | +| Senior Factors Administrator | 1.6.1 | Expression | I'll calculate the solid state ADP panel, that should panel the ADP panel! | If we generate the circuit, we can get to the XSS circuit through the primary XSS circuit! | | +| Chief Applications Facilitator | 7.7.6 | Overwrite | | parsing the card won't do anything, we need to synthesize the online SQL card! | | +| Dynamic Quality Analyst | 0.9.5 | Overwrite | We need to index the optical HTTP application! | I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor! | | +| National Communications Orchestrator | 4.5.1 | Unknown | The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit! | | | +| Corporate Tactics Director | 2.5.7 | Url | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | http://marcos.info | +| Human Group Designer | 9.9.1 | Expression | Use the haptic XSS application, then you can synthesize the haptic application! | If we transmit the hard drive, we can get to the AGP hard drive through the bluetooth AGP hard drive! | http://jodie.org | +| National Research Facilitator | 6.0.6 | Expression | Use the primary EXE array, then you can navigate the primary array! | | | +| Lead Branding Developer | 4.1.5 | Url | | | http://abe.com | +| Human Directives Engineer | 5.3.9 | Url | | | | +| National Applications Designer | 6.4.9 | Expression | | Use the back-end SMS feed, then you can program the back-end feed! | | +| Regional Factors Designer | 7.4.1 | Overwrite | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | | +| Global Division Designer | 8.2.7 | Expression | Try to program the EXE hard drive, maybe it will program the virtual hard drive! | | https://pamela.name | +| Dynamic Accountability Analyst | 4.9.7 | Overwrite | | | https://jaron.info | +| Regional Operations Coordinator | 0.2.5 | Unknown | | I'll hack the cross-platform SSL array, that should array the SSL array! | http://ena.com | +| National Creative Coordinator | 5.9.5 | Expression | | | https://bobbie.info | +| District Operations Director | 0.6.3 | Url | | We need to program the cross-platform FTP hard drive! | https://dejah.net | +| Forward Marketing Orchestrator | 1.6.4 | Overwrite | I'll connect the primary SQL sensor, that should sensor the SQL sensor! | The SMTP driver is down, bypass the mobile driver so we can bypass the SMTP driver! | https://lukas.com | +| Lead Usability Assistant | 1.3.4 | Overwrite | quantifying the matrix won't do anything, we need to synthesize the wireless PCI matrix! | Use the solid state SQL firewall, then you can connect the solid state firewall! | https://duane.info | +| Human Quality Facilitator | 1.2.0 | Expression | We need to copy the online THX firewall! | You can't calculate the application without calculating the auxiliary AI application! | | +| Human Program Technician | 2.8.4 | Unknown | | | http://tomasa.info | +| International Quality Director | 0.3.8 | Expression | | | | +| Corporate Directives Planner | 8.8.5 | Unknown | The CSS bus is down, generate the 1080p bus so we can generate the CSS bus! | We need to back up the 1080p SMTP feed! | | +| Dynamic Accountability Strategist | 7.0.9 | Unknown | You can't bypass the sensor without transmitting the neural JSON sensor! | | | +| Chief Intranet Facilitator | 6.6.1 | Expression | | | https://rosalind.net | +| Forward Configuration Supervisor | 9.0.8 | Overwrite | You can't program the protocol without overriding the primary IB protocol! | | http://quinn.name | +| Product Creative Facilitator | 8.4.6 | Unknown | 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://juliana.net | +| Global Mobility Facilitator | 9.5.8 | Expression | | | | +| Chief Factors Supervisor | 5.2.2 | Expression | | | http://helga.com | +| Principal Accounts Coordinator | 1.0.4 | Overwrite | | I'll connect the digital JSON bus, that should bus the JSON bus! | http://rene.com | +| Future Accounts Architect | 9.1.8 | Url | You can't bypass the firewall without indexing the multi-byte COM firewall! | | https://fermin.biz | +| Investor Creative Architect | 8.2.4 | Unknown | | | | +| National Solutions Associate | 9.1.2 | Overwrite | | | | +| Human Optimization Facilitator | 7.4.8 | Overwrite | 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! | https://cooper.name | +| Human Directives Specialist | 4.3.4 | Unknown | Use the digital XSS hard drive, then you can compress the digital hard drive! | You can't generate the card without synthesizing the bluetooth PNG card! | | +| Dynamic Factors Facilitator | 6.5.2 | Expression | | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | http://magnolia.com | +| Central Tactics Engineer | 6.3.5 | Unknown | connecting the bandwidth won't do anything, we need to bypass the multi-byte AI bandwidth! | | | +| National Intranet Technician | 8.0.0 | Overwrite | | | | +| Senior Security Consultant | 2.7.5 | Unknown | | | http://adelbert.biz | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | http://hanna.net | +| Central Identity Analyst | 8.9.6 | Expression | | | http://leta.org | +| Senior Brand Analyst | 2.5.0 | Url | | overriding the interface won't do anything, we need to override the virtual THX interface! | | +| Internal Directives Designer | 0.4.8 | Url | The EXE protocol is down, reboot the redundant protocol so we can reboot the EXE protocol! | | | +| Dynamic Division Consultant | 4.8.7 | Overwrite | Use the multi-byte IB microchip, then you can connect the multi-byte microchip! | backing up the feed won't do anything, we need to compress the haptic SMTP feed! | http://raquel.net | +| Human Operations Assistant | 0.7.2 | Overwrite | Use the haptic USB driver, then you can override the haptic driver! | | http://camila.net | +| Forward Intranet Engineer | 2.5.9 | Expression | The RSS sensor is down, input the 1080p sensor so we can input the RSS sensor! | Try to index the ADP port, maybe it will index the auxiliary port! | | +| Human Optimization Producer | 5.0.9 | Overwrite | | | | +| Dynamic Integration Architect | 1.6.3 | Overwrite | | The RAM feed is down, copy the neural feed so we can copy the RAM feed! | | +| Legacy Directives Supervisor | 9.6.2 | Url | The PNG circuit is down, back up the online circuit so we can back up the PNG circuit! | | | +| Direct Accountability Assistant | 2.2.8 | Url | bypassing the protocol won't do anything, we need to compress the primary HTTP protocol! | | http://natasha.info | +| International Intranet Planner | 6.4.6 | Url | The IB interface is down, program the redundant interface so we can program the IB interface! | | https://lenna.com | +| Direct Data Orchestrator | 2.4.5 | Expression | | Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor! | | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | -------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_a7f63bbf89878cbc.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_a7f63bbf89878cbc.verified.txt new file mode 100644 index 00000000..e0936383 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_a7f63bbf89878cbc.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | +| Package | Version | License Information Origin | +| ------- | ------- | -------------------------- | +| ------- | ------- | -------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_a84202f5174cd8f1.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_a84202f5174cd8f1.verified.txt new file mode 100644 index 00000000..b9eecacc --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_a84202f5174cd8f1.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ------- | +| Package | Version | License Information Origin | License Expression | Authors | +| ------- | ------- | -------------------------- | ------------------ | ------- | +| ------- | ------- | -------------------------- | ------------------ | ------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_a90d4827343436af.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_a90d4827343436af.verified.txt new file mode 100644 index 00000000..ac62de35 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_a90d4827343436af.verified.txt @@ -0,0 +1,9 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | +| Investor Intranet Producer | 5.4.1 | Ignored | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | http://hyman.org | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_a9215bd761040358.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_a9215bd761040358.verified.txt new file mode 100644 index 00000000..b72aad59 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_a9215bd761040358.verified.txt @@ -0,0 +1,85 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | -------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | -------------------- | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | +| Investor Interactions Liaison | 4.4.9 | Overwrite | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | | +| Senior Optimization Assistant | 3.6.0 | Overwrite | | overriding the pixel won't do anything, we need to copy the optical JSON pixel! | http://akeem.info | +| Product Assurance Technician | 0.8.2 | Overwrite | | | https://steve.info | +| Central Web Assistant | 4.2.1 | Unknown | | Use the wireless ADP array, then you can input the wireless array! | https://verda.net | +| Legacy Directives Officer | 2.4.4 | Url | | The PCI program is down, hack the multi-byte program so we can hack the PCI program! | http://sedrick.biz | +| Chief Division Producer | 2.3.9 | Overwrite | | | | +| Direct Mobility Designer | 7.7.3 | Expression | | | http://geovanny.info | +| International Functionality Agent | 8.7.6 | Unknown | | If we hack the card, we can get to the JBOD card through the optical JBOD card! | http://jalyn.org | +| Customer Functionality Consultant | 5.5.1 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | http://terence.com | +| 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 | +| Investor Implementation Technician | 2.7.9 | Unknown | | | http://crystal.name | +| Direct Assurance Strategist | 1.3.7 | Expression | The RSS firewall is down, hack the neural firewall so we can hack the RSS firewall! | | | +| Principal Markets Designer | 3.8.8 | Overwrite | overriding the transmitter won't do anything, we need to generate the cross-platform SCSI transmitter! | | | +| Forward Functionality Developer | 5.1.1 | Url | | | | +| Global Program Representative | 5.1.0 | Url | | If we back up the monitor, we can get to the PCI monitor through the virtual PCI monitor! | | +| Corporate Marketing Assistant | 8.7.9 | Url | | You can't program the firewall without connecting the wireless AI firewall! | http://arlene.biz | +| Senior Factors Administrator | 1.6.1 | Expression | I'll calculate the solid state ADP panel, that should panel the ADP panel! | If we generate the circuit, we can get to the XSS circuit through the primary XSS circuit! | | +| Chief Applications Facilitator | 7.7.6 | Overwrite | | parsing the card won't do anything, we need to synthesize the online SQL card! | | +| Dynamic Quality Analyst | 0.9.5 | Overwrite | We need to index the optical HTTP application! | I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor! | | +| National Communications Orchestrator | 4.5.1 | Unknown | The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit! | | | +| Corporate Tactics Director | 2.5.7 | Url | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | http://marcos.info | +| Human Group Designer | 9.9.1 | Expression | Use the haptic XSS application, then you can synthesize the haptic application! | If we transmit the hard drive, we can get to the AGP hard drive through the bluetooth AGP hard drive! | http://jodie.org | +| National Research Facilitator | 6.0.6 | Expression | Use the primary EXE array, then you can navigate the primary array! | | | +| Lead Branding Developer | 4.1.5 | Url | | | http://abe.com | +| Human Directives Engineer | 5.3.9 | Url | | | | +| National Applications Designer | 6.4.9 | Expression | | Use the back-end SMS feed, then you can program the back-end feed! | | +| Regional Factors Designer | 7.4.1 | Overwrite | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | | +| Global Division Designer | 8.2.7 | Expression | Try to program the EXE hard drive, maybe it will program the virtual hard drive! | | https://pamela.name | +| Dynamic Accountability Analyst | 4.9.7 | Overwrite | | | https://jaron.info | +| Regional Operations Coordinator | 0.2.5 | Unknown | | I'll hack the cross-platform SSL array, that should array the SSL array! | http://ena.com | +| National Creative Coordinator | 5.9.5 | Expression | | | https://bobbie.info | +| District Operations Director | 0.6.3 | Url | | We need to program the cross-platform FTP hard drive! | https://dejah.net | +| Forward Marketing Orchestrator | 1.6.4 | Overwrite | I'll connect the primary SQL sensor, that should sensor the SQL sensor! | The SMTP driver is down, bypass the mobile driver so we can bypass the SMTP driver! | https://lukas.com | +| Lead Usability Assistant | 1.3.4 | Overwrite | quantifying the matrix won't do anything, we need to synthesize the wireless PCI matrix! | Use the solid state SQL firewall, then you can connect the solid state firewall! | https://duane.info | +| Human Quality Facilitator | 1.2.0 | Expression | We need to copy the online THX firewall! | You can't calculate the application without calculating the auxiliary AI application! | | +| Human Program Technician | 2.8.4 | Unknown | | | http://tomasa.info | +| International Quality Director | 0.3.8 | Expression | | | | +| Corporate Directives Planner | 8.8.5 | Unknown | The CSS bus is down, generate the 1080p bus so we can generate the CSS bus! | We need to back up the 1080p SMTP feed! | | +| Dynamic Accountability Strategist | 7.0.9 | Unknown | You can't bypass the sensor without transmitting the neural JSON sensor! | | | +| Chief Intranet Facilitator | 6.6.1 | Expression | | | https://rosalind.net | +| Forward Configuration Supervisor | 9.0.8 | Overwrite | You can't program the protocol without overriding the primary IB protocol! | | http://quinn.name | +| Product Creative Facilitator | 8.4.6 | Unknown | 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://juliana.net | +| Global Mobility Facilitator | 9.5.8 | Expression | | | | +| Chief Factors Supervisor | 5.2.2 | Expression | | | http://helga.com | +| Principal Accounts Coordinator | 1.0.4 | Overwrite | | I'll connect the digital JSON bus, that should bus the JSON bus! | http://rene.com | +| Future Accounts Architect | 9.1.8 | Url | You can't bypass the firewall without indexing the multi-byte COM firewall! | | https://fermin.biz | +| Investor Creative Architect | 8.2.4 | Unknown | | | | +| National Solutions Associate | 9.1.2 | Overwrite | | | | +| Human Optimization Facilitator | 7.4.8 | Overwrite | 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! | https://cooper.name | +| Human Directives Specialist | 4.3.4 | Unknown | Use the digital XSS hard drive, then you can compress the digital hard drive! | You can't generate the card without synthesizing the bluetooth PNG card! | | +| Dynamic Factors Facilitator | 6.5.2 | Expression | | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | http://magnolia.com | +| Central Tactics Engineer | 6.3.5 | Unknown | connecting the bandwidth won't do anything, we need to bypass the multi-byte AI bandwidth! | | | +| National Intranet Technician | 8.0.0 | Overwrite | | | | +| Senior Security Consultant | 2.7.5 | Unknown | | | http://adelbert.biz | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | http://hanna.net | +| Central Identity Analyst | 8.9.6 | Expression | | | http://leta.org | +| Senior Brand Analyst | 2.5.0 | Url | | overriding the interface won't do anything, we need to override the virtual THX interface! | | +| Internal Directives Designer | 0.4.8 | Url | The EXE protocol is down, reboot the redundant protocol so we can reboot the EXE protocol! | | | +| Dynamic Division Consultant | 4.8.7 | Overwrite | Use the multi-byte IB microchip, then you can connect the multi-byte microchip! | backing up the feed won't do anything, we need to compress the haptic SMTP feed! | http://raquel.net | +| Human Operations Assistant | 0.7.2 | Overwrite | Use the haptic USB driver, then you can override the haptic driver! | | http://camila.net | +| Forward Intranet Engineer | 2.5.9 | Expression | The RSS sensor is down, input the 1080p sensor so we can input the RSS sensor! | Try to index the ADP port, maybe it will index the auxiliary port! | | +| Human Optimization Producer | 5.0.9 | Overwrite | | | | +| Dynamic Integration Architect | 1.6.3 | Overwrite | | The RAM feed is down, copy the neural feed so we can copy the RAM feed! | | +| Legacy Directives Supervisor | 9.6.2 | Url | The PNG circuit is down, back up the online circuit so we can back up the PNG circuit! | | | +| Direct Accountability Assistant | 2.2.8 | Url | bypassing the protocol won't do anything, we need to compress the primary HTTP protocol! | | http://natasha.info | +| International Intranet Planner | 6.4.6 | Url | The IB interface is down, program the redundant interface so we can program the IB interface! | | https://lenna.com | +| Direct Data Orchestrator | 2.4.5 | Expression | | Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor! | | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------- | -------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_aa234fcacfd10e4b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_aa234fcacfd10e4b.verified.txt new file mode 100644 index 00000000..982ccbd9 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_aa234fcacfd10e4b.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_aa81e1f4e60fbb80.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_aa81e1f4e60fbb80.verified.txt new file mode 100644 index 00000000..b71f703a --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_aa81e1f4e60fbb80.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | --------- | ------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | +| ------- | ------- | -------------------------- | ------------------ | --------- | ------- | +| ------- | ------- | -------------------------- | ------------------ | --------- | ------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_ac2402fa003a9975.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_ac2402fa003a9975.verified.txt new file mode 100644 index 00000000..171c4a01 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_ac2402fa003a9975.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | +| Package | Version | License Information Origin | License Expression | +| ------- | ------- | -------------------------- | ------------------ | +| ------- | ------- | -------------------------- | ------------------ | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_ad95c252a1cb2522.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_ad95c252a1cb2522.verified.txt new file mode 100644 index 00000000..ceb6a8b0 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_ad95c252a1cb2522.verified.txt @@ -0,0 +1,9 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------- | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | +| District Mobility Administrator | 3.2.3 | Unknown | | Christopher Dietrich,Christopher Dietrich,Christopher Dietrich,Christopher Dietrich | | +| Dynamic Integration Assistant | 2.1.6 | Unknown | | | https://gerson.info | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_b2414235c83e813a.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_b2414235c83e813a.verified.txt new file mode 100644 index 00000000..e0936383 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_b2414235c83e813a.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | +| Package | Version | License Information Origin | +| ------- | ------- | -------------------------- | +| ------- | ------- | -------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_b3260982b4c548d5.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_b3260982b4c548d5.verified.txt new file mode 100644 index 00000000..b9fcea62 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_b3260982b4c548d5.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | --------- | +| Package | Version | License Information Origin | License Expression | Copyright | +| ------- | ------- | -------------------------- | ------------------ | --------- | +| ------- | ------- | -------------------------- | ------------------ | --------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_b442703b6c7d8826.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_b442703b6c7d8826.verified.txt new file mode 100644 index 00000000..e6f498f1 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_b442703b6c7d8826.verified.txt @@ -0,0 +1,5 @@ +| ---------------------------- | ------- | -------------------------- | ------------------ | ----------- | ------------------------------------------------------------------------- | ------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | +| ---------------------------- | ------- | -------------------------- | ------------------ | ----------- | ------------------------------------------------------------------------- | ------------------- | +| Central Infrastructure Agent | 6.1.6 | Expression | | | You can't quantify the program without overriding the online SDD program! | | +| ---------------------------- | ------- | -------------------------- | ------------------ | ----------- | ------------------------------------------------------------------------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_b4546e74ca62c60c.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_b4546e74ca62c60c.verified.txt new file mode 100644 index 00000000..cd234fa7 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_b4546e74ca62c60c.verified.txt @@ -0,0 +1,5 @@ +| ---------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | +| Package | Version | License Information Origin | License Expression | +| ---------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | +| ---------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_b665ba88d438d211.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_b665ba88d438d211.verified.txt new file mode 100644 index 00000000..e0936383 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_b665ba88d438d211.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | +| Package | Version | License Information Origin | +| ------- | ------- | -------------------------- | +| ------- | ------- | -------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_b6a5b8535a5bbe2c.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_b6a5b8535a5bbe2c.verified.txt new file mode 100644 index 00000000..171c4a01 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_b6a5b8535a5bbe2c.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | +| Package | Version | License Information Origin | License Expression | +| ------- | ------- | -------------------------- | ------------------ | +| ------- | ------- | -------------------------- | ------------------ | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_ba2e9a1d086bdf39.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_ba2e9a1d086bdf39.verified.txt new file mode 100644 index 00000000..2ed7559c --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_ba2e9a1d086bdf39.verified.txt @@ -0,0 +1,9 @@ +| -------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | +| -------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | +| Internal Program Designer | 7.2.5 | Ignored | We need to hack the auxiliary COM hard drive! | | | | +| Global Implementation Strategist | 5.9.8 | Ignored | | | Colleen Schroeder,Colleen Schroeder | https://enos.info | +| -------------------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | -------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_ba32ddb9cfbf24be.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_ba32ddb9cfbf24be.verified.txt new file mode 100644 index 00000000..b9eecacc --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_ba32ddb9cfbf24be.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ------- | +| Package | Version | License Information Origin | License Expression | Authors | +| ------- | ------- | -------------------------- | ------------------ | ------- | +| ------- | ------- | -------------------------- | ------------------ | ------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_bac80f154e03b9c2.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_bac80f154e03b9c2.verified.txt new file mode 100644 index 00000000..1a068e34 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_bac80f154e03b9c2.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------- | ------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_bb88d40ff67a90ad.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_bb88d40ff67a90ad.verified.txt new file mode 100644 index 00000000..171c4a01 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_bb88d40ff67a90ad.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | +| Package | Version | License Information Origin | License Expression | +| ------- | ------- | -------------------------- | ------------------ | +| ------- | ------- | -------------------------- | ------------------ | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_bcb2895fa45df93d.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_bcb2895fa45df93d.verified.txt new file mode 100644 index 00000000..f97b355d --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_bcb2895fa45df93d.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_be4789dace582293.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_be4789dace582293.verified.txt new file mode 100644 index 00000000..42505b14 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_be4789dace582293.verified.txt @@ -0,0 +1,104 @@ +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | +| District Mobility Administrator | 3.2.3 | Unknown | | Christopher Dietrich,Christopher Dietrich,Christopher Dietrich,Christopher Dietrich | | +| Dynamic Integration Assistant | 2.1.6 | Unknown | | | https://gerson.info | +| Future Optimization Associate | 4.0.5 | Unknown | | Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel,Jeffrey Reichel | https://linnie.net | +| Global Integration Assistant | 5.0.1 | Unknown | | | http://demarco.com | +| Human Implementation Producer | 0.9.1 | Url | | | | +| Future Tactics Producer | 5.8.9 | Url | navigating the pixel won't do anything, we need to parse the back-end IB pixel! | | | +| Dynamic Applications Director | 5.1.4 | Unknown | | Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel,Violet Reichel | | +| Principal Factors Producer | 0.8.5 | Unknown | connecting the system won't do anything, we need to override the back-end SQL system! | Devin Nolan | http://toby.info | +| Future Directives Planner | 5.9.7 | Ignored | Use the wireless ADP array, then you can input the wireless array! | Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki,Jimmy Franecki | | +| Customer Operations Liaison | 9.0.9 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | | +| 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 | +| Regional Integration Consultant | 5.3.8 | Expression | | | http://michael.name | +| Central Applications Coordinator | 1.6.8 | Ignored | | | http://curtis.com | +| Forward Division Strategist | 5.7.1 | Expression | You can't reboot the program without transmitting the mobile SMTP program! | Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode,Monica Bode | https://esperanza.name | +| Investor Interactions Designer | 1.9.4 | Overwrite | | | https://octavia.name | +| Legacy Response Analyst | 9.2.7 | Unknown | | Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata,Perry Cummerata | http://martine.info | +| Dynamic Mobility Technician | 6.0.2 | Expression | | | https://keeley.net | +| Internal Web Associate | 6.2.5 | Expression | | | https://arvel.name | +| Senior Identity Specialist | 2.8.9 | Ignored | We need to program the primary THX protocol! | Barbara Osinski,Barbara Osinski,Barbara Osinski,Barbara Osinski,Barbara Osinski,Barbara Osinski,Barbara Osinski,Barbara Osinski,Barbara Osinski | https://kennedy.biz | +| Forward Intranet Technician | 2.5.3 | Expression | | Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton,Melinda Upton | https://ruby.biz | +| Senior Group Designer | 3.0.6 | Url | The AGP pixel is down, hack the neural pixel so we can hack the AGP pixel! | | | +| Product Intranet Assistant | 2.8.1 | Ignored | The THX circuit is down, copy the back-end circuit so we can copy the THX circuit! | | http://lynn.info | +| Central Applications Planner | 6.6.9 | Overwrite | | Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke,Bill Kassulke | http://ava.org | +| Future Directives Associate | 1.1.1 | Expression | | Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe,Edmund Schuppe | https://shayne.name | +| Dynamic Brand Agent | 2.9.2 | Expression | quantifying the application won't do anything, we need to hack the haptic RAM application! | Bertha Schultz,Bertha Schultz | https://reese.info | +| District Intranet Agent | 1.1.6 | Url | You can't calculate the application without synthesizing the primary JBOD application! | | | +| Global Group Planner | 5.4.5 | Ignored | | | | +| Internal Division Agent | 2.4.2 | Url | | Gary Von,Gary Von,Gary Von | | +| District Identity Administrator | 2.9.6 | Unknown | | Isabel Schmitt,Isabel Schmitt,Isabel Schmitt,Isabel Schmitt | http://duncan.name | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | http://hanna.net | +| Central Identity Analyst | 8.9.6 | Expression | | | http://leta.org | +| Senior Brand Analyst | 2.5.0 | Ignored | | Darlene Dickens,Darlene Dickens,Darlene Dickens,Darlene Dickens,Darlene Dickens,Darlene Dickens,Darlene Dickens,Darlene Dickens | | +| Senior Response Developer | 8.5.8 | Ignored | We need to input the open-source SAS feed! | Jackie Abbott,Jackie Abbott,Jackie Abbott,Jackie Abbott,Jackie Abbott,Jackie Abbott,Jackie Abbott,Jackie Abbott | | +| Dynamic Accounts Architect | 9.8.0 | Overwrite | | | | +| Forward Integration Specialist | 8.7.1 | Expression | | | http://jordon.net | +| Senior Response Officer | 2.8.2 | Expression | | Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann,Claudia Stiedemann | | +| Dynamic Research Designer | 5.6.8 | Unknown | If we connect the program, we can get to the SQL program through the digital SQL program! | | | +| Corporate Quality Planner | 6.6.3 | Url | 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 | | +| Product Solutions Manager | 9.5.2 | Overwrite | I'll hack the primary SDD card, that should card the SDD card! | Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach,Marvin Dach | | +| Customer Group Director | 2.5.2 | Expression | You can't index the pixel without copying the redundant XML pixel! | Vera Krajcik,Vera Krajcik,Vera Krajcik,Vera Krajcik | https://eloise.name | +| Future Interactions Developer | 1.1.7 | Unknown | If we reboot the matrix, we can get to the CSS matrix through the cross-platform CSS matrix! | | | +| Future Web Associate | 5.1.3 | Ignored | | | http://favian.biz | +| Future Configuration Architect | 4.2.6 | Expression | I'll generate the primary TCP bus, that should bus the TCP bus! | Victoria Padberg,Victoria Padberg,Victoria Padberg,Victoria Padberg,Victoria Padberg,Victoria Padberg | | +| Human Web Liaison | 8.1.1 | Unknown | | | https://imogene.org | +| National Quality Executive | 4.5.1 | Expression | Use the solid state TCP driver, then you can generate the solid state driver! | | http://rylan.com | +| Central Mobility Executive | 5.0.3 | Unknown | | Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling | | +| Lead Identity Developer | 7.1.0 | Unknown | | Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover,Jonathan Glover | https://eve.com | +| Principal Group Strategist | 4.1.0 | Url | I'll bypass the primary GB bandwidth, that should bandwidth the GB bandwidth! | | | +| Dynamic Metrics Coordinator | 5.8.1 | Unknown | overriding the circuit won't do anything, we need to copy the mobile AGP circuit! | Helen Fisher,Helen Fisher,Helen Fisher,Helen Fisher,Helen Fisher | | +| Global Paradigm Producer | 1.8.4 | Overwrite | If we quantify the protocol, we can get to the IB protocol through the auxiliary IB protocol! | | https://london.biz | +| Investor Communications Associate | 0.7.2 | Expression | | Arnold Franecki,Arnold Franecki | http://modesto.info | +| Lead Directives Administrator | 5.1.9 | Ignored | Use the haptic GB matrix, then you can generate the haptic matrix! | | | +| Future Applications Facilitator | 0.1.5 | Expression | transmitting the program won't do anything, we need to bypass the virtual HTTP program! | | | +| Senior Applications Technician | 7.8.2 | Overwrite | | Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert,Julio Ebert | | +| Future Applications Engineer | 6.8.5 | Unknown | 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 | +| Human Security Administrator | 9.8.5 | Overwrite | I'll synthesize the redundant XML feed, that should feed the XML feed! | Mario Stamm,Mario Stamm,Mario Stamm,Mario Stamm,Mario Stamm,Mario Stamm | | +| Dynamic Group Agent | 1.7.6 | Ignored | | Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins,Diane Jenkins | | +| Forward Factors Architect | 6.7.6 | Overwrite | | Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt,Muriel Schmidt | | +| Chief Operations Orchestrator | 9.1.5 | Ignored | Try to back up the USB application, maybe it will back up the bluetooth application! | | https://madelynn.name | +| Corporate Mobility Consultant | 1.9.0 | Expression | | | http://letha.name | +| Investor Configuration Technician | 1.9.1 | Url | We need to copy the primary FTP bus! | Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin,Kelli Rippin | http://malvina.name | +| Direct Accountability Producer | 1.8.1 | Url | | | http://justine.net | +| Global Communications Administrator | 3.0.6 | Ignored | | | | +| Direct Markets Executive | 9.7.7 | Ignored | We need to navigate the open-source PCI pixel! | | https://judge.name | +| Principal Intranet Architect | 4.9.3 | Expression | | | | +| District Factors Associate | 0.2.6 | Expression | | Betsy Powlowski | https://cloyd.biz | +| Global Markets Designer | 1.7.0 | Overwrite | Use the multi-byte COM feed, then you can parse the multi-byte feed! | | https://toby.biz | +| Senior Factors Technician | 3.2.5 | Overwrite | You can't input the protocol without copying the auxiliary USB protocol! | Lee Zieme,Lee Zieme,Lee Zieme,Lee Zieme,Lee Zieme | | +| Lead Solutions Technician | 1.5.7 | Unknown | | | | +| Investor Assurance Technician | 7.3.8 | Overwrite | | Merle Hirthe | | +| Corporate Implementation Officer | 0.2.6 | Ignored | | | | +| Lead Implementation Supervisor | 4.9.9 | Overwrite | The ADP card is down, hack the solid state card so we can hack the ADP card! | Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis,Robin Simonis | http://katlynn.net | +| Direct Security Producer | 9.0.7 | Url | | | http://evert.net | +| Dynamic Division Specialist | 9.6.4 | Expression | | | https://keenan.net | +| Global Directives Orchestrator | 8.7.6 | Expression | | Tommy Franecki,Tommy Franecki | | +| Regional Security Agent | 6.2.7 | Overwrite | | | https://kenyon.org | +| Regional Mobility Designer | 8.5.4 | Url | | | http://brady.net | +| Corporate Interactions Administrator | 1.1.5 | Ignored | | | http://clemmie.info | +| Forward Program Officer | 4.2.4 | Unknown | quantifying the capacitor won't do anything, we need to override the open-source AI capacitor! | Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin,Jay Kshlerin | | +| Regional Paradigm Director | 3.0.9 | Unknown | The COM pixel is down, quantify the virtual pixel so we can quantify the COM pixel! | | | +| District Brand Producer | 9.3.8 | Overwrite | Use the redundant AGP application, then you can generate the redundant application! | Clarence Metz,Clarence Metz,Clarence Metz | | +| Regional Directives Liaison | 4.7.8 | Ignored | If we connect the interface, we can get to the SCSI interface through the auxiliary SCSI interface! | | https://glennie.biz | +| Dynamic Creative Supervisor | 4.1.3 | Ignored | | | | +| Global Data Administrator | 0.8.4 | Unknown | | Frederick Leffler,Frederick Leffler,Frederick Leffler | https://barrett.com | +| Forward Web Designer | 0.1.4 | Overwrite | | | https://gerard.net | +| Forward Accounts Consultant | 8.9.0 | Expression | | | | +| Dynamic Group Representative | 9.8.1 | Unknown | | | | +| Dynamic Integration Assistant | 2.7.5 | Overwrite | I'll back up the 1080p RSS matrix, that should matrix the RSS matrix! | | | +| Human Marketing Representative | 0.6.1 | Ignored | | Salvador Berge,Salvador Berge,Salvador Berge,Salvador Berge,Salvador Berge,Salvador Berge,Salvador Berge | | +| Legacy Communications Manager | 0.1.8 | Unknown | | | http://gus.info | +| Product Metrics Representative | 2.7.9 | Expression | connecting the feed won't do anything, we need to transmit the primary IB feed! | Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson,Bridget Rolfson | http://denis.info | +| Legacy Assurance Representative | 6.4.9 | Unknown | | Diane Gutkowski,Diane Gutkowski,Diane Gutkowski,Diane Gutkowski,Diane Gutkowski | https://maye.info | +| District Metrics Associate | 8.1.6 | Overwrite | | | http://jaylin.org | +| Regional Factors Analyst | 1.5.7 | Overwrite | | | | +| Legacy Data Consultant | 5.8.8 | Unknown | Try to connect the JSON pixel, maybe it will connect the primary pixel! | | | +| Global Mobility Associate | 0.6.4 | Expression | We need to hack the haptic XSS program! | | https://brooke.org | +| National Security Liaison | 2.4.1 | Ignored | | | http://pierce.info | +| ------------------------------------ | ------- | -------------------------- | --------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_bee8f5a082154a86.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_bee8f5a082154a86.verified.txt new file mode 100644 index 00000000..5691e5c5 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_bee8f5a082154a86.verified.txt @@ -0,0 +1,104 @@ +| ------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | +| ------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Configuration Liaison | 1.8.9 | Expression | | connecting the transmitter won't do anything, we need to program the cross-platform XSS transmitter! | | | http://esther.biz | +| Chief Functionality Planner | 5.1.2 | Unknown | | I'll calculate the 1080p HDD system, that should system the HDD system! | | Matt Mills,Matt Mills | http://myrtice.com | +| Corporate Intranet Associate | 7.5.1 | Overwrite | | 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! | | | +| District Creative Designer | 1.4.6 | Url | We need to program the haptic IB panel! | | | | http://cameron.info | +| Corporate Optimization Agent | 2.7.0 | Ignored | | | | | http://bryce.com | +| Customer Interactions Representative | 0.8.8 | Url | We need to quantify the digital SSL array! | | | | http://heather.name | +| Dynamic Factors Producer | 5.7.1 | Url | | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | | | +| Central Tactics Director | 4.6.7 | Url | backing up the system won't do anything, we need to parse the neural CSS system! | We need to transmit the back-end RSS transmitter! | | Doyle Osinski,Doyle Osinski,Doyle Osinski,Doyle Osinski | https://valentina.net | +| Global Usability Manager | 9.1.0 | Overwrite | | Try to back up the THX interface, maybe it will back up the auxiliary interface! | | | http://vella.com | +| Internal Factors Facilitator | 2.6.3 | Url | | Try to copy the PNG sensor, maybe it will copy the 1080p sensor! | | Mable Kris,Mable Kris,Mable Kris,Mable Kris,Mable Kris | http://melba.name | +| Human Accountability Developer | 6.9.0 | Unknown | If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit! | | | | | +| Future Accounts Designer | 5.1.9 | Expression | We need to navigate the wireless SAS pixel! | | | | | +| Global Markets Administrator | 8.6.8 | Expression | 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! | The SSL application is down, reboot the bluetooth application so we can reboot the SSL application! | Julius Bernhard,Julius Bernhard,Julius Bernhard,Julius Bernhard | https://lois.biz | +| Dynamic Configuration Assistant | 3.2.1 | Expression | | 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 | | +| Investor Interactions Designer | 1.9.4 | Url | | | parsing the card won't do anything, we need to synthesize the online SQL card! | Stella Barton,Stella Barton | https://octavia.name | +| Global Configuration Consultant | 5.9.5 | Expression | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | bypassing the bus won't do anything, we need to calculate the virtual GB bus! | | Guadalupe Littel,Guadalupe Littel,Guadalupe Littel | | +| Regional Factors Designer | 7.4.1 | Url | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | Use the haptic RSS port, then you can transmit the haptic port! | Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus | | +| Customer Metrics Analyst | 6.7.1 | Unknown | | | | | | +| National Security Orchestrator | 3.5.6 | Expression | Try to copy the HDD array, maybe it will copy the back-end array! | 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! | Roderick Koelpin,Roderick Koelpin,Roderick Koelpin | | +| Human Program Technician | 2.8.4 | Overwrite | | | | Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill | http://tomasa.info | +| Corporate Division Executive | 4.7.8 | Url | I'll index the neural SDD bus, that should bus the SDD bus! | If we reboot the program, we can get to the SSL program through the primary SSL program! | | Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros | http://wilmer.com | +| Forward Tactics Planner | 5.4.6 | Url | I'll input the primary GB port, that should port the GB port! | | 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 | https://caterina.info | +| Dynamic Paradigm Officer | 2.3.4 | Overwrite | | | | | https://charity.biz | +| Investor Usability Officer | 2.5.2 | Unknown | Try to program the XML capacitor, maybe it will program the haptic capacitor! | Use the optical SSL alarm, then you can bypass the optical alarm! | | Johnny Bernier | http://orlo.name | +| Regional Brand Associate | 4.0.9 | Expression | | | I'll program the wireless HDD pixel, that should pixel the HDD pixel! | | | +| Corporate Program Associate | 5.2.5 | Overwrite | | | overriding the interface won't do anything, we need to override the virtual THX interface! | | | +| Corporate Infrastructure Executive | 4.8.1 | Unknown | | | Try to index the FTP transmitter, maybe it will index the bluetooth transmitter! | Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist | https://justice.info | +| Legacy Solutions Architect | 7.9.3 | Url | | Try to input the AI sensor, maybe it will input the digital sensor! | If we program the array, we can get to the JBOD array through the primary JBOD array! | | | +| Central Marketing Orchestrator | 3.3.1 | Ignored | | Try to parse the IB driver, maybe it will parse the 1080p driver! | We need to connect the bluetooth RSS application! | Kelly Herman,Kelly Herman,Kelly Herman,Kelly Herman,Kelly Herman,Kelly Herman,Kelly Herman,Kelly Herman,Kelly Herman | https://brice.net | +| Dynamic Configuration Administrator | 4.3.8 | Url | | | Use the redundant AGP microchip, then you can override the redundant microchip! | Roberto Deckow,Roberto Deckow,Roberto Deckow | | +| District Optimization Coordinator | 0.3.2 | Ignored | | If we back up the hard drive, we can get to the SCSI hard drive through the neural SCSI hard drive! | | David Ullrich,David Ullrich,David Ullrich,David Ullrich,David Ullrich,David Ullrich,David Ullrich | | +| Chief Response Strategist | 8.0.4 | Url | | The RSS alarm is down, compress the mobile alarm so we can compress the RSS alarm! | Use the 1080p PNG application, then you can calculate the 1080p application! | Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann | | +| Regional Configuration Engineer | 7.3.8 | Expression | Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter! | You can't reboot the matrix without navigating the optical SDD matrix! | | | http://roman.org | +| Internal Operations Producer | 5.8.9 | Overwrite | | Use the online SMTP pixel, then you can index the online pixel! | | | | +| International Marketing Officer | 7.2.8 | Expression | | | | Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk | | +| International Branding Associate | 4.9.4 | Url | | 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://trinity.name | +| Principal Identity Designer | 4.7.0 | Ignored | | | compressing the sensor won't do anything, we need to index the mobile ADP sensor! | | https://brock.net | +| Direct Applications Designer | 1.5.1 | Unknown | | We need to connect the haptic TCP panel! | If we bypass the card, we can get to the HDD card through the auxiliary HDD card! | Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling | http://tito.name | +| Lead Identity Developer | 7.1.0 | Url | | compressing the bandwidth won't do anything, we need to bypass the primary RAM bandwidth! | | | https://eve.com | +| Lead Program Engineer | 4.5.7 | Overwrite | | The PCI protocol is down, calculate the bluetooth protocol so we can calculate the PCI protocol! | | | | +| Forward Communications Director | 6.0.8 | Overwrite | Try to override the AI alarm, maybe it will override the online alarm! | We need to quantify the virtual TCP card! | | Kristin Bernhard,Kristin Bernhard | | +| Dynamic Configuration Specialist | 3.6.8 | Overwrite | | Use the haptic AGP protocol, then you can program the haptic protocol! | | Meredith Sawayn,Meredith Sawayn,Meredith Sawayn,Meredith Sawayn,Meredith Sawayn,Meredith Sawayn | | +| Customer Group Agent | 0.9.9 | Ignored | | If we override the sensor, we can get to the COM sensor through the 1080p COM sensor! | I'll generate the auxiliary HTTP microchip, that should microchip the HTTP microchip! | | | +| Customer Markets Assistant | 5.9.9 | Ignored | The JSON hard drive is down, copy the digital hard drive so we can copy the JSON hard drive! | | | Cecilia Runolfsdottir,Cecilia Runolfsdottir,Cecilia Runolfsdottir,Cecilia Runolfsdottir,Cecilia Runolfsdottir,Cecilia Runolfsdottir,Cecilia Runolfsdottir | http://cullen.net | +| Senior Brand Officer | 9.3.6 | Url | If we override the system, we can get to the HDD system through the haptic HDD system! | If we parse the bus, we can get to the XML bus through the solid state XML bus! | | | http://carol.name | +| District Integration Designer | 6.2.2 | Expression | | You can't connect the port without connecting the back-end COM port! | | Ignacio Hane,Ignacio Hane | https://cindy.org | +| National Solutions Representative | 5.6.2 | Overwrite | | | You can't synthesize the bandwidth without programming the solid state XSS bandwidth! | | | +| Chief Program Director | 8.8.8 | Overwrite | If we parse the protocol, we can get to the IB protocol through the wireless IB protocol! | | Use the primary SCSI matrix, then you can program the primary matrix! | | | +| Principal Optimization Administrator | 9.6.7 | Ignored | The XML card is down, bypass the back-end card so we can bypass the XML card! | | | | https://franz.biz | +| Human Group Agent | 3.2.2 | Url | | | generating the interface won't do anything, we need to hack the optical PCI interface! | Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser | https://vilma.com | +| Internal Program Engineer | 2.9.3 | Expression | I'll input the neural SQL application, that should application the SQL application! | You can't generate the hard drive without transmitting the haptic RAM hard drive! | I'll bypass the optical AGP feed, that should feed the AGP feed! | | http://cleta.org | +| International Intranet Officer | 3.6.7 | Ignored | You can't transmit the pixel without quantifying the mobile AGP pixel! | transmitting the matrix won't do anything, we need to connect the haptic SCSI matrix! | You can't generate the firewall without backing up the primary HTTP firewall! | Ramona Erdman,Ramona Erdman | http://mack.net | +| Forward Directives Representative | 0.5.1 | Url | | parsing the panel won't do anything, we need to calculate the digital SMTP panel! | | Theresa Heathcote,Theresa Heathcote,Theresa Heathcote,Theresa Heathcote,Theresa Heathcote,Theresa Heathcote | https://cleve.biz | +| Legacy Interactions Officer | 8.8.5 | Overwrite | | | Try to program the RAM bandwidth, maybe it will program the optical bandwidth! | | | +| Senior Operations Assistant | 2.4.2 | Expression | | If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth! | | Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva | https://hector.info | +| Investor Optimization Executive | 1.6.1 | Ignored | | | Use the auxiliary AGP matrix, then you can generate the auxiliary matrix! | Willard Abshire | http://adalberto.info | +| Senior Research Liaison | 5.0.6 | Overwrite | If we compress the system, we can get to the AGP system through the multi-byte AGP system! | I'll hack the optical XSS monitor, that should monitor the XSS monitor! | | | http://clair.biz | +| Direct Applications Assistant | 3.5.8 | Unknown | The PCI pixel is down, synthesize the multi-byte pixel so we can synthesize the PCI pixel! | If we back up the driver, we can get to the TCP driver through the redundant TCP driver! | We need to back up the 1080p COM interface! | | http://consuelo.info | +| International Branding Producer | 3.8.2 | Expression | We need to generate the solid state AGP microchip! | | | | | +| Global Solutions Administrator | 5.2.4 | Overwrite | We need to calculate the online SAS bandwidth! | If we index the bus, we can get to the CSS bus through the optical CSS bus! | | Nellie Oberbrunner | https://hailee.biz | +| International Marketing Officer | 2.2.1 | Overwrite | If we connect the driver, we can get to the XSS driver through the online XSS driver! | | | | https://weldon.info | +| Future Markets Architect | 7.2.2 | Overwrite | If we synthesize the port, we can get to the CSS port through the online CSS port! | synthesizing the panel won't do anything, we need to transmit the neural THX panel! | | Gerald Cruickshank,Gerald Cruickshank,Gerald Cruickshank | https://maxime.info | +| Legacy Marketing Designer | 4.5.9 | Expression | | You can't bypass the microchip without parsing the back-end JBOD microchip! | You can't bypass the alarm without generating the back-end HTTP alarm! | | http://lexi.net | +| Investor Applications Executive | 9.9.5 | Ignored | The AI application is down, connect the open-source application so we can connect the AI application! | | Use the redundant TCP circuit, then you can calculate the redundant circuit! | | https://xander.com | +| Legacy Intranet Planner | 8.3.2 | Expression | Use the bluetooth AI bandwidth, then you can transmit the bluetooth bandwidth! | | | | http://nathanael.name | +| Chief Markets Executive | 1.5.7 | Ignored | | | | | | +| Forward Program Officer | 4.2.4 | Url | quantifying the capacitor won't do anything, we need to override the open-source AI capacitor! | indexing the port won't do anything, we need to back up the virtual AGP port! | calculating the bus won't do anything, we need to generate the online CSS bus! | Leon Mayer,Leon Mayer | | +| Human Program Orchestrator | 5.2.4 | Url | Use the cross-platform EXE microchip, then you can quantify the cross-platform microchip! | | bypassing the bandwidth won't do anything, we need to copy the mobile JBOD bandwidth! | | | +| International Paradigm Analyst | 7.0.8 | Ignored | Try to compress the USB hard drive, maybe it will compress the neural hard drive! | We need to parse the solid state TCP interface! | The COM circuit is down, override the primary circuit so we can override the COM circuit! | Wilbert Willms,Wilbert Willms,Wilbert Willms,Wilbert Willms,Wilbert Willms,Wilbert Willms,Wilbert Willms,Wilbert Willms,Wilbert Willms | https://noemie.biz | +| Product Tactics Engineer | 5.6.9 | Overwrite | Use the online TCP driver, then you can navigate the online driver! | I'll transmit the open-source HTTP pixel, that should pixel the HTTP pixel! | transmitting the program won't do anything, we need to generate the multi-byte SAS program! | Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich | | +| Direct Group Liaison | 3.5.1 | Overwrite | We need to parse the haptic SMS monitor! | | We need to program the auxiliary JBOD circuit! | | | +| Senior Quality Executive | 4.4.8 | Url | I'll quantify the solid state THX feed, that should feed the THX feed! | Use the online RAM array, then you can index the online array! | You can't reboot the transmitter without transmitting the online ADP transmitter! | | http://khalid.com | +| Dynamic Tactics Facilitator | 0.7.3 | Unknown | | | The SSL port is down, bypass the haptic port so we can bypass the SSL port! | | | +| Chief Paradigm Supervisor | 4.3.3 | Url | | | We need to bypass the wireless XML pixel! | Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins | https://zion.info | +| National Creative Officer | 5.5.6 | Overwrite | indexing the capacitor won't do anything, we need to reboot the redundant FTP capacitor! | | The TCP array is down, bypass the mobile array so we can bypass the TCP array! | | http://orpha.name | +| Lead Optimization Analyst | 2.1.7 | Expression | Use the wireless XSS bandwidth, then you can program the wireless bandwidth! | The SDD hard drive is down, copy the virtual hard drive so we can copy the SDD hard drive! | | Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson | https://madge.info | +| Central Factors Supervisor | 0.8.3 | Overwrite | If we transmit the monitor, we can get to the HTTP monitor through the digital HTTP monitor! | Use the optical IB transmitter, then you can navigate the optical transmitter! | If we back up the firewall, we can get to the TCP firewall through the multi-byte TCP firewall! | Kathleen Blick,Kathleen Blick,Kathleen Blick,Kathleen Blick,Kathleen Blick | http://clement.name | +| Forward Usability Developer | 6.9.1 | Overwrite | | | You can't connect the protocol without overriding the redundant RSS protocol! | | | +| Corporate Intranet Agent | 9.1.8 | Url | We need to compress the 1080p GB circuit! | | The PCI driver is down, reboot the haptic driver so we can reboot the PCI driver! | Essie Hamill,Essie Hamill | http://precious.name | +| Senior Brand Agent | 3.1.9 | Url | generating the alarm won't do anything, we need to parse the virtual XSS alarm! | | I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth! | | https://lina.info | +| Forward Research Associate | 3.4.7 | Url | | You can't navigate the capacitor without programming the solid state SQL capacitor! | | | | +| Global Optimization Engineer | 8.7.9 | Ignored | | quantifying the transmitter won't do anything, we need to synthesize the auxiliary FTP transmitter! | If we synthesize the port, we can get to the HTTP port through the auxiliary HTTP port! | | http://aniya.org | +| Global Configuration Strategist | 1.4.4 | Ignored | | | | Vickie Sipes | https://marilyne.com | +| National Implementation Agent | 5.6.8 | Expression | | | Use the multi-byte PNG circuit, then you can navigate the multi-byte circuit! | Ira Hermiston,Ira Hermiston,Ira Hermiston,Ira Hermiston | http://rex.biz | +| Future Tactics Specialist | 0.2.2 | Overwrite | We need to override the primary SQL pixel! | We need to transmit the redundant EXE driver! | You can't calculate the hard drive without hacking the multi-byte FTP hard drive! | | | +| Forward Paradigm Developer | 7.9.7 | Overwrite | The GB interface is down, input the auxiliary interface so we can input the GB interface! | The XSS transmitter is down, back up the online transmitter so we can back up the XSS transmitter! | | Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter | http://maureen.name | +| Central Functionality Technician | 3.9.3 | Url | | | The AI microchip is down, override the multi-byte microchip so we can override the AI microchip! | | | +| Regional Communications Strategist | 9.3.1 | Url | overriding the matrix won't do anything, we need to back up the solid state IB matrix! | Try to index the HDD panel, maybe it will index the haptic panel! | We need to index the bluetooth JSON pixel! | | http://eloisa.biz | +| International Optimization Supervisor | 9.5.8 | Ignored | | | | | https://roman.com | +| Corporate Intranet Facilitator | 2.8.8 | Ignored | If we program the feed, we can get to the CSS feed through the solid state CSS feed! | Use the redundant GB driver, then you can connect the redundant driver! | | Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser,Ellen Wintheiser | http://isabella.name | +| Internal Solutions Director | 8.4.4 | Unknown | | | | | | +| Senior Metrics Engineer | 8.3.4 | Overwrite | | Try to quantify the FTP bus, maybe it will quantify the optical bus! | | Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand | http://lou.net | +| National Infrastructure Architect | 6.6.7 | Unknown | | If we bypass the hard drive, we can get to the EXE hard drive through the bluetooth EXE hard drive! | | Howard Rath,Howard Rath,Howard Rath,Howard Rath | http://darlene.net | +| Customer Branding Engineer | 7.9.7 | Ignored | Try to input the TCP sensor, maybe it will input the haptic sensor! | If we navigate the microchip, we can get to the SMS microchip through the redundant SMS microchip! | compressing the system won't do anything, we need to synthesize the redundant ADP system! | Randall Haley,Randall Haley,Randall Haley,Randall Haley,Randall Haley,Randall Haley,Randall Haley,Randall Haley,Randall Haley,Randall Haley | | +| National Creative Analyst | 6.3.1 | Expression | | The SSL feed is down, back up the cross-platform feed so we can back up the SSL feed! | | | | +| Forward Branding Strategist | 4.6.2 | Overwrite | | | The THX hard drive is down, compress the back-end hard drive so we can compress the THX hard drive! | | | +| National Factors Administrator | 8.1.4 | Unknown | | | | | http://janelle.name | +| Legacy Communications Engineer | 7.8.1 | Expression | | I'll synthesize the haptic THX hard drive, that should hard drive the THX hard drive! | The ADP hard drive is down, input the back-end hard drive so we can input the ADP hard drive! | Hilda Kub,Hilda Kub,Hilda Kub,Hilda Kub,Hilda Kub | | +| Principal Web Associate | 4.2.5 | Expression | | | If we index the hard drive, we can get to the XSS hard drive through the primary XSS hard drive! | Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles | | +| ------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_c15dca1384bc8571.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_c15dca1384bc8571.verified.txt new file mode 100644 index 00000000..97367809 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_c15dca1384bc8571.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ------- | ------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_c2ce0b528c8302fd.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_c2ce0b528c8302fd.verified.txt new file mode 100644 index 00000000..80092189 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_c2ce0b528c8302fd.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------- | ------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_c3c94ec7f589dd25.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_c3c94ec7f589dd25.verified.txt new file mode 100644 index 00000000..1a068e34 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_c3c94ec7f589dd25.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------- | ------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_c66c3ed62df46f0b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_c66c3ed62df46f0b.verified.txt new file mode 100644 index 00000000..13892a79 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_c66c3ed62df46f0b.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_c69cd1af58bec440.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_c69cd1af58bec440.verified.txt new file mode 100644 index 00000000..97367809 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_c69cd1af58bec440.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ------- | ------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_c74006e896f892a5.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_c74006e896f892a5.verified.txt new file mode 100644 index 00000000..1c951fdd --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_c74006e896f892a5.verified.txt @@ -0,0 +1,104 @@ +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ---------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ---------------------- | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | +| District Mobility Administrator | 3.2.3 | Unknown | | You can't compress the transmitter without overriding the auxiliary TCP transmitter! | | +| Investor Intranet Producer | 5.4.1 | Ignored | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | http://hyman.org | +| Product Infrastructure Supervisor | 8.1.1 | Expression | | | https://merle.com | +| International Data Representative | 3.5.7 | Ignored | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | http://dakota.com | +| Direct Brand Strategist | 9.5.7 | Url | We need to navigate the bluetooth RAM bus! | | http://maddison.biz | +| District Optimization Manager | 4.0.4 | Overwrite | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | | +| Regional Directives Supervisor | 4.9.8 | Ignored | Try to reboot the THX hard drive, maybe it will reboot the open-source hard drive! | Use the primary GB driver, then you can generate the primary driver! | https://malcolm.net | +| Future Optimization Architect | 5.1.5 | Overwrite | Use the auxiliary RAM alarm, then you can generate the auxiliary alarm! | | | +| Customer Factors Assistant | 7.7.3 | Overwrite | | | | +| Future Data Architect | 8.5.1 | Expression | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | +| National Directives Analyst | 8.2.7 | Ignored | We need to compress the primary GB array! | | | +| Customer Interactions Representative | 0.8.8 | Unknown | We need to quantify the digital SSL array! | | http://heather.name | +| Product Paradigm Orchestrator | 9.7.5 | Url | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | http://adan.info | +| Dynamic Optimization Director | 3.4.6 | Ignored | The PNG protocol is down, index the digital protocol so we can index the PNG protocol! | I'll transmit the online SSL feed, that should feed the SSL feed! | https://maximilian.org | +| Future Quality Coordinator | 0.8.6 | Url | I'll input the back-end JBOD capacitor, that should capacitor the JBOD capacitor! | | http://fay.org | +| National Web Administrator | 7.7.1 | Overwrite | If we reboot the program, we can get to the SAS program through the haptic SAS program! | | https://zella.org | +| Forward Response Liaison | 5.4.2 | Url | Try to hack the SMS sensor, maybe it will hack the back-end sensor! | I'll generate the optical COM protocol, that should protocol the COM protocol! | http://hyman.net | +| Investor Interactions Liaison | 4.4.9 | Overwrite | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | | +| Senior Optimization Assistant | 3.6.0 | Overwrite | | overriding the pixel won't do anything, we need to copy the optical JSON pixel! | http://akeem.info | +| Product Assurance Technician | 0.8.2 | Overwrite | | | https://steve.info | +| Central Web Assistant | 4.2.1 | Unknown | | Use the wireless ADP array, then you can input the wireless array! | https://verda.net | +| Legacy Directives Officer | 2.4.4 | Url | | The PCI program is down, hack the multi-byte program so we can hack the PCI program! | http://sedrick.biz | +| Chief Division Producer | 2.3.9 | Overwrite | | | | +| Direct Mobility Designer | 7.7.3 | Expression | | | http://geovanny.info | +| International Functionality Agent | 8.7.6 | Unknown | | If we hack the card, we can get to the JBOD card through the optical JBOD card! | http://jalyn.org | +| Customer Functionality Consultant | 5.5.1 | Expression | The PCI protocol is down, back up the multi-byte protocol so we can back up the PCI protocol! | | http://terence.com | +| 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 | +| Investor Implementation Technician | 2.7.9 | Unknown | | | http://crystal.name | +| Direct Assurance Strategist | 1.3.7 | Expression | The RSS firewall is down, hack the neural firewall so we can hack the RSS firewall! | | | +| National Creative Assistant | 4.9.0 | Ignored | | If we navigate the pixel, we can get to the SCSI pixel through the bluetooth SCSI pixel! | https://michelle.org | +| Principal Markets Designer | 3.8.8 | Overwrite | overriding the transmitter won't do anything, we need to generate the cross-platform SCSI transmitter! | | | +| Forward Functionality Developer | 5.1.1 | Url | | | | +| Dynamic Branding Facilitator | 8.3.2 | Ignored | | | | +| Forward Division Strategist | 5.7.1 | Ignored | You can't reboot the program without transmitting the mobile SMTP program! | The SCSI circuit is down, index the open-source circuit so we can index the SCSI circuit! | https://esperanza.name | +| Global Program Representative | 5.1.0 | Url | | If we back up the monitor, we can get to the PCI monitor through the virtual PCI monitor! | | +| Corporate Marketing Assistant | 8.7.9 | Url | | You can't program the firewall without connecting the wireless AI firewall! | http://arlene.biz | +| Senior Factors Administrator | 1.6.1 | Expression | I'll calculate the solid state ADP panel, that should panel the ADP panel! | If we generate the circuit, we can get to the XSS circuit through the primary XSS circuit! | | +| Chief Applications Facilitator | 7.7.6 | Overwrite | | parsing the card won't do anything, we need to synthesize the online SQL card! | | +| Dynamic Quality Analyst | 0.9.5 | Overwrite | We need to index the optical HTTP application! | I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor! | | +| National Communications Orchestrator | 4.5.1 | Unknown | The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit! | | | +| Corporate Tactics Director | 2.5.7 | Url | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | http://marcos.info | +| Human Group Designer | 9.9.1 | Expression | Use the haptic XSS application, then you can synthesize the haptic application! | If we transmit the hard drive, we can get to the AGP hard drive through the bluetooth AGP hard drive! | http://jodie.org | +| National Research Facilitator | 6.0.6 | Expression | Use the primary EXE array, then you can navigate the primary array! | | | +| Regional Paradigm Manager | 8.9.8 | Ignored | | If we transmit the application, we can get to the SMS application through the primary SMS application! | https://eileen.name | +| Lead Branding Developer | 4.1.5 | Url | | | http://abe.com | +| Human Directives Engineer | 5.3.9 | Url | | | | +| National Applications Designer | 6.4.9 | Expression | | Use the back-end SMS feed, then you can program the back-end feed! | | +| Regional Factors Designer | 7.4.1 | Overwrite | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | | +| Global Division Designer | 8.2.7 | Expression | Try to program the EXE hard drive, maybe it will program the virtual hard drive! | | https://pamela.name | +| Dynamic Accountability Analyst | 4.9.7 | Overwrite | | | https://jaron.info | +| Regional Operations Coordinator | 0.2.5 | Unknown | | I'll hack the cross-platform SSL array, that should array the SSL array! | http://ena.com | +| Corporate Data Strategist | 9.0.0 | Ignored | | | http://eli.net | +| Future Accounts Agent | 0.9.7 | Ignored | | | | +| National Creative Coordinator | 5.9.5 | Expression | | | https://bobbie.info | +| District Operations Director | 0.6.3 | Url | | We need to program the cross-platform FTP hard drive! | https://dejah.net | +| Forward Marketing Orchestrator | 1.6.4 | Overwrite | I'll connect the primary SQL sensor, that should sensor the SQL sensor! | The SMTP driver is down, bypass the mobile driver so we can bypass the SMTP driver! | https://lukas.com | +| Lead Usability Assistant | 1.3.4 | Overwrite | quantifying the matrix won't do anything, we need to synthesize the wireless PCI matrix! | Use the solid state SQL firewall, then you can connect the solid state firewall! | https://duane.info | +| Human Quality Facilitator | 1.2.0 | Expression | We need to copy the online THX firewall! | You can't calculate the application without calculating the auxiliary AI application! | | +| Human Program Technician | 2.8.4 | Unknown | | | http://tomasa.info | +| International Quality Director | 0.3.8 | Expression | | | | +| Corporate Directives Planner | 8.8.5 | Unknown | The CSS bus is down, generate the 1080p bus so we can generate the CSS bus! | We need to back up the 1080p SMTP feed! | | +| Dynamic Accountability Strategist | 7.0.9 | Unknown | You can't bypass the sensor without transmitting the neural JSON sensor! | | | +| Chief Intranet Facilitator | 6.6.1 | Expression | | | https://rosalind.net | +| Global Security Coordinator | 1.7.9 | Ignored | | | https://carol.info | +| Forward Configuration Supervisor | 9.0.8 | Overwrite | You can't program the protocol without overriding the primary IB protocol! | | http://quinn.name | +| Product Creative Facilitator | 8.4.6 | Unknown | 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://juliana.net | +| Global Mobility Facilitator | 9.5.8 | Expression | | | | +| Chief Factors Supervisor | 5.2.2 | Expression | | | http://helga.com | +| Principal Accounts Coordinator | 1.0.4 | Overwrite | | I'll connect the digital JSON bus, that should bus the JSON bus! | http://rene.com | +| Customer Security Representative | 3.7.3 | Ignored | The GB circuit is down, hack the redundant circuit so we can hack the GB circuit! | | https://jalon.net | +| Future Accounts Architect | 9.1.8 | Url | You can't bypass the firewall without indexing the multi-byte COM firewall! | | https://fermin.biz | +| Investor Creative Architect | 8.2.4 | Unknown | | | | +| National Solutions Associate | 9.1.2 | Overwrite | | | | +| Customer Metrics Developer | 2.2.9 | Ignored | | | | +| Human Optimization Facilitator | 7.4.8 | Overwrite | 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! | https://cooper.name | +| Investor Research Manager | 6.3.1 | Ignored | | | | +| Human Directives Specialist | 4.3.4 | Unknown | Use the digital XSS hard drive, then you can compress the digital hard drive! | You can't generate the card without synthesizing the bluetooth PNG card! | | +| Dynamic Factors Facilitator | 6.5.2 | Expression | | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | http://magnolia.com | +| Central Tactics Engineer | 6.3.5 | Unknown | connecting the bandwidth won't do anything, we need to bypass the multi-byte AI bandwidth! | | | +| National Intranet Technician | 8.0.0 | Overwrite | | | | +| Senior Security Consultant | 2.7.5 | Unknown | | | http://adelbert.biz | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | bypassing the protocol won't do anything, we need to connect the cross-platform XML protocol! | | http://hanna.net | +| Central Identity Analyst | 8.9.6 | Expression | | | http://leta.org | +| Senior Brand Analyst | 2.5.0 | Url | | overriding the interface won't do anything, we need to override the virtual THX interface! | | +| Internal Directives Designer | 0.4.8 | Url | The EXE protocol is down, reboot the redundant protocol so we can reboot the EXE protocol! | | | +| Dynamic Division Consultant | 4.8.7 | Overwrite | Use the multi-byte IB microchip, then you can connect the multi-byte microchip! | backing up the feed won't do anything, we need to compress the haptic SMTP feed! | http://raquel.net | +| Human Communications Supervisor | 6.0.1 | Ignored | Use the cross-platform SAS feed, then you can bypass the cross-platform feed! | | http://ethan.name | +| Human Operations Assistant | 0.7.2 | Overwrite | Use the haptic USB driver, then you can override the haptic driver! | | http://camila.net | +| Forward Intranet Engineer | 2.5.9 | Expression | The RSS sensor is down, input the 1080p sensor so we can input the RSS sensor! | Try to index the ADP port, maybe it will index the auxiliary port! | | +| Human Optimization Producer | 5.0.9 | Overwrite | | | | +| Dynamic Integration Architect | 1.6.3 | Overwrite | | The RAM feed is down, copy the neural feed so we can copy the RAM feed! | | +| Legacy Directives Supervisor | 9.6.2 | Url | The PNG circuit is down, back up the online circuit so we can back up the PNG circuit! | | | +| Direct Accountability Assistant | 2.2.8 | Url | bypassing the protocol won't do anything, we need to compress the primary HTTP protocol! | | http://natasha.info | +| Human Response Coordinator | 2.9.7 | Ignored | | | http://ruth.org | +| Corporate Accounts Technician | 5.8.0 | Ignored | | | https://isobel.org | +| International Intranet Planner | 6.4.6 | Url | The IB interface is down, program the redundant interface so we can program the IB interface! | | https://lenna.com | +| Direct Data Orchestrator | 2.4.5 | Expression | | Try to compress the ADP capacitor, maybe it will compress the cross-platform capacitor! | | +| ------------------------------------ | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ | ---------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_c8559d7ea2a30415.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_c8559d7ea2a30415.verified.txt new file mode 100644 index 00000000..b9fcea62 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_c8559d7ea2a30415.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | --------- | +| Package | Version | License Information Origin | License Expression | Copyright | +| ------- | ------- | -------------------------- | ------------------ | --------- | +| ------- | ------- | -------------------------- | ------------------ | --------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_c901be68eebec1de.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_c901be68eebec1de.verified.txt new file mode 100644 index 00000000..ab3f4809 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_c901be68eebec1de.verified.txt @@ -0,0 +1,18 @@ +| ----------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | -------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | +| ----------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | -------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | +| International Tactics Administrator | 9.9.9 | Url | | | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | +| ----------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | -------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_c90a715dda262c4a.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_c90a715dda262c4a.verified.txt new file mode 100644 index 00000000..171c4a01 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_c90a715dda262c4a.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | +| Package | Version | License Information Origin | License Expression | +| ------- | ------- | -------------------------- | ------------------ | +| ------- | ------- | -------------------------- | ------------------ | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_c9303ec665bcd97b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_c9303ec665bcd97b.verified.txt new file mode 100644 index 00000000..e0936383 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_c9303ec665bcd97b.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | +| Package | Version | License Information Origin | +| ------- | ------- | -------------------------- | +| ------- | ------- | -------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_ca727a77cfc5e383.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_ca727a77cfc5e383.verified.txt new file mode 100644 index 00000000..b9eecacc --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_ca727a77cfc5e383.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ------- | +| Package | Version | License Information Origin | License Expression | Authors | +| ------- | ------- | -------------------------- | ------------------ | ------- | +| ------- | ------- | -------------------------- | ------------------ | ------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_cb04ddbca97767dc.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_cb04ddbca97767dc.verified.txt new file mode 100644 index 00000000..e0936383 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_cb04ddbca97767dc.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | +| Package | Version | License Information Origin | +| ------- | ------- | -------------------------- | +| ------- | ------- | -------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_cef14dd5df82672a.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_cef14dd5df82672a.verified.txt new file mode 100644 index 00000000..27a731d3 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_cef14dd5df82672a.verified.txt @@ -0,0 +1,5 @@ +| ---------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | +| Package | Version | License Information Origin | License Expression | Authors | +| ---------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_cf678828defdac90.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_cf678828defdac90.verified.txt new file mode 100644 index 00000000..e0936383 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_cf678828defdac90.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | +| Package | Version | License Information Origin | +| ------- | ------- | -------------------------- | +| ------- | ------- | -------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_d1354ac496e5447b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_d1354ac496e5447b.verified.txt new file mode 100644 index 00000000..72759232 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_d1354ac496e5447b.verified.txt @@ -0,0 +1,24 @@ +| -------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | +| -------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | +| Internal Program Designer | 7.2.5 | Ignored | We need to hack the auxiliary COM hard drive! | | | | +| Global Implementation Strategist | 5.9.8 | Ignored | | | Colleen Schroeder,Colleen Schroeder | https://enos.info | +| Customer Assurance Officer | 0.3.1 | Ignored | I'll navigate the digital CSS sensor, that should sensor the CSS sensor! | | | https://clementine.info | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | +| Customer Division Manager | 1.3.9 | Ignored | 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! | Rafael Altenwerth,Rafael Altenwerth,Rafael Altenwerth | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | +| International Optimization Coordinator | 6.5.5 | Ignored | | | Darnell Terry | http://antoinette.org | +| International Tactics Administrator | 9.9.9 | Url | | | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | +| Legacy Interactions Supervisor | 9.7.2 | Ignored | | Try to generate the SAS matrix, maybe it will generate the cross-platform matrix! | Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn | | +| -------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_d2ee3625b759026a.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_d2ee3625b759026a.verified.txt new file mode 100644 index 00000000..6475fe6f --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_d2ee3625b759026a.verified.txt @@ -0,0 +1,5 @@ +| ---------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | +| ---------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_d61e5b7e9aa7da18.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_d61e5b7e9aa7da18.verified.txt new file mode 100644 index 00000000..6676f1db --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_d61e5b7e9aa7da18.verified.txt @@ -0,0 +1,85 @@ +| --------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | +| --------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | +| Forward Quality Producer | 6.3.7 | Overwrite | The CSS microchip is down, back up the bluetooth microchip so we can back up the CSS microchip! | https://jayne.name | +| Regional Security Architect | 2.2.5 | Url | | | +| Global Usability Representative | 3.5.9 | Url | | | +| Customer Directives Director | 7.9.2 | Overwrite | Try to hack the COM panel, maybe it will hack the auxiliary panel! | | +| Chief Assurance Associate | 3.3.1 | Url | overriding the panel won't do anything, we need to parse the open-source IB panel! | https://tyrese.info | +| Customer Operations Officer | 2.6.0 | Overwrite | Use the bluetooth USB alarm, then you can override the bluetooth alarm! | http://antonette.org | +| Dynamic Security Technician | 6.8.3 | Unknown | | | +| Central Integration Analyst | 0.4.0 | Overwrite | If we synthesize the protocol, we can get to the JBOD protocol through the multi-byte JBOD protocol! | https://laverne.name | +| National Communications Facilitator | 3.1.0 | Url | quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter! | | +| Dynamic Functionality Agent | 5.9.5 | Unknown | | http://annabelle.net | +| Forward Functionality Analyst | 4.5.1 | Expression | | http://orie.name | +| District Branding Analyst | 1.9.5 | Url | | https://paula.net | +| Product Applications Assistant | 2.8.4 | Overwrite | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | https://carleton.info | +| Global Security Liaison | 8.1.2 | Expression | | | +| Central Interactions Manager | 7.0.9 | Expression | | | +| National Tactics Engineer | 3.7.5 | Url | generating the matrix won't do anything, we need to override the redundant GB matrix! | https://alexys.org | +| Chief Mobility Planner | 7.1.0 | Overwrite | | | +| Customer Implementation Director | 5.9.1 | Unknown | | | +| National Tactics Architect | 6.7.8 | Url | We need to parse the auxiliary SAS capacitor! | https://margaret.net | +| Central Marketing Technician | 8.7.2 | Overwrite | Use the cross-platform GB capacitor, then you can parse the cross-platform capacitor! | http://albina.org | +| Corporate Paradigm Representative | 7.0.2 | Overwrite | You can't quantify the capacitor without hacking the neural SMS capacitor! | | +| Chief Accounts Associate | 8.5.5 | Unknown | You can't generate the panel without compressing the neural SAS panel! | | +| Dynamic Configuration Executive | 4.7.6 | Unknown | If we parse the transmitter, we can get to the ADP transmitter through the online ADP transmitter! | | +| Human Usability Associate | 5.2.5 | Expression | You can't override the capacitor without overriding the mobile XML capacitor! | http://hunter.info | +| Principal Optimization Representative | 0.4.8 | Overwrite | If we index the system, we can get to the XSS system through the cross-platform XSS system! | | +| Internal Factors Facilitator | 2.6.3 | Overwrite | | http://melba.name | +| Future Accounts Producer | 9.4.3 | Unknown | You can't override the port without indexing the neural THX port! | | +| Global Usability Producer | 4.9.5 | Expression | If we hack the application, we can get to the PCI application through the 1080p PCI application! | | +| Future Markets Architect | 9.0.8 | Overwrite | | | +| International Identity Planner | 4.2.1 | Expression | You can't compress the capacitor without copying the virtual USB capacitor! | | +| National Creative Executive | 7.5.7 | Unknown | | http://mallory.biz | +| Lead Tactics Executive | 6.2.9 | Unknown | | https://lowell.org | +| Human Solutions Assistant | 1.9.8 | Expression | Try to parse the PNG panel, maybe it will parse the haptic panel! | http://carter.info | +| Chief Marketing Assistant | 7.3.5 | Expression | | | +| Principal Implementation Director | 7.1.6 | Unknown | We need to transmit the auxiliary FTP transmitter! | http://pearlie.org | +| Principal Markets Designer | 3.8.8 | Url | overriding the transmitter won't do anything, we need to generate the cross-platform SCSI transmitter! | | +| Human Creative Engineer | 7.5.1 | Unknown | | | +| Central Markets Officer | 6.8.8 | Expression | | | +| National Identity Technician | 7.4.9 | Overwrite | Try to parse the SMTP feed, maybe it will parse the multi-byte feed! | https://benedict.org | +| Dynamic Interactions Facilitator | 6.8.2 | Expression | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | +| Lead Integration Liaison | 1.8.8 | Url | | https://sean.com | +| Product Quality Analyst | 3.6.5 | Overwrite | You can't parse the port without bypassing the multi-byte GB port! | https://delbert.com | +| District Factors Producer | 1.6.6 | Unknown | If we reboot the panel, we can get to the THX panel through the solid state THX panel! | | +| Internal Accounts Consultant | 6.3.4 | Expression | Try to connect the SMS feed, maybe it will connect the mobile feed! | https://elda.info | +| Principal Intranet Liaison | 5.1.0 | Overwrite | I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor! | http://neva.info | +| National Communications Orchestrator | 4.5.1 | Unknown | The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit! | | +| Central Marketing Director | 3.2.5 | Overwrite | | https://anibal.net | +| National Accounts Associate | 2.7.6 | Overwrite | | | +| Dynamic Communications Supervisor | 2.6.8 | Overwrite | | https://carol.biz | +| Dynamic Brand Technician | 2.5.6 | Expression | | http://lesly.info | +| Internal Branding Supervisor | 6.7.4 | Url | I'll copy the auxiliary PCI panel, that should panel the PCI panel! | | +| Human Directives Engineer | 5.3.9 | Url | | | +| Product Identity Architect | 5.6.4 | Url | The GB bus is down, back up the redundant bus so we can back up the GB bus! | http://darian.org | +| Chief Infrastructure Consultant | 4.1.2 | Url | Use the multi-byte IB feed, then you can navigate the multi-byte feed! | https://theron.info | +| Principal Web Facilitator | 5.4.5 | Overwrite | compressing the firewall won't do anything, we need to copy the bluetooth COM firewall! | http://paris.name | +| Customer Configuration Manager | 1.6.8 | Unknown | I'll program the online RSS card, that should card the RSS card! | http://sylvan.net | +| Global Markets Executive | 2.5.8 | Expression | | | +| Corporate Accountability Representative | 2.3.2 | Unknown | | | +| Corporate Data Strategist | 9.0.0 | Url | | http://eli.net | +| International Research Director | 4.1.0 | Url | Try to synthesize the SDD hard drive, maybe it will synthesize the bluetooth hard drive! | | +| District Web Developer | 6.1.9 | Unknown | | http://arthur.net | +| Customer Quality Technician | 9.7.0 | Unknown | If we index the card, we can get to the XSS card through the neural XSS card! | | +| Global Response Coordinator | 9.7.3 | Overwrite | Use the solid state SQL firewall, then you can connect the solid state firewall! | https://zelda.net | +| Regional Markets Supervisor | 7.7.6 | Expression | If we transmit the system, we can get to the SMTP system through the virtual SMTP system! | | +| Chief Division Director | 3.4.7 | Unknown | Try to override the CSS microchip, maybe it will override the primary microchip! | http://alejandrin.biz | +| Direct Assurance Supervisor | 4.1.8 | Overwrite | | https://aniyah.org | +| Human Configuration Assistant | 0.1.1 | Unknown | I'll bypass the solid state SMS system, that should system the SMS system! | http://frederick.com | +| Legacy Data Facilitator | 0.9.0 | Overwrite | bypassing the program won't do anything, we need to bypass the optical AI program! | https://beatrice.net | +| Dynamic Configuration Specialist | 8.8.8 | Overwrite | Use the 1080p XML circuit, then you can generate the 1080p circuit! | http://brown.com | +| Product Implementation Officer | 1.9.9 | Unknown | Try to back up the AGP system, maybe it will back up the 1080p system! | | +| Corporate Creative Liaison | 2.9.9 | Overwrite | | http://albert.org | +| Customer Security Representative | 3.7.3 | Expression | The GB circuit is down, hack the redundant circuit so we can hack the GB circuit! | https://jalon.net | +| Dynamic Functionality Consultant | 4.9.1 | Unknown | | https://lonnie.info | +| Internal Division Agent | 2.4.2 | Unknown | | | +| National Solutions Associate | 9.1.2 | Expression | | | +| Internal Infrastructure Strategist | 7.2.2 | Overwrite | I'll transmit the optical XML sensor, that should sensor the XML sensor! | http://ahmad.com | +| Human Implementation Designer | 8.3.7 | Unknown | Try to navigate the RSS card, maybe it will navigate the haptic card! | | +| Chief Implementation Assistant | 6.1.2 | Unknown | | http://cathryn.biz | +| Investor Accountability Officer | 2.4.3 | Overwrite | | | +| Customer Integration Agent | 3.6.0 | Expression | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | | +| --------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_dad04f0558a72869.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_dad04f0558a72869.verified.txt new file mode 100644 index 00000000..a509adeb --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_dad04f0558a72869.verified.txt @@ -0,0 +1,5 @@ +| ---------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | +| Package | Version | License Information Origin | License Expression | +| ---------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | +| ---------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_db1e767d8e540c13.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_db1e767d8e540c13.verified.txt new file mode 100644 index 00000000..e0936383 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_db1e767d8e540c13.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | +| Package | Version | License Information Origin | +| ------- | ------- | -------------------------- | +| ------- | ------- | -------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_de1d5a9f85b34081.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_de1d5a9f85b34081.verified.txt new file mode 100644 index 00000000..18233113 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_de1d5a9f85b34081.verified.txt @@ -0,0 +1,24 @@ +| -------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | +| -------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Mobility Designer | 1.3.7 | Url | | If we parse the transmitter, we can get to the IB transmitter through the back-end IB transmitter! | | http://antonette.net | +| National Research Developer | 8.9.3 | Expression | | | Nina Donnelly,Nina Donnelly | https://rodrigo.biz | +| Internal Program Designer | 7.2.5 | Ignored | We need to hack the auxiliary COM hard drive! | | | | +| Global Implementation Strategist | 5.9.8 | Ignored | | | Colleen Schroeder,Colleen Schroeder | https://enos.info | +| Customer Assurance Officer | 0.3.1 | Ignored | I'll navigate the digital CSS sensor, that should sensor the CSS sensor! | | | https://clementine.info | +| Forward Creative Developer | 9.6.7 | Expression | | I'll transmit the online SSL feed, that should feed the SSL feed! | Melanie Bailey,Melanie Bailey | http://pearline.com | +| Global Integration Planner | 9.1.4 | Url | You can't override the capacitor without overriding the mobile XML capacitor! | | Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman,Melissa Kuhlman | | +| Customer Division Manager | 1.3.9 | Ignored | 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! | Rafael Altenwerth,Rafael Altenwerth,Rafael Altenwerth | | +| Internal Factors Developer | 3.7.7 | Expression | | We need to override the solid state USB interface! | | http://santa.name | +| District Research Producer | 9.1.3 | Overwrite | | copying the protocol won't do anything, we need to copy the back-end EXE protocol! | Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy,Irvin Abernathy | http://mason.net | +| Dynamic Interactions Facilitator | 6.8.2 | Unknown | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | | | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | +| International Optimization Coordinator | 6.5.5 | Ignored | | | Darnell Terry | http://antoinette.org | +| International Tactics Administrator | 9.9.9 | Url | | | | | +| Product Communications Producer | 8.0.6 | Overwrite | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | | | | +| District Infrastructure Strategist | 9.1.5 | Overwrite | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll,Lloyd Carroll | | +| Central Integration Facilitator | 5.7.1 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | | +| Human Accounts Representative | 4.5.5 | Url | | | Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein,Penny Klein | https://darien.net | +| Legacy Interactions Supervisor | 9.7.2 | Ignored | | Try to generate the SAS matrix, maybe it will generate the cross-platform matrix! | Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn,Gordon Kuhn | | +| -------------------------------------- | ------- | -------------------------- | ----------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_e21c38ef1ff70e7d.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_e21c38ef1ff70e7d.verified.txt new file mode 100644 index 00000000..9bb29a28 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_e21c38ef1ff70e7d.verified.txt @@ -0,0 +1,87 @@ +| ------------------------------------ | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | +| ------------------------------------ | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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 Configuration Liaison | 1.8.9 | Expression | | connecting the transmitter won't do anything, we need to program the cross-platform XSS transmitter! | | | http://esther.biz | +| Chief Functionality Planner | 5.1.2 | Unknown | | I'll calculate the 1080p HDD system, that should system the HDD system! | | Matt Mills,Matt Mills | http://myrtice.com | +| Corporate Intranet Associate | 7.5.1 | Overwrite | | 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! | | | +| District Creative Designer | 1.4.6 | Url | We need to program the haptic IB panel! | | | | http://cameron.info | +| Customer Interactions Representative | 0.8.8 | Url | We need to quantify the digital SSL array! | | | | http://heather.name | +| Dynamic Factors Producer | 5.7.1 | Url | | | Use the cross-platform CSS capacitor, then you can override the cross-platform capacitor! | | | +| Central Tactics Director | 4.6.7 | Url | backing up the system won't do anything, we need to parse the neural CSS system! | We need to transmit the back-end RSS transmitter! | | Doyle Osinski,Doyle Osinski,Doyle Osinski,Doyle Osinski | https://valentina.net | +| Global Usability Manager | 9.1.0 | Overwrite | | Try to back up the THX interface, maybe it will back up the auxiliary interface! | | | http://vella.com | +| Internal Factors Facilitator | 2.6.3 | Url | | Try to copy the PNG sensor, maybe it will copy the 1080p sensor! | | Mable Kris,Mable Kris,Mable Kris,Mable Kris,Mable Kris | http://melba.name | +| Human Accountability Developer | 6.9.0 | Unknown | If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit! | | | | | +| Future Accounts Designer | 5.1.9 | Expression | We need to navigate the wireless SAS pixel! | | | | | +| Global Markets Administrator | 8.6.8 | Expression | 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! | The SSL application is down, reboot the bluetooth application so we can reboot the SSL application! | Julius Bernhard,Julius Bernhard,Julius Bernhard,Julius Bernhard | https://lois.biz | +| Dynamic Configuration Assistant | 3.2.1 | Expression | | 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 | | +| Investor Interactions Designer | 1.9.4 | Url | | | parsing the card won't do anything, we need to synthesize the online SQL card! | Stella Barton,Stella Barton | https://octavia.name | +| Global Configuration Consultant | 5.9.5 | Expression | The HDD alarm is down, transmit the auxiliary alarm so we can transmit the HDD alarm! | bypassing the bus won't do anything, we need to calculate the virtual GB bus! | | Guadalupe Littel,Guadalupe Littel,Guadalupe Littel | | +| Regional Factors Designer | 7.4.1 | Url | generating the firewall won't do anything, we need to program the online JSON firewall! | We need to calculate the cross-platform SMTP matrix! | Use the haptic RSS port, then you can transmit the haptic port! | Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus,Misty Nikolaus | | +| Customer Metrics Analyst | 6.7.1 | Unknown | | | | | | +| National Security Orchestrator | 3.5.6 | Expression | Try to copy the HDD array, maybe it will copy the back-end array! | 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! | Roderick Koelpin,Roderick Koelpin,Roderick Koelpin | | +| Human Program Technician | 2.8.4 | Overwrite | | | | Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill,Mark Hamill | http://tomasa.info | +| Corporate Division Executive | 4.7.8 | Url | I'll index the neural SDD bus, that should bus the SDD bus! | If we reboot the program, we can get to the SSL program through the primary SSL program! | | Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros,Melinda Pouros | http://wilmer.com | +| Forward Tactics Planner | 5.4.6 | Url | I'll input the primary GB port, that should port the GB port! | | 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 | https://caterina.info | +| Dynamic Paradigm Officer | 2.3.4 | Overwrite | | | | | https://charity.biz | +| Investor Usability Officer | 2.5.2 | Unknown | Try to program the XML capacitor, maybe it will program the haptic capacitor! | Use the optical SSL alarm, then you can bypass the optical alarm! | | Johnny Bernier | http://orlo.name | +| Regional Brand Associate | 4.0.9 | Expression | | | I'll program the wireless HDD pixel, that should pixel the HDD pixel! | | | +| Corporate Program Associate | 5.2.5 | Overwrite | | | overriding the interface won't do anything, we need to override the virtual THX interface! | | | +| Corporate Infrastructure Executive | 4.8.1 | Unknown | | | Try to index the FTP transmitter, maybe it will index the bluetooth transmitter! | Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist,Allison Schulist | https://justice.info | +| Legacy Solutions Architect | 7.9.3 | Url | | Try to input the AI sensor, maybe it will input the digital sensor! | If we program the array, we can get to the JBOD array through the primary JBOD array! | | | +| Dynamic Configuration Administrator | 4.3.8 | Url | | | Use the redundant AGP microchip, then you can override the redundant microchip! | Roberto Deckow,Roberto Deckow,Roberto Deckow | | +| Chief Response Strategist | 8.0.4 | Url | | The RSS alarm is down, compress the mobile alarm so we can compress the RSS alarm! | Use the 1080p PNG application, then you can calculate the 1080p application! | Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann,Ross Ziemann | | +| Regional Configuration Engineer | 7.3.8 | Expression | Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter! | You can't reboot the matrix without navigating the optical SDD matrix! | | | http://roman.org | +| Internal Operations Producer | 5.8.9 | Overwrite | | Use the online SMTP pixel, then you can index the online pixel! | | | | +| International Marketing Officer | 7.2.8 | Expression | | | | Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk,Tyrone Funk | | +| International Branding Associate | 4.9.4 | Url | | 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://trinity.name | +| Direct Applications Designer | 1.5.1 | Unknown | | We need to connect the haptic TCP panel! | If we bypass the card, we can get to the HDD card through the auxiliary HDD card! | Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling,Kara Keeling | http://tito.name | +| Lead Identity Developer | 7.1.0 | Url | | compressing the bandwidth won't do anything, we need to bypass the primary RAM bandwidth! | | | https://eve.com | +| Lead Program Engineer | 4.5.7 | Overwrite | | The PCI protocol is down, calculate the bluetooth protocol so we can calculate the PCI protocol! | | | | +| Forward Communications Director | 6.0.8 | Overwrite | Try to override the AI alarm, maybe it will override the online alarm! | We need to quantify the virtual TCP card! | | Kristin Bernhard,Kristin Bernhard | | +| Dynamic Configuration Specialist | 3.6.8 | Overwrite | | Use the haptic AGP protocol, then you can program the haptic protocol! | | Meredith Sawayn,Meredith Sawayn,Meredith Sawayn,Meredith Sawayn,Meredith Sawayn,Meredith Sawayn | | +| Senior Brand Officer | 9.3.6 | Url | If we override the system, we can get to the HDD system through the haptic HDD system! | If we parse the bus, we can get to the XML bus through the solid state XML bus! | | | http://carol.name | +| District Integration Designer | 6.2.2 | Expression | | You can't connect the port without connecting the back-end COM port! | | Ignacio Hane,Ignacio Hane | https://cindy.org | +| National Solutions Representative | 5.6.2 | Overwrite | | | You can't synthesize the bandwidth without programming the solid state XSS bandwidth! | | | +| Chief Program Director | 8.8.8 | Overwrite | If we parse the protocol, we can get to the IB protocol through the wireless IB protocol! | | Use the primary SCSI matrix, then you can program the primary matrix! | | | +| Human Group Agent | 3.2.2 | Url | | | generating the interface won't do anything, we need to hack the optical PCI interface! | Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser,Melody Ernser | https://vilma.com | +| Internal Program Engineer | 2.9.3 | Expression | I'll input the neural SQL application, that should application the SQL application! | You can't generate the hard drive without transmitting the haptic RAM hard drive! | I'll bypass the optical AGP feed, that should feed the AGP feed! | | http://cleta.org | +| Forward Directives Representative | 0.5.1 | Url | | parsing the panel won't do anything, we need to calculate the digital SMTP panel! | | Theresa Heathcote,Theresa Heathcote,Theresa Heathcote,Theresa Heathcote,Theresa Heathcote,Theresa Heathcote | https://cleve.biz | +| Legacy Interactions Officer | 8.8.5 | Overwrite | | | Try to program the RAM bandwidth, maybe it will program the optical bandwidth! | | | +| Senior Operations Assistant | 2.4.2 | Expression | | If we index the bandwidth, we can get to the SSL bandwidth through the primary SSL bandwidth! | | Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva,Mercedes Okuneva | https://hector.info | +| Senior Research Liaison | 5.0.6 | Overwrite | If we compress the system, we can get to the AGP system through the multi-byte AGP system! | I'll hack the optical XSS monitor, that should monitor the XSS monitor! | | | http://clair.biz | +| Direct Applications Assistant | 3.5.8 | Unknown | The PCI pixel is down, synthesize the multi-byte pixel so we can synthesize the PCI pixel! | If we back up the driver, we can get to the TCP driver through the redundant TCP driver! | We need to back up the 1080p COM interface! | | http://consuelo.info | +| International Branding Producer | 3.8.2 | Expression | We need to generate the solid state AGP microchip! | | | | | +| Global Solutions Administrator | 5.2.4 | Overwrite | We need to calculate the online SAS bandwidth! | If we index the bus, we can get to the CSS bus through the optical CSS bus! | | Nellie Oberbrunner | https://hailee.biz | +| International Marketing Officer | 2.2.1 | Overwrite | If we connect the driver, we can get to the XSS driver through the online XSS driver! | | | | https://weldon.info | +| Future Markets Architect | 7.2.2 | Overwrite | If we synthesize the port, we can get to the CSS port through the online CSS port! | synthesizing the panel won't do anything, we need to transmit the neural THX panel! | | Gerald Cruickshank,Gerald Cruickshank,Gerald Cruickshank | https://maxime.info | +| Legacy Marketing Designer | 4.5.9 | Expression | | You can't bypass the microchip without parsing the back-end JBOD microchip! | You can't bypass the alarm without generating the back-end HTTP alarm! | | http://lexi.net | +| Legacy Intranet Planner | 8.3.2 | Expression | Use the bluetooth AI bandwidth, then you can transmit the bluetooth bandwidth! | | | | http://nathanael.name | +| Forward Program Officer | 4.2.4 | Url | quantifying the capacitor won't do anything, we need to override the open-source AI capacitor! | indexing the port won't do anything, we need to back up the virtual AGP port! | calculating the bus won't do anything, we need to generate the online CSS bus! | Leon Mayer,Leon Mayer | | +| Human Program Orchestrator | 5.2.4 | Url | Use the cross-platform EXE microchip, then you can quantify the cross-platform microchip! | | bypassing the bandwidth won't do anything, we need to copy the mobile JBOD bandwidth! | | | +| Product Tactics Engineer | 5.6.9 | Overwrite | Use the online TCP driver, then you can navigate the online driver! | I'll transmit the open-source HTTP pixel, that should pixel the HTTP pixel! | transmitting the program won't do anything, we need to generate the multi-byte SAS program! | Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich,Mamie Emmerich | | +| Direct Group Liaison | 3.5.1 | Overwrite | We need to parse the haptic SMS monitor! | | We need to program the auxiliary JBOD circuit! | | | +| Senior Quality Executive | 4.4.8 | Url | I'll quantify the solid state THX feed, that should feed the THX feed! | Use the online RAM array, then you can index the online array! | You can't reboot the transmitter without transmitting the online ADP transmitter! | | http://khalid.com | +| Dynamic Tactics Facilitator | 0.7.3 | Unknown | | | The SSL port is down, bypass the haptic port so we can bypass the SSL port! | | | +| Chief Paradigm Supervisor | 4.3.3 | Url | | | We need to bypass the wireless XML pixel! | Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins,Grace Bins | https://zion.info | +| National Creative Officer | 5.5.6 | Overwrite | indexing the capacitor won't do anything, we need to reboot the redundant FTP capacitor! | | The TCP array is down, bypass the mobile array so we can bypass the TCP array! | | http://orpha.name | +| Lead Optimization Analyst | 2.1.7 | Expression | Use the wireless XSS bandwidth, then you can program the wireless bandwidth! | The SDD hard drive is down, copy the virtual hard drive so we can copy the SDD hard drive! | | Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson,Corey Dickinson | https://madge.info | +| Central Factors Supervisor | 0.8.3 | Overwrite | If we transmit the monitor, we can get to the HTTP monitor through the digital HTTP monitor! | Use the optical IB transmitter, then you can navigate the optical transmitter! | If we back up the firewall, we can get to the TCP firewall through the multi-byte TCP firewall! | Kathleen Blick,Kathleen Blick,Kathleen Blick,Kathleen Blick,Kathleen Blick | http://clement.name | +| Forward Usability Developer | 6.9.1 | Overwrite | | | You can't connect the protocol without overriding the redundant RSS protocol! | | | +| Corporate Intranet Agent | 9.1.8 | Url | We need to compress the 1080p GB circuit! | | The PCI driver is down, reboot the haptic driver so we can reboot the PCI driver! | Essie Hamill,Essie Hamill | http://precious.name | +| Senior Brand Agent | 3.1.9 | Url | generating the alarm won't do anything, we need to parse the virtual XSS alarm! | | I'll bypass the optical ADP bandwidth, that should bandwidth the ADP bandwidth! | | https://lina.info | +| Forward Research Associate | 3.4.7 | Url | | You can't navigate the capacitor without programming the solid state SQL capacitor! | | | | +| National Implementation Agent | 5.6.8 | Expression | | | Use the multi-byte PNG circuit, then you can navigate the multi-byte circuit! | Ira Hermiston,Ira Hermiston,Ira Hermiston,Ira Hermiston | http://rex.biz | +| Future Tactics Specialist | 0.2.2 | Overwrite | We need to override the primary SQL pixel! | We need to transmit the redundant EXE driver! | You can't calculate the hard drive without hacking the multi-byte FTP hard drive! | | | +| Forward Paradigm Developer | 7.9.7 | Overwrite | The GB interface is down, input the auxiliary interface so we can input the GB interface! | The XSS transmitter is down, back up the online transmitter so we can back up the XSS transmitter! | | Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter,Lucy Carter | http://maureen.name | +| Central Functionality Technician | 3.9.3 | Url | | | The AI microchip is down, override the multi-byte microchip so we can override the AI microchip! | | | +| Regional Communications Strategist | 9.3.1 | Url | overriding the matrix won't do anything, we need to back up the solid state IB matrix! | Try to index the HDD panel, maybe it will index the haptic panel! | We need to index the bluetooth JSON pixel! | | http://eloisa.biz | +| Internal Solutions Director | 8.4.4 | Unknown | | | | | | +| Senior Metrics Engineer | 8.3.4 | Overwrite | | Try to quantify the FTP bus, maybe it will quantify the optical bus! | | Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand,Cassandra Hand | http://lou.net | +| National Infrastructure Architect | 6.6.7 | Unknown | | If we bypass the hard drive, we can get to the EXE hard drive through the bluetooth EXE hard drive! | | Howard Rath,Howard Rath,Howard Rath,Howard Rath | http://darlene.net | +| National Creative Analyst | 6.3.1 | Expression | | The SSL feed is down, back up the cross-platform feed so we can back up the SSL feed! | | | | +| Forward Branding Strategist | 4.6.2 | Overwrite | | | The THX hard drive is down, compress the back-end hard drive so we can compress the THX hard drive! | | | +| National Factors Administrator | 8.1.4 | Unknown | | | | | http://janelle.name | +| Legacy Communications Engineer | 7.8.1 | Expression | | I'll synthesize the haptic THX hard drive, that should hard drive the THX hard drive! | The ADP hard drive is down, input the back-end hard drive so we can input the ADP hard drive! | Hilda Kub,Hilda Kub,Hilda Kub,Hilda Kub,Hilda Kub | | +| Principal Web Associate | 4.2.5 | Expression | | | If we index the hard drive, we can get to the XSS hard drive through the primary XSS hard drive! | Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles,Randall Skiles | | +| ------------------------------------ | ------- | -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_e248d76be0448545.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_e248d76be0448545.verified.txt new file mode 100644 index 00000000..598e01d2 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_e248d76be0448545.verified.txt @@ -0,0 +1,8 @@ +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------- | +| Package | Version | License Information Origin | License Expression | Authors | Package Project Url | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------- | +| International Mobility Technician | 3.7.5 | Expression | We need to parse the cross-platform THX driver! | | http://katelin.org | +| District Integration Manager | 5.1.0 | Url | I'll compress the cross-platform JSON capacitor, that should capacitor the JSON capacitor! | | | +| District Mobility Administrator | 3.2.3 | Unknown | | Christopher Dietrich,Christopher Dietrich,Christopher Dietrich,Christopher Dietrich | | +| Dynamic Integration Assistant | 2.1.6 | Unknown | | | https://gerson.info | +| --------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_e59f56dcf5b2b765.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_e59f56dcf5b2b765.verified.txt new file mode 100644 index 00000000..0670ed22 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_e59f56dcf5b2b765.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | --------- | ------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | --------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | --------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_e5a427e92f6d4f67.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_e5a427e92f6d4f67.verified.txt new file mode 100644 index 00000000..80092189 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_e5a427e92f6d4f67.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------- | ------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_e6f536a694634813.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_e6f536a694634813.verified.txt new file mode 100644 index 00000000..a509adeb --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_e6f536a694634813.verified.txt @@ -0,0 +1,5 @@ +| ---------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | +| Package | Version | License Information Origin | License Expression | +| ---------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | +| Legacy Metrics Planner | 9.5.0 | Ignored | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | +| ---------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_e73a6b4d3425e058.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_e73a6b4d3425e058.verified.txt new file mode 100644 index 00000000..e0936383 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_e73a6b4d3425e058.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | +| Package | Version | License Information Origin | +| ------- | ------- | -------------------------- | +| ------- | ------- | -------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_e90d78f4407df312.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_e90d78f4407df312.verified.txt new file mode 100644 index 00000000..171c4a01 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_e90d78f4407df312.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | +| Package | Version | License Information Origin | License Expression | +| ------- | ------- | -------------------------- | ------------------ | +| ------- | ------- | -------------------------- | ------------------ | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_e9209be662a55f55.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_e9209be662a55f55.verified.txt new file mode 100644 index 00000000..3c29dc9c --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_e9209be662a55f55.verified.txt @@ -0,0 +1,104 @@ +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------- | +| Legacy Metrics Planner | 9.5.0 | Ignored | 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! | | +| Central Infrastructure Agent | 6.1.6 | Expression | | | You can't quantify the program without overriding the online SDD program! | | +| Senior Identity Designer | 9.9.3 | Ignored | | | You can't navigate the bandwidth without compressing the open-source AI bandwidth! | https://devyn.info | +| Regional Solutions Supervisor | 1.8.2 | Ignored | You can't parse the system without compressing the haptic GB system! | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | https://lance.net | +| Product Infrastructure Supervisor | 8.1.1 | Ignored | | | | https://merle.com | +| Forward Factors Director | 5.7.8 | Expression | | | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | +| Legacy Research Associate | 9.9.5 | Url | | We need to navigate the bluetooth RAM bus! | | https://hildegard.name | +| District Optimization Manager | 4.0.4 | Ignored | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | Try to program the CSS circuit, maybe it will program the auxiliary circuit! | | +| Principal Branding Assistant | 8.2.6 | Expression | 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! | We need to hack the auxiliary COM hard drive! | | +| District Branding Analyst | 1.9.5 | Unknown | | | | https://paula.net | +| Forward Integration Assistant | 4.8.5 | Expression | | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | +| National Directives Analyst | 8.2.7 | Overwrite | We need to compress the primary GB array! | | Use the mobile SCSI bus, then you can program the mobile bus! | | +| Corporate Group Planner | 9.2.2 | Ignored | | | We need to reboot the virtual RSS alarm! | | +| Customer Assurance Officer | 0.3.1 | Ignored | I'll navigate the digital CSS sensor, that should sensor the CSS sensor! | | | https://clementine.info | +| Forward Creative Developer | 9.6.7 | Unknown | | I'll transmit the online SSL feed, that should feed the SSL feed! | We need to synthesize the cross-platform SMS circuit! | http://pearline.com | +| Corporate Tactics Strategist | 9.9.9 | Ignored | | copying the alarm won't do anything, we need to index the open-source TCP alarm! | generating the matrix won't do anything, we need to parse the solid state GB matrix! | | +| 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! | | | +| Central Marketing Assistant | 9.5.8 | Overwrite | I'll navigate the redundant RAM capacitor, that should capacitor the RAM capacitor! | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | http://julia.biz | +| Senior Optimization Assistant | 3.6.0 | Ignored | | overriding the pixel won't do anything, we need to copy the optical JSON pixel! | Try to compress the SMS bus, maybe it will compress the bluetooth bus! | http://akeem.info | +| Legacy Interactions Analyst | 3.0.8 | Url | hacking the hard drive won't do anything, we need to generate the open-source RSS hard drive! | connecting the system won't do anything, we need to synthesize the mobile ADP system! | | | +| Legacy Infrastructure Producer | 1.1.2 | Unknown | | If we synthesize the circuit, we can get to the SCSI circuit through the virtual SCSI circuit! | | | +| District Implementation Executive | 3.9.4 | Overwrite | | | | http://fae.org | +| Direct Mobility Designer | 7.7.3 | Ignored | | | | http://geovanny.info | +| Future Interactions Facilitator | 7.6.9 | Expression | | If we program the circuit, we can get to the SAS circuit through the back-end SAS circuit! | | | +| District Intranet Engineer | 7.5.5 | Unknown | 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! | | | +| Forward Web Assistant | 5.9.6 | 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! | The SSL application is down, reboot the bluetooth application so we can reboot the SSL application! | | +| District Implementation Orchestrator | 0.1.4 | Url | I'll synthesize the cross-platform CSS panel, that should panel the CSS panel! | You can't navigate the panel without connecting the optical PNG panel! | | | +| Forward Data Administrator | 9.0.6 | Overwrite | If we navigate the pixel, we can get to the SCSI pixel through the bluetooth SCSI pixel! | I'll program the multi-byte AI transmitter, that should transmitter the AI transmitter! | | https://serenity.info | +| Legacy Configuration Coordinator | 2.7.5 | Unknown | connecting the panel won't do anything, we need to bypass the wireless AGP panel! | | | | +| Regional Implementation Technician | 8.8.3 | Ignored | | | | | +| Forward Division Strategist | 5.7.1 | Unknown | You can't reboot the program without transmitting the mobile SMTP program! | The SCSI circuit is down, index the open-source circuit so we can index the SCSI circuit! | Use the solid state HTTP microchip, then you can back up the solid state microchip! | https://esperanza.name | +| Corporate Assurance Executive | 3.2.1 | Url | | programming the driver won't do anything, we need to bypass the mobile PNG driver! | | http://darrell.com | +| International Optimization Coordinator | 6.5.5 | Ignored | | | If we reboot the system, we can get to the SQL system through the mobile SQL system! | http://antoinette.org | +| Direct Web Orchestrator | 1.9.1 | Overwrite | You can't copy the alarm without synthesizing the 1080p IB alarm! | | parsing the card won't do anything, we need to synthesize the online SQL card! | https://kade.com | +| Dynamic Quality Analyst | 0.9.5 | Unknown | We need to index the optical HTTP application! | 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! | | +| Dynamic Quality Director | 4.9.9 | Unknown | | | | http://jesse.com | +| International Data Associate | 6.4.8 | Unknown | If we navigate the array, we can get to the SQL array through the 1080p SQL array! | You can't generate the bandwidth without parsing the mobile EXE bandwidth! | | | +| Internal Data Designer | 9.5.2 | Unknown | | hacking the card won't do anything, we need to hack the neural COM card! | The HTTP hard drive is down, quantify the wireless hard drive so we can quantify the HTTP hard drive! | https://liana.com | +| Senior Communications Director | 3.1.0 | Expression | | | I'll quantify the neural SCSI port, that should port the SCSI port! | | +| Dynamic Security Developer | 0.8.7 | Url | You can't back up the array without parsing the haptic CSS array! | | | https://adan.net | +| Future Accountability Officer | 2.5.3 | Unknown | | | | http://henderson.biz | +| Dynamic Division Agent | 4.2.8 | Url | programming the hard drive won't do anything, we need to transmit the cross-platform HTTP hard drive! | | | https://camilla.info | +| Human Accounts Representative | 4.5.5 | Url | | | The IB firewall is down, reboot the haptic firewall so we can reboot the IB firewall! | https://darien.net | +| Forward Infrastructure Developer | 7.5.6 | Unknown | Try to override the SCSI microchip, maybe it will override the haptic microchip! | programming the monitor won't do anything, we need to parse the online XML monitor! | You can't index the circuit without copying the auxiliary RSS circuit! | | +| Regional Security Engineer | 5.8.4 | Unknown | | | I'll hack the cross-platform SSL array, that should array the SSL array! | | +| Corporate Data Strategist | 9.0.0 | Url | | | Try to transmit the PNG capacitor, maybe it will transmit the solid state capacitor! | 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! | Try to synthesize the SDD hard drive, maybe it will synthesize the bluetooth hard drive! | | https://jewel.name | +| Regional Communications Officer | 3.3.2 | Overwrite | | We need to calculate the redundant THX feed! | | https://cortez.net | +| Human Response Executive | 6.4.4 | Unknown | If we transmit the matrix, we can get to the SDD matrix through the mobile SDD matrix! | | | https://maida.org | +| Customer Optimization Engineer | 3.9.7 | Ignored | The JBOD hard drive is down, copy the wireless hard drive so we can copy the JBOD hard drive! | If we synthesize the bus, we can get to the EXE bus through the online EXE bus! | We need to override the auxiliary AGP firewall! | | +| Central Creative Analyst | 3.6.4 | Overwrite | | programming the driver won't do anything, we need to calculate the primary SMTP driver! | | | +| District Data Executive | 9.4.3 | Expression | | The FTP transmitter is down, compress the auxiliary transmitter so we can compress the FTP transmitter! | | | +| Dynamic Directives Officer | 5.8.8 | Overwrite | | parsing the program won't do anything, we need to synthesize the haptic IB program! | If we program the microchip, we can get to the SMS microchip through the auxiliary SMS microchip! | http://rafaela.net | +| International Brand Strategist | 3.9.3 | Ignored | | | I'll hack the optical COM alarm, that should alarm the COM alarm! | https://rowena.info | +| Human Configuration Assistant | 0.1.1 | Overwrite | I'll bypass the solid state SMS system, that should system the SMS system! | | parsing the driver won't do anything, we need to program the auxiliary IB driver! | http://frederick.com | +| Direct Data Designer | 8.4.8 | Unknown | | | We need to transmit the virtual JSON bus! | | +| International Accounts Liaison | 5.6.7 | Expression | We need to program the virtual SCSI circuit! | We need to generate the auxiliary GB hard drive! | transmitting the port won't do anything, we need to override the haptic JSON port! | | +| Direct Factors Representative | 0.5.2 | Overwrite | You can't override the bandwidth without navigating the auxiliary ADP bandwidth! | backing up the system won't do anything, we need to synthesize the digital AI system! | | | +| Direct Functionality Representative | 9.9.2 | Ignored | You can't navigate the capacitor without bypassing the multi-byte JSON capacitor! | Try to quantify the COM feed, maybe it will quantify the multi-byte feed! | We need to bypass the multi-byte ADP panel! | | +| Future Accounts Architect | 9.1.8 | Ignored | You can't bypass the firewall without indexing the multi-byte COM firewall! | | | https://fermin.biz | +| Internal Division Agent | 2.4.2 | Expression | | Try to compress the TCP microchip, maybe it will compress the auxiliary microchip! | | | +| Direct Creative Planner | 9.7.2 | Unknown | Try to connect the TCP circuit, maybe it will connect the back-end circuit! | synthesizing the circuit won't do anything, we need to override the neural XML circuit! | bypassing the matrix won't do anything, we need to copy the wireless PCI matrix! | | +| Global Markets Director | 3.4.9 | Unknown | The RAM card is down, override the open-source card so we can override the RAM card! | | | | +| Investor Accountability Officer | 2.4.3 | Unknown | | Use the digital XSS hard drive, then you can compress the digital hard drive! | You can't generate the card without synthesizing the bluetooth PNG card! | | +| Dynamic Factors Facilitator | 6.5.2 | Unknown | | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | | http://magnolia.com | +| National Functionality Orchestrator | 3.5.0 | Overwrite | If we quantify the array, we can get to the RAM array through the virtual RAM array! | overriding the card won't do anything, we need to hack the auxiliary HTTP card! | If we quantify the feed, we can get to the RAM feed through the neural RAM feed! | https://gina.name | +| Future Solutions Officer | 3.3.5 | Unknown | You can't override the hard drive without bypassing the mobile TCP hard drive! | | Use the online IB protocol, then you can back up the online protocol! | | +| Direct Usability Analyst | 3.4.8 | Overwrite | hacking the protocol won't do anything, we need to bypass the back-end SDD protocol! | Try to quantify the EXE program, maybe it will quantify the auxiliary program! | The FTP program is down, override the digital program so we can override the FTP program! | https://maritza.com | +| Corporate Infrastructure Executive | 4.8.1 | Overwrite | | | Try to index the FTP transmitter, maybe it will index the bluetooth transmitter! | https://justice.info | +| Forward Optimization Architect | 8.7.9 | Overwrite | | | backing up the feed won't do anything, we need to compress the haptic SMTP feed! | https://kyle.net | +| Human Communications Supervisor | 6.0.1 | Overwrite | Use the cross-platform SAS feed, then you can bypass the cross-platform feed! | | I'll override the neural XML application, that should application the XML application! | http://ethan.name | +| Future Marketing Technician | 7.6.7 | Unknown | | overriding the firewall won't do anything, we need to reboot the open-source COM firewall! | | http://abbey.biz | +| Dynamic Applications Producer | 0.4.7 | Url | Try to input the AI sensor, maybe it will input the digital sensor! | If we program the array, we can get to the JBOD array through the primary JBOD array! | | http://horace.com | +| Central Marketing Orchestrator | 3.3.1 | Overwrite | | Try to parse the IB driver, maybe it will parse the 1080p driver! | We need to connect the bluetooth RSS application! | https://brice.net | +| Human Program Analyst | 3.1.8 | Expression | If we back up the application, we can get to the USB application through the cross-platform USB application! | | | http://efrain.org | +| Product Directives Engineer | 8.2.3 | Unknown | transmitting the bus won't do anything, we need to navigate the online IB bus! | | We need to bypass the wireless PNG bus! | | +| Human Division Agent | 2.2.7 | Expression | | 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 | +| Forward Communications Engineer | 4.5.2 | Overwrite | 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! | If we connect the program, we can get to the SQL program through the digital SQL program! | | https://sonny.com | +| Corporate Quality Planner | 6.6.3 | Ignored | The IB bus is down, bypass the bluetooth bus so we can bypass the IB bus! | You can't transmit the sensor without connecting the digital THX sensor! | The PCI driver is down, parse the neural driver so we can parse the PCI driver! | | +| Senior Integration Engineer | 4.4.3 | Url | | | | | +| Principal Solutions Facilitator | 7.1.5 | Overwrite | | The RSS pixel is down, calculate the auxiliary pixel so we can calculate the RSS pixel! | | | +| Dynamic Accountability Engineer | 3.1.8 | Url | | Use the online RAM program, then you can generate the online program! | I'll back up the back-end JSON card, that should card the JSON card! | https://gerson.com | +| Principal Intranet Manager | 3.8.8 | Expression | | | | | +| Principal Accounts Officer | 2.1.8 | Overwrite | 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! | | +| Internal Program Administrator | 0.3.5 | Expression | We need to navigate the multi-byte PNG application! | The SMS hard drive is down, parse the mobile hard drive so we can parse the SMS hard drive! | The HTTP bandwidth is down, synthesize the 1080p bandwidth so we can synthesize the HTTP bandwidth! | http://viviane.com | +| International Data Coordinator | 1.7.7 | Unknown | | connecting the system won't do anything, we need to navigate the solid state HDD system! | | | +| Product Assurance Facilitator | 3.5.9 | Ignored | | | | | +| District Configuration Administrator | 8.4.4 | Url | | The XML transmitter is down, calculate the auxiliary transmitter so we can calculate the XML transmitter! | | https://david.name | +| Regional Configuration Engineer | 7.3.8 | Expression | Try to navigate the ADP transmitter, maybe it will navigate the haptic transmitter! | You can't reboot the matrix without navigating the optical SDD matrix! | | http://roman.org | +| Dynamic Creative Designer | 7.5.8 | Expression | The XML system is down, hack the bluetooth system so we can hack the XML system! | | The GB program is down, program the back-end program so we can program the GB program! | http://daniela.name | +| Corporate Identity Coordinator | 9.8.3 | Url | | If we navigate the bus, we can get to the HDD bus through the primary HDD bus! | | | +| Corporate Implementation Technician | 2.8.4 | Url | | If we compress the protocol, we can get to the COM protocol through the mobile COM protocol! | Use the multi-byte SMTP program, then you can synthesize the multi-byte program! | | +| Dynamic Functionality Strategist | 5.8.0 | Url | Use the digital HTTP card, then you can reboot the digital card! | The CSS port is down, quantify the virtual port so we can quantify the CSS port! | | http://filiberto.net | +| Future Configuration Officer | 7.6.0 | Expression | You can't compress the alarm without parsing the optical JBOD alarm! | 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! | | +| Product Usability Coordinator | 5.4.7 | Overwrite | The GB panel is down, synthesize the neural panel so we can synthesize the GB panel! | You can't copy the system without indexing the virtual XSS system! | If we override the hard drive, we can get to the RSS hard drive through the multi-byte RSS hard drive! | | +| Lead Factors Designer | 0.9.2 | Url | You can't quantify the bandwidth without calculating the online RAM bandwidth! | | | | +| Senior Metrics Assistant | 8.7.4 | Unknown | | 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! | | +| Internal Factors Designer | 1.9.6 | Url | | | | | +| Lead Intranet Director | 9.2.4 | Url | | You can't parse the bandwidth without transmitting the open-source USB bandwidth! | If we parse the driver, we can get to the GB driver through the neural GB driver! | https://dane.name | +| -------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_ea74c9e660e2895b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_ea74c9e660e2895b.verified.txt new file mode 100644 index 00000000..171c4a01 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_ea74c9e660e2895b.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | +| Package | Version | License Information Origin | License Expression | +| ------- | ------- | -------------------------- | ------------------ | +| ------- | ------- | -------------------------- | ------------------ | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_eacabf00e4b749fd.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_eacabf00e4b749fd.verified.txt new file mode 100644 index 00000000..80092189 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_eacabf00e4b749fd.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------- | ------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Authors | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_ed5c9d655b79349f.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_ed5c9d655b79349f.verified.txt new file mode 100644 index 00000000..e0936383 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_ed5c9d655b79349f.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | +| Package | Version | License Information Origin | +| ------- | ------- | -------------------------- | +| ------- | ------- | -------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_ee136d6c797a9dc7.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_ee136d6c797a9dc7.verified.txt new file mode 100644 index 00000000..13892a79 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_ee136d6c797a9dc7.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_ee378a191a79f3cc.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_ee378a191a79f3cc.verified.txt new file mode 100644 index 00000000..982ccbd9 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_ee378a191a79f3cc.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_ef70cbe9982f555b.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_ef70cbe9982f555b.verified.txt new file mode 100644 index 00000000..6475fe6f --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_ef70cbe9982f555b.verified.txt @@ -0,0 +1,5 @@ +| ---------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | +| ---------------------- | ------- | -------------------------- | -------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | +| Legacy Metrics Planner | 9.5.0 | Unknown | 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/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_f0041905a899986c.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_f0041905a899986c.verified.txt new file mode 100644 index 00000000..5d373604 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_f0041905a899986c.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | --------- | ------- | ------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Authors | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | --------- | ------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | --------- | ------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_f23c76ac03bd0a85.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_f23c76ac03bd0a85.verified.txt new file mode 100644 index 00000000..e0936383 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_f23c76ac03bd0a85.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | +| Package | Version | License Information Origin | +| ------- | ------- | -------------------------- | +| ------- | ------- | -------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_f333edff0ab5ed69.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_f333edff0ab5ed69.verified.txt new file mode 100644 index 00000000..a8d063ea --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_f333edff0ab5ed69.verified.txt @@ -0,0 +1,24 @@ +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Package Project Url | +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------- | +| Legacy Metrics Planner | 9.5.0 | Ignored | 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! | | +| Central Infrastructure Agent | 6.1.6 | Expression | | | You can't quantify the program without overriding the online SDD program! | | +| Senior Identity Designer | 9.9.3 | Ignored | | | You can't navigate the bandwidth without compressing the open-source AI bandwidth! | https://devyn.info | +| Regional Solutions Supervisor | 1.8.2 | Ignored | You can't parse the system without compressing the haptic GB system! | Use the cross-platform CSS capacitor, then you can copy the cross-platform capacitor! | | https://lance.net | +| Product Infrastructure Supervisor | 8.1.1 | Ignored | | | | https://merle.com | +| Forward Factors Director | 5.7.8 | Expression | | | Try to synthesize the COM port, maybe it will synthesize the haptic port! | | +| Legacy Research Associate | 9.9.5 | Url | | We need to navigate the bluetooth RAM bus! | | https://hildegard.name | +| District Optimization Manager | 4.0.4 | Ignored | Use the bluetooth HDD driver, then you can parse the bluetooth driver! | We need to quantify the wireless HTTP array! | Try to program the CSS circuit, maybe it will program the auxiliary circuit! | | +| Principal Branding Assistant | 8.2.6 | Expression | 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! | We need to hack the auxiliary COM hard drive! | | +| District Branding Analyst | 1.9.5 | Unknown | | | | https://paula.net | +| Forward Integration Assistant | 4.8.5 | Expression | | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | Use the back-end SDD panel, then you can compress the back-end panel! | | +| National Directives Analyst | 8.2.7 | Overwrite | We need to compress the primary GB array! | | Use the mobile SCSI bus, then you can program the mobile bus! | | +| Corporate Group Planner | 9.2.2 | Ignored | | | We need to reboot the virtual RSS alarm! | | +| Customer Assurance Officer | 0.3.1 | Ignored | I'll navigate the digital CSS sensor, that should sensor the CSS sensor! | | | https://clementine.info | +| Forward Creative Developer | 9.6.7 | Unknown | | I'll transmit the online SSL feed, that should feed the SSL feed! | We need to synthesize the cross-platform SMS circuit! | http://pearline.com | +| Corporate Tactics Strategist | 9.9.9 | Ignored | | copying the alarm won't do anything, we need to index the open-source TCP alarm! | generating the matrix won't do anything, we need to parse the solid state GB matrix! | | +| 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! | | | +| Central Marketing Assistant | 9.5.8 | Overwrite | I'll navigate the redundant RAM capacitor, that should capacitor the RAM capacitor! | I'll parse the mobile SSL bandwidth, that should bandwidth the SSL bandwidth! | | http://julia.biz | +| Senior Optimization Assistant | 3.6.0 | Ignored | | overriding the pixel won't do anything, we need to copy the optical JSON pixel! | Try to compress the SMS bus, maybe it will compress the bluetooth bus! | http://akeem.info | +| Legacy Interactions Analyst | 3.0.8 | Url | hacking the hard drive won't do anything, we need to generate the open-source RSS hard drive! | connecting the system won't do anything, we need to synthesize the mobile ADP system! | | | +| --------------------------------- | ------- | -------------------------- | --------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ----------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_f409fdc7bfada99c.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_f409fdc7bfada99c.verified.txt new file mode 100644 index 00000000..e0936383 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_f409fdc7bfada99c.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | +| Package | Version | License Information Origin | +| ------- | ------- | -------------------------- | +| ------- | ------- | -------------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_f53b5f6a9bec98a3.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_f53b5f6a9bec98a3.verified.txt new file mode 100644 index 00000000..0670ed22 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_f53b5f6a9bec98a3.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | --------- | ------------------- | +| Package | Version | License Information Origin | License Expression | Copyright | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | --------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | --------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_f905f35128dc8a08.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_f905f35128dc8a08.verified.txt new file mode 100644 index 00000000..ee440a0f --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_f905f35128dc8a08.verified.txt @@ -0,0 +1,104 @@ +| --------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | --------------------- | +| Package | Version | License Information Origin | License Expression | Package Project Url | +| --------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | --------------------- | +| Legacy Metrics Planner | 9.5.0 | Url | Use the open-source JBOD matrix, then you can synthesize the open-source matrix! | | +| Forward Quality Producer | 6.3.7 | Overwrite | The CSS microchip is down, back up the bluetooth microchip so we can back up the CSS microchip! | https://jayne.name | +| Regional Security Architect | 2.2.5 | Url | | | +| Global Usability Representative | 3.5.9 | Url | | | +| District Mobility Administrator | 3.2.3 | Ignored | | | +| Regional Solutions Supervisor | 1.8.2 | Ignored | You can't parse the system without compressing the haptic GB system! | https://lance.net | +| Customer Directives Director | 7.9.2 | Overwrite | Try to hack the COM panel, maybe it will hack the auxiliary panel! | | +| Chief Assurance Associate | 3.3.1 | Url | overriding the panel won't do anything, we need to parse the open-source IB panel! | https://tyrese.info | +| Customer Operations Officer | 2.6.0 | Overwrite | Use the bluetooth USB alarm, then you can override the bluetooth alarm! | http://antonette.org | +| Dynamic Security Technician | 6.8.3 | Unknown | | | +| Central Integration Analyst | 0.4.0 | Overwrite | If we synthesize the protocol, we can get to the JBOD protocol through the multi-byte JBOD protocol! | https://laverne.name | +| National Communications Facilitator | 3.1.0 | Url | quantifying the transmitter won't do anything, we need to program the mobile HDD transmitter! | | +| Dynamic Functionality Agent | 5.9.5 | Unknown | | http://annabelle.net | +| Forward Functionality Analyst | 4.5.1 | Expression | | http://orie.name | +| District Branding Analyst | 1.9.5 | Url | | https://paula.net | +| Product Applications Assistant | 2.8.4 | Overwrite | The FTP firewall is down, compress the back-end firewall so we can compress the FTP firewall! | https://carleton.info | +| Global Security Liaison | 8.1.2 | Expression | | | +| Central Interactions Manager | 7.0.9 | Expression | | | +| National Tactics Engineer | 3.7.5 | Url | generating the matrix won't do anything, we need to override the redundant GB matrix! | https://alexys.org | +| Dynamic Applications Director | 5.1.4 | Ignored | | | +| Chief Mobility Planner | 7.1.0 | Overwrite | | | +| Customer Implementation Director | 5.9.1 | Unknown | | | +| National Tactics Architect | 6.7.8 | Url | We need to parse the auxiliary SAS capacitor! | https://margaret.net | +| Central Marketing Technician | 8.7.2 | Overwrite | Use the cross-platform GB capacitor, then you can parse the cross-platform capacitor! | http://albina.org | +| Corporate Paradigm Representative | 7.0.2 | Overwrite | You can't quantify the capacitor without hacking the neural SMS capacitor! | | +| Chief Accounts Associate | 8.5.5 | Unknown | You can't generate the panel without compressing the neural SAS panel! | | +| Dynamic Configuration Executive | 4.7.6 | Unknown | If we parse the transmitter, we can get to the ADP transmitter through the online ADP transmitter! | | +| Human Usability Associate | 5.2.5 | Expression | You can't override the capacitor without overriding the mobile XML capacitor! | http://hunter.info | +| Principal Optimization Representative | 0.4.8 | Overwrite | If we index the system, we can get to the XSS system through the cross-platform XSS system! | | +| Internal Factors Facilitator | 2.6.3 | Overwrite | | http://melba.name | +| Future Accounts Producer | 9.4.3 | Unknown | You can't override the port without indexing the neural THX port! | | +| Global Usability Producer | 4.9.5 | Expression | If we hack the application, we can get to the PCI application through the 1080p PCI application! | | +| Future Markets Architect | 9.0.8 | Overwrite | | | +| International Identity Planner | 4.2.1 | Expression | You can't compress the capacitor without copying the virtual USB capacitor! | | +| National Creative Executive | 7.5.7 | Unknown | | http://mallory.biz | +| Lead Tactics Executive | 6.2.9 | Unknown | | https://lowell.org | +| Human Solutions Assistant | 1.9.8 | Expression | Try to parse the PNG panel, maybe it will parse the haptic panel! | http://carter.info | +| Chief Marketing Assistant | 7.3.5 | Expression | | | +| District Brand Designer | 3.4.8 | Ignored | Try to quantify the PNG program, maybe it will quantify the online program! | https://josiane.org | +| Internal Factors Developer | 3.7.7 | Ignored | | http://santa.name | +| Dynamic Mobility Representative | 8.4.2 | Ignored | | http://brooks.info | +| Principal Implementation Director | 7.1.6 | Unknown | We need to transmit the auxiliary FTP transmitter! | http://pearlie.org | +| Chief Solutions Orchestrator | 8.7.8 | Ignored | If we navigate the pixel, we can get to the SCSI pixel through the bluetooth SCSI pixel! | | +| Principal Markets Designer | 3.8.8 | Url | overriding the transmitter won't do anything, we need to generate the cross-platform SCSI transmitter! | | +| Human Creative Engineer | 7.5.1 | Unknown | | | +| Central Markets Officer | 6.8.8 | Expression | | | +| National Identity Technician | 7.4.9 | Overwrite | Try to parse the SMTP feed, maybe it will parse the multi-byte feed! | https://benedict.org | +| Dynamic Interactions Facilitator | 6.8.2 | Expression | You can't quantify the capacitor without backing up the haptic SMTP capacitor! | | +| Senior Division Liaison | 7.1.3 | Ignored | | | +| Lead Integration Liaison | 1.8.8 | Url | | https://sean.com | +| Product Quality Analyst | 3.6.5 | Overwrite | You can't parse the port without bypassing the multi-byte GB port! | https://delbert.com | +| District Factors Producer | 1.6.6 | Unknown | If we reboot the panel, we can get to the THX panel through the solid state THX panel! | | +| Internal Accounts Consultant | 6.3.4 | Expression | Try to connect the SMS feed, maybe it will connect the mobile feed! | https://elda.info | +| Principal Intranet Liaison | 5.1.0 | Overwrite | I'll copy the solid state SMS capacitor, that should capacitor the SMS capacitor! | http://neva.info | +| National Communications Orchestrator | 4.5.1 | Unknown | The FTP circuit is down, reboot the redundant circuit so we can reboot the FTP circuit! | | +| Central Marketing Director | 3.2.5 | Overwrite | | https://anibal.net | +| National Accounts Associate | 2.7.6 | Overwrite | | | +| District Infrastructure Strategist | 9.1.5 | Ignored | parsing the hard drive won't do anything, we need to override the haptic PNG hard drive! | | +| Dynamic Communications Supervisor | 2.6.8 | Overwrite | | https://carol.biz | +| Dynamic Brand Technician | 2.5.6 | Expression | | http://lesly.info | +| Senior Identity Specialist | 2.8.9 | Ignored | We need to program the primary THX protocol! | https://kennedy.biz | +| Internal Branding Supervisor | 6.7.4 | Url | I'll copy the auxiliary PCI panel, that should panel the PCI panel! | | +| Human Directives Engineer | 5.3.9 | Url | | | +| Product Identity Architect | 5.6.4 | Url | The GB bus is down, back up the redundant bus so we can back up the GB bus! | http://darian.org | +| Chief Infrastructure Consultant | 4.1.2 | Url | Use the multi-byte IB feed, then you can navigate the multi-byte feed! | https://theron.info | +| Principal Web Facilitator | 5.4.5 | Overwrite | compressing the firewall won't do anything, we need to copy the bluetooth COM firewall! | http://paris.name | +| Customer Configuration Manager | 1.6.8 | Unknown | I'll program the online RSS card, that should card the RSS card! | http://sylvan.net | +| Global Markets Executive | 2.5.8 | Expression | | | +| Corporate Accountability Representative | 2.3.2 | Unknown | | | +| Corporate Data Strategist | 9.0.0 | Url | | http://eli.net | +| Legacy Functionality Consultant | 8.0.9 | Ignored | Try to generate the SAS matrix, maybe it will generate the cross-platform matrix! | http://emie.info | +| International Research Director | 4.1.0 | Url | Try to synthesize the SDD hard drive, maybe it will synthesize the bluetooth hard drive! | | +| Forward Identity Orchestrator | 1.3.3 | Ignored | hacking the alarm won't do anything, we need to override the neural SSL alarm! | | +| District Web Developer | 6.1.9 | Unknown | | http://arthur.net | +| Customer Quality Technician | 9.7.0 | Unknown | If we index the card, we can get to the XSS card through the neural XSS card! | | +| Global Response Coordinator | 9.7.3 | Overwrite | Use the solid state SQL firewall, then you can connect the solid state firewall! | https://zelda.net | +| Human Quality Facilitator | 1.2.0 | Ignored | We need to copy the online THX firewall! | | +| Regional Markets Supervisor | 7.7.6 | Expression | If we transmit the system, we can get to the SMTP system through the virtual SMTP system! | | +| Chief Division Director | 3.4.7 | Unknown | Try to override the CSS microchip, maybe it will override the primary microchip! | http://alejandrin.biz | +| Human Accountability Analyst | 0.8.7 | Ignored | parsing the program won't do anything, we need to synthesize the haptic IB program! | | +| Direct Assurance Supervisor | 4.1.8 | Overwrite | | https://aniyah.org | +| Regional Interactions Assistant | 8.4.1 | Ignored | I'll hack the optical COM alarm, that should alarm the COM alarm! | | +| Human Configuration Assistant | 0.1.1 | Unknown | I'll bypass the solid state SMS system, that should system the SMS system! | http://frederick.com | +| Legacy Data Facilitator | 0.9.0 | Overwrite | bypassing the program won't do anything, we need to bypass the optical AI program! | https://beatrice.net | +| Future Interactions Specialist | 8.8.8 | Ignored | quantifying the application won't do anything, we need to hack the haptic RAM application! | | +| Dynamic Configuration Specialist | 8.8.8 | Overwrite | Use the 1080p XML circuit, then you can generate the 1080p circuit! | http://brown.com | +| Product Implementation Officer | 1.9.9 | Unknown | Try to back up the AGP system, maybe it will back up the 1080p system! | | +| Direct Directives Strategist | 7.3.1 | Ignored | | | +| Corporate Creative Liaison | 2.9.9 | Overwrite | | http://albert.org | +| Customer Security Representative | 3.7.3 | Expression | The GB circuit is down, hack the redundant circuit so we can hack the GB circuit! | https://jalon.net | +| Dynamic Functionality Consultant | 4.9.1 | Unknown | | https://lonnie.info | +| District Intranet Designer | 4.5.0 | Ignored | | | +| Internal Division Agent | 2.4.2 | Unknown | | | +| National Solutions Associate | 9.1.2 | Expression | | | +| Internal Infrastructure Strategist | 7.2.2 | Overwrite | I'll transmit the optical XML sensor, that should sensor the XML sensor! | http://ahmad.com | +| Human Implementation Designer | 8.3.7 | Unknown | Try to navigate the RSS card, maybe it will navigate the haptic card! | | +| Chief Implementation Assistant | 6.1.2 | Unknown | | http://cathryn.biz | +| Investor Accountability Officer | 2.4.3 | Overwrite | | | +| Investor Usability Officer | 2.5.2 | Ignored | Try to program the XML capacitor, maybe it will program the haptic capacitor! | http://orlo.name | +| Customer Integration Agent | 3.6.0 | Expression | If we reboot the driver, we can get to the RAM driver through the digital RAM driver! | | +| --------------------------------------- | ------- | -------------------------- | ------------------------------------------------------------------------------------------------------ | --------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_fc2590c1090180e7.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_fc2590c1090180e7.verified.txt new file mode 100644 index 00000000..13892a79 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_fc2590c1090180e7.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ----------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_fe860a6c9b2aeb93.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_fe860a6c9b2aeb93.verified.txt new file mode 100644 index 00000000..171c4a01 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_fe860a6c9b2aeb93.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | +| Package | Version | License Information Origin | License Expression | +| ------- | ------- | -------------------------- | ------------------ | +| ------- | ------- | -------------------------- | ------------------ | diff --git a/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_febd9f3ba43a5ecd.verified.txt b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_febd9f3ba43a5ecd.verified.txt new file mode 100644 index 00000000..1a068e34 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/MarkdownTableOutputFormatterTest.ValidatedLicenses_Should_PrintCorrectTable_febd9f3ba43a5ecd.verified.txt @@ -0,0 +1,4 @@ +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------- | ------------------- | +| Package | Version | License Information Origin | License Expression | License Url | Copyright | Authors | Package Project Url | +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------- | ------------------- | +| ------- | ------- | -------------------------- | ------------------ | ----------- | --------- | ------- | ------------------- | diff --git a/tests/NuGetUtility.Test/Output/Table/MarkdownTableOutputFormatterTest.cs b/tests/NuGetUtility.Test/Output/Table/MarkdownTableOutputFormatterTest.cs new file mode 100644 index 00000000..c86e10c8 --- /dev/null +++ b/tests/NuGetUtility.Test/Output/Table/MarkdownTableOutputFormatterTest.cs @@ -0,0 +1,56 @@ +// Licensed to the projects contributors. +// The license conditions are provided in the LICENSE file located in the project root + +using NuGetUtility.Output; +using NuGetUtility.Output.Table; + +namespace NuGetUtility.Test.Output.Table +{ + [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 MarkdownTableOutputFormatterTest : TestBase + { + private readonly bool _omitValidLicensesOnError; + private readonly bool _skipIgnoredPackages; + + public MarkdownTableOutputFormatterTest(bool omitValidLicensesOnError, bool skipIgnoredPackages, bool includeCopyright, bool includeAuthors, bool includeLicenseUrl) : base(includeCopyright, includeAuthors, includeLicenseUrl) + { + _omitValidLicensesOnError = omitValidLicensesOnError; + _skipIgnoredPackages = skipIgnoredPackages; + } + protected override IOutputFormatter CreateUut() + { + return new TableOutputFormatter(_omitValidLicensesOnError, _skipIgnoredPackages, true); + } + } +}