Beispiel #1
0
        public void remove83101()
        {
            ArrayList arrayList;

            arrayList = ArrayListFactory.Create2();
            this.remove(arrayList, 0);
            Assert.IsNotNull((object)arrayList);
        }
Beispiel #2
0
        public void addThrowsInsufficientMemoryException99()
        {
            ArrayList arrayList;

            arrayList = ArrayListFactory.Create2();
            object s0 = new object();

            this.add(arrayList, s0, 0);
        }