Пример #1
0
        public void PersonCloneTest()
        {
            Person    man       = new Person("Alex");
            Exception exception = null;

            try
            {
                object boy = man.Clone();
            }

            catch (Exception ex)
            {
                exception = ex;
            }

            Assert.IsNotNull(exception);
        }