public void TestMultipleCertificatesFound()
 {
     var test = new CertificateExistsTest
     {
         CertificateStoreLocation = StoreLocation.LocalMachine,
         CertificateStoreName = StoreName.Root
     };
     test.Run();
 }
Example #2
0
        public void TestMultipleCertificatesFound()
        {
            var test = new CertificateExistsTest
            {
                CertificateStoreLocation = StoreLocation.LocalMachine,
                CertificateStoreName     = StoreName.Root
            };

            test.Run();
        }
 public void TestNoCertificateFound()
 {
     var test = new CertificateExistsTest
     {
         CertificateStoreLocation = StoreLocation.LocalMachine,
         CertificateStoreName = StoreName.Root,
         SubjectName = "Bob"
     };
     test.Run();
 }
Example #4
0
        public void TestNoCertificateFound()
        {
            var test = new CertificateExistsTest
            {
                CertificateStoreLocation = StoreLocation.LocalMachine,
                CertificateStoreName     = StoreName.Root,
                SubjectName = "Bob"
            };

            test.Run();
        }