public void GetEnumeratorTest()
        {
            try {
                IavaJointCollection collection = new IavaJointCollection();

                // Make sure we are getting an Enumerator
                Assert.IsNotNull(collection.GetEnumerator());
            }
            catch (Exception ex) {
                Assert.Fail(ex.Message);
            }
        }