public void addTestThrowsInsufficientMemoryException569()
        {
            ArrayList arrayList;

            arrayList = ArrayListFactory.createFull();
            this.addTest(arrayList, (object)null, 0);
        }
Example #2
0
        public void removeTest318()
        {
            ArrayList arrayList;

            arrayList = ArrayListFactory.createFull();
            this.removeTest(arrayList, 3);
            Assert.IsNotNull((object)arrayList);
        }
        public void addTestThrowsInsufficientMemoryException613()
        {
            ArrayList arrayList;

            arrayList = ArrayListFactory.createFull();
            object boxi = (object)(default(int));

            this.addTest(arrayList, boxi, 3);
        }