public void TestMethod1() { IV.Set33_InterleaveOfTwoStrings ioftw = new IV.Set33_InterleaveOfTwoStrings(); var x = ioftw.IsInterLeaved("XXY", "XXZ", "XXZXXXY"); Assert.AreEqual(false, x); }
public void TestMethod2() { IV.Set33_InterleaveOfTwoStrings ioftw = new IV.Set33_InterleaveOfTwoStrings(); var x = ioftw.IsInterLeaved("XY", "WZ", "WZXY"); Assert.AreEqual(true, x); }