예제 #1
0
        public void Union()
        {
            ColorSet cs1   = new ColorSet(5);
            ColorSet cs2   = new ColorSet(10);
            ColorSet final = ColorSet.CreateFullColorSet(3);

            ColorSet union = cs1.Union(cs2);

            Assert.True(union == final);
        }