Exemple #1
0
        public void GeneticComponent_CreateNew()
        {
            TestComponent    component  = new TestComponent();
            GeneticComponent component2 = component.CreateNew();

            Assert.IsType <TestComponent>(component2);
            Assert.NotSame(component, component2);
        }