Exemple #1
0
        public void TypeofExportShouldBeExportText()
        {
            BaseTextItem     bt  = new BaseTextItem();
            BaseExportColumn bec = bt.CreateExportColumn();
            Type             t   = typeof(ExportText);

            Assert.AreEqual(t, bec.GetType(), "Type should be 'ExportText");
        }
        public void TypeofExportShouldBeExportContainer()
        {
            BaseRowItem      bri = new BaseRowItem();
            BaseExportColumn bec = bri.CreateExportColumn();
            Type             t   = typeof(ExportContainer);

            Assert.AreEqual(t, bec.GetType(), "Type should be 'ExportContainer");
        }