public void AddTest()
        {
            AttachmentRepositoryCollection target = new AttachmentRepositoryCollection(); // TODO: Initialize to an appropriate value
            ProviderBase provider = null;                                                 // TODO: Initialize to an appropriate value

            target.Add(provider);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
        public void ItemTest()
        {
            AttachmentRepositoryCollection target = new AttachmentRepositoryCollection(); // TODO: Initialize to an appropriate value
            string name = string.Empty;                                                   // TODO: Initialize to an appropriate value
            AttachmentRepository actual;

            actual = target[name];
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void CopyToTest()
        {
            AttachmentRepositoryCollection target = new AttachmentRepositoryCollection(); // TODO: Initialize to an appropriate value

            AttachmentRepository[] array = null;                                          // TODO: Initialize to an appropriate value
            int index = 0;                                                                // TODO: Initialize to an appropriate value

            target.CopyTo(array, index);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
        public void AttachmentRepositoryCollectionConstructorTest()
        {
            AttachmentRepositoryCollection target = new AttachmentRepositoryCollection();

            Assert.Inconclusive("TODO: Implement code to verify target");
        }