CanvasTest.TestUtilities.TestIsSubset C# (CSharp) Method

TestIsSubset() private method

private TestIsSubset ( ) : void
return void
        public void TestIsSubset()
        {
            string[] a = new string[] { "1", "2" };
            string[] b = new string[] { "1", "2", "3" };

            Assert.IsTrue(Utilities.IsSubset(a, b));
            Assert.IsFalse(Utilities.IsSubset(b, a));
        }
    }