コード例 #1
0
ファイル: CompositeTest.cs プロジェクト: jgwynn2901/composite
        /// <summary>
        /// NUNIT Tests the copy constructor.
        /// </summary>
        [Test] public void TestCopyConstructor()
        {
            var test = new Composite(_base);

            Assert.IsNotNull(test, "test is null!");
            Assert.IsTrue(_base.Equals(test), "copy construct problems");
        }