Exemplo n.º 1
0
        public void addToEmptyLineCollection()
        {
            ILineCollection noLineCollection = new EmptyLineCollection();
            ILine           line             = new FakeLine();

            noLineCollection[0] = line;
        }
Exemplo n.º 2
0
        public void getNoLineCollection()
        {
            ILineCollection noLineCollection = new EmptyLineCollection();
            ILine           line;

            line = noLineCollection[1];
        }
Exemplo n.º 3
0
        public void createEmptyLineCollection()
        {
            ILineCollection noLineCollection = new EmptyLineCollection();

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