Tests.CursorStringTest.EqualWithCharOperatorTest C# (CSharp) Method

EqualWithCharOperatorTest() private method

private EqualWithCharOperatorTest ( ) : void
return void
        public void EqualWithCharOperatorTest()
        {
            var str1 = new StrWithCursor("t");
            var symbol = 't';
            Assert.AreEqual(true, str1 == symbol);
            symbol = 'e';
            Assert.AreEqual(false, str1 == symbol);
        }