public void InsertItemTest()
        {
            FileCollection fc;
            Package        package;
            File           f;


            //
            // Setup the test.
            //
            package = new Package();
            fc      = new FileCollection(package);
            fc.Add(new File());
            f = new File();

            //
            // Run the test.
            //
            fc.Insert(0, f);

            //
            // Verify the test.
            //
            Assert.AreSame(f, fc[0]);
        }