BudgetAnalyser.Engine.UnitTest.Encryption.CredentialStoreTest.RetrievePasskey_ShouldReturnSecuredString_GivenTextValue C# (CSharp) 메소드

RetrievePasskey_ShouldReturnSecuredString_GivenTextValue() 개인적인 메소드

        public void RetrievePasskey_ShouldReturnSecuredString_GivenTextValue()
        {
            this.subject.SetPasskey(CreateSecureString("Foo"));

            var result = this.subject.RetrievePasskey();

            Assert.IsInstanceOfType(result, typeof(SecureString));
        }