public void CookiesShouldBeSecure() =>
 Verifier.VerifyAnalyzer(@"TestCases\CookieShouldBeSecure.cs",
                         new CookieShouldBeSecure(AnalyzerConfiguration.AlwaysEnabled),
                         additionalReferences: MetadataReferenceFacade.GetSystemWeb());
 public void CookiesShouldBeSecure_Not_Enabled() =>
 Verifier.VerifyNoIssueReported(@"TestCases\CookieShouldBeSecure.cs",
                                new CookieShouldBeSecure(),
                                additionalReferences: MetadataReferenceFacade.GetSystemWeb());
 public void UriShouldNotBeHardcoded_CSharp_VirtualPath_AspNet(string aspNetMvcVersion) =>
 Verifier.VerifyAnalyzer(@"TestCases\UriShouldNotBeHardcoded.AspNet.cs",
                         new UriShouldNotBeHardcoded(),
                         additionalReferences: MetadataReferenceFacade.GetSystemWeb()
                         .Concat(NuGetMetadataReference.MicrosoftAspNetMvc(aspNetMvcVersion)));