public void IsIsomorphicTest3() { string s = "paper", t = "title"; bool expectedResult = true; bool actualResult = new IsIsomorphicClass().IsIsomorphic(s, t); Assert.AreEqual(expectedResult, actualResult); }
public void IsIsomorphicTest4() { string s = "ab", t = "aa"; bool expectedResult = false; bool actualResult = new IsIsomorphicClass().IsIsomorphic(s, t); Assert.AreEqual(expectedResult, actualResult); }
public void IsIsomorphicTest1() { string s = "egg", t = "add"; bool expectedResult = true; bool actualResult = new IsIsomorphicClass().IsIsomorphic(s, t); Assert.AreEqual(expectedResult, actualResult); }