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);
        }