Applitools.TestStringUtils.TestStringEqualsIgnoreWhiteSpace C# (CSharp) Method

TestStringEqualsIgnoreWhiteSpace() private method

private TestStringEqualsIgnoreWhiteSpace ( string strX, string strY, bool areEqual ) : void
strX string
strY string
areEqual bool
return void
        public void TestStringEqualsIgnoreWhiteSpace(string strX, string strY, bool areEqual)
        {
            Assert.AreEqual(areEqual, StringUtils.StringEqualsIgnoreWhiteSpace(strX, strY));
        }