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

IsValidAlphaNumericWithPunctuation_ShouldBeTrue_GivenPunctuationSymbols2() 개인적인 메소드

        public void IsValidAlphaNumericWithPunctuation_ShouldBeTrue_GivenPunctuationSymbols2()
        {
            var text = @"\|]}{[:;""',<.>";
            var result = this.subject.IsValidAlphaNumericWithPunctuation(text);
            Assert.IsTrue(result);
        }