public void ExportColumnIsNotNull()
        {
            BaseRowItem      bri = new BaseRowItem();
            BaseExportColumn bec = bri.CreateExportColumn();

            Assert.IsNotNull(bec);
        }
		public void TypeofExportShouldBeExportContainer ()
		{
			BaseRowItem bri = new BaseRowItem();
			BaseExportColumn bec = bri.CreateExportColumn();
			Type t = typeof(ExportContainer);
			Assert.AreEqual(t,bec.GetType(),"Type should be 'ExportContainer");
		}
		public void RowValuesEqualExportedText ()
		{
			BaseRowItem bri = new BaseRowItem();
			ExportContainer ec = (ExportContainer)bri.CreateExportColumn();
			Assert.AreEqual (0,ec.Items.Count,"Items.Count should BeforePrintEventArgs '0'");
			Assert.AreEqual(bri.Size,ec.StyleDecorator.Size);                 
		}
        public void TypeofExportShouldBeExportContainer()
        {
            BaseRowItem      bri = new BaseRowItem();
            BaseExportColumn bec = bri.CreateExportColumn();
            Type             t   = typeof(ExportContainer);

            Assert.AreEqual(t, bec.GetType(), "Type should be 'ExportContainer");
        }
Beispiel #5
0
        public void RowValuesEqualExportedText()
        {
            BaseRowItem     bri = new BaseRowItem();
            ExportContainer ec  = (ExportContainer)bri.CreateExportColumn();

            Assert.AreEqual(0, ec.Items.Count, "Items.Count should BeforePrintEventArgs '0'");
            Assert.AreEqual(bri.Size, ec.StyleDecorator.Size);
        }
		public void ExportColumnIsNotNull ()
		{
			BaseRowItem bri = new BaseRowItem();
			BaseExportColumn bec = bri.CreateExportColumn();
			Assert.IsNotNull(bec);
		}