BudgetAnalyser.Engine.UnitTest.Encryption.EncryptedLocalDiskReaderWriterTest.IsValidAlphaNumericWithPunctuation_ShouldBeTrue_GivenPunctuationSymbols1 C# (CSharp) Метод

IsValidAlphaNumericWithPunctuation_ShouldBeTrue_GivenPunctuationSymbols1() приватный Метод

        public void IsValidAlphaNumericWithPunctuation_ShouldBeTrue_GivenPunctuationSymbols1()
        {
            var text = "~`!@#$%^&*()_-+=";
            var result = this.subject.IsValidAlphaNumericWithPunctuation(text);
            Assert.IsTrue(result);
        }