コード例 #1
0
        public void CollectionInstanceOk()
        {
            clsCustomer           newCustomer = new clsCustomer();
            clsCustomerCollection collection  = new clsCustomerCollection();

            collection.setCustomer(newCustomer);
            Assert.AreEqual(newCustomer, collection.getCustomer());
        }