Beispiel #1
0
        public void addToEmptyLineCollection()
        {
            ILineCollection noLineCollection = new EmptyLineCollection();
            ILine           line             = new FakeLine();

            noLineCollection[0] = line;
        }
Beispiel #2
0
        public void getNoLineCollection()
        {
            ILineCollection noLineCollection = new EmptyLineCollection();
            ILine           line;

            line = noLineCollection[1];
        }
Beispiel #3
0
        public void createEmptyLineCollection()
        {
            ILineCollection noLineCollection = new EmptyLineCollection();

            Assert.AreEqual(noLineCollection.Size, 0);
        }