BudgetAnalyser.Engine.UnitTest.Encryption.EncryptedLocalDiskReaderWriterTest.IsValidAlphaNumericWithPunctuation_ShouldBeTrue_GivenPunctuationSymbols3 C# (CSharp) Method

IsValidAlphaNumericWithPunctuation_ShouldBeTrue_GivenPunctuationSymbols3() private method

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