BudgetAnalyser.Engine.UnitTest.Encryption.EncryptedLocalDiskReaderWriterTest.IsValidAlphaNumericWithPunctuation_ShouldBeTrue_GivenPunctuationSymbols3 C# (CSharp) 메소드

IsValidAlphaNumericWithPunctuation_ShouldBeTrue_GivenPunctuationSymbols3() 개인적인 메소드

        public void IsValidAlphaNumericWithPunctuation_ShouldBeTrue_GivenPunctuationSymbols3()
        {
            var text = "/?";
            var result = this.subject.IsValidAlphaNumericWithPunctuation(text);
            Assert.IsTrue(result);
        }