Exemple #1
0
        public void rpt_BillingNotes_ResourceName_Property_String_Type_Verify_Test()
        {
            // Arrange
            var rptBillingNotes = new rpt_BillingNotes();

            rptBillingNotes.ResourceName = Fixture.Create <string>();
            var stringType = rptBillingNotes.ResourceName.GetType();

            // Act
            var isTypeString  = typeof(string) == stringType;
            var isTypeInt     = typeof(int) == stringType;
            var isTypeDecimal = typeof(decimal) == stringType;
            var isTypeLong    = typeof(long) == stringType;
            var isTypeBool    = typeof(bool) == stringType;
            var isTypeDouble  = typeof(double) == stringType;
            var isTypeFloat   = typeof(float) == stringType;

            // Assert
            isTypeString.ShouldBeTrue();
            isTypeInt.ShouldBeFalse();
            isTypeDecimal.ShouldBeFalse();
            isTypeLong.ShouldBeFalse();
            isTypeBool.ShouldBeFalse();
            isTypeDouble.ShouldBeFalse();
            isTypeFloat.ShouldBeFalse();
        }
Exemple #2
0
        public void rpt_BillingNotes_Class_Invalid_Property_GroupHeaderSection2NotPresent_Access_Using_Reflexion_Doesnt_Throw_Exception_Test()
        {
            // Arrange
            const string propertyNameGroupHeaderSection2 = "GroupHeaderSection2NotPresent";
            var          rptBillingNotes = new rpt_BillingNotes();

            // Act , Assert
            Should.NotThrow(action: () => rptBillingNotes.GetType().GetProperty(propertyNameGroupHeaderSection2));
        }
Exemple #3
0
        public void rpt_BillingNotes_Class_Invalid_Property_FullResourceNameNotPresent_Access_Using_Reflexion_Doesnt_Throw_Exception_Test()
        {
            // Arrange
            const string propertyNameFullResourceName = "FullResourceNameNotPresent";
            var          rptBillingNotes = new rpt_BillingNotes();

            // Act , Assert
            Should.NotThrow(action: () => rptBillingNotes.GetType().GetProperty(propertyNameFullResourceName));
        }
Exemple #4
0
        public void rpt_BillingNotes_Section5_Property_Setting_String_Throw_Argument_Exception_Test()
        {
            // Arrange
            const string propertyNameSection5 = "Section5";
            var          rptBillingNotes      = new rpt_BillingNotes();
            var          randomString         = Fixture.Create <string>();
            var          propertyInfo         = rptBillingNotes.GetType().GetProperty(propertyNameSection5);

            // Act , Assert
            propertyInfo.ShouldNotBeNull();
            Should.Throw <ArgumentException>(actual: () => propertyInfo.SetValue(rptBillingNotes, randomString, null));
        }
Exemple #5
0
        public void rpt_BillingNotes_Section5_Property_Is_Present_In_Class_As_Public_Test()
        {
            // Arrange
            const string propertyNameSection5 = "Section5";
            var          rptBillingNotes      = new rpt_BillingNotes();
            var          propertyInfo         = rptBillingNotes.GetType().GetProperty(propertyNameSection5);

            // Act
            var canRead = propertyInfo.CanRead;

            // Assert
            propertyInfo.ShouldNotBeNull();
            canRead.ShouldBeTrue();
        }
Exemple #6
0
        public void rpt_BillingNotes_NewGenerator_Property_Bool_Type_Verify_Test()
        {
            // Arrange
            var rptBillingNotes = new rpt_BillingNotes();

            rptBillingNotes.NewGenerator = Fixture.Create <bool>();
            var boolType = rptBillingNotes.NewGenerator.GetType();

            // Act
            var isTypeBool            = typeof(bool) == boolType;
            var isTypeNullableBool    = typeof(bool?) == boolType;
            var isTypeString          = typeof(string) == boolType;
            var isTypeInt             = typeof(int) == boolType;
            var isTypeDecimal         = typeof(decimal) == boolType;
            var isTypeLong            = typeof(long) == boolType;
            var isTypeDouble          = typeof(double) == boolType;
            var isTypeFloat           = typeof(float) == boolType;
            var isTypeIntNullable     = typeof(int?) == boolType;
            var isTypeDecimalNullable = typeof(decimal?) == boolType;
            var isTypeLongNullable    = typeof(long?) == boolType;
            var isTypeDoubleNullable  = typeof(double?) == boolType;
            var isTypeFloatNullable   = typeof(float?) == boolType;

            // Assert
            isTypeBool.ShouldBeTrue();
            isTypeString.ShouldBeFalse();
            isTypeNullableBool.ShouldBeFalse();
            isTypeInt.ShouldBeFalse();
            isTypeDecimal.ShouldBeFalse();
            isTypeLong.ShouldBeFalse();
            isTypeDouble.ShouldBeFalse();
            isTypeFloat.ShouldBeFalse();
            isTypeIntNullable.ShouldBeFalse();
            isTypeDecimalNullable.ShouldBeFalse();
            isTypeLongNullable.ShouldBeFalse();
            isTypeDoubleNullable.ShouldBeFalse();
            isTypeFloatNullable.ShouldBeFalse();
        }
Exemple #7
0
        public void Constructor_rpt_BillingNotes_5_Objects_Creation_No_Paramters_Test()
        {
            // Arrange
            var firstrptBillingNotes  = new rpt_BillingNotes();
            var secondrptBillingNotes = new rpt_BillingNotes();
            var thirdrptBillingNotes  = new rpt_BillingNotes();
            var fourthrptBillingNotes = new rpt_BillingNotes();
            var fifthrptBillingNotes  = new rpt_BillingNotes();
            var sixthrptBillingNotes  = new rpt_BillingNotes();

            // Act, Assert
            firstrptBillingNotes.ShouldNotBeNull();
            secondrptBillingNotes.ShouldNotBeNull();
            thirdrptBillingNotes.ShouldNotBeNull();
            fourthrptBillingNotes.ShouldNotBeNull();
            fifthrptBillingNotes.ShouldNotBeNull();
            sixthrptBillingNotes.ShouldNotBeNull();
            firstrptBillingNotes.ShouldNotBeSameAs(secondrptBillingNotes);
            thirdrptBillingNotes.ShouldNotBeSameAs(firstrptBillingNotes);
            fourthrptBillingNotes.ShouldNotBeSameAs(firstrptBillingNotes);
            fifthrptBillingNotes.ShouldNotBeSameAs(firstrptBillingNotes);
            sixthrptBillingNotes.ShouldNotBeSameAs(firstrptBillingNotes);
            sixthrptBillingNotes.ShouldNotBeSameAs(fourthrptBillingNotes);
        }