public void rpt_NewCustomer_ResourceName_Property_String_Type_Verify_Test()
        {
            // Arrange
            var rptNewCustomer = new rpt_NewCustomer();

            rptNewCustomer.ResourceName = Fixture.Create <string>();
            var stringType = rptNewCustomer.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();
        }
        public void rpt_NewCustomer_Class_Invalid_Property_Parameter_testblastNotPresent_Access_Using_Reflexion_Doesnt_Throw_Exception_Test()
        {
            // Arrange
            const string propertyNameParameterTestblast = "Parameter_testblastNotPresent";
            var          rptNewCustomer = new rpt_NewCustomer();

            // Act , Assert
            Should.NotThrow(action: () => rptNewCustomer.GetType().GetProperty(propertyNameParameterTestblast));
        }
        public void rpt_NewCustomer_Class_Invalid_Property_FullResourceNameNotPresent_Access_Using_Reflexion_Doesnt_Throw_Exception_Test()
        {
            // Arrange
            const string propertyNameFullResourceName = "FullResourceNameNotPresent";
            var          rptNewCustomer = new rpt_NewCustomer();

            // Act , Assert
            Should.NotThrow(action: () => rptNewCustomer.GetType().GetProperty(propertyNameFullResourceName));
        }
        public void rpt_NewCustomer_Section7_Property_Setting_String_Throw_Argument_Exception_Test()
        {
            // Arrange
            const string propertyNameSection7 = "Section7";
            var          rptNewCustomer       = new rpt_NewCustomer();
            var          randomString         = Fixture.Create <string>();
            var          propertyInfo         = rptNewCustomer.GetType().GetProperty(propertyNameSection7);

            // Act , Assert
            propertyInfo.ShouldNotBeNull();
            Should.Throw <ArgumentException>(actual: () => propertyInfo.SetValue(rptNewCustomer, randomString, null));
        }
        public void rpt_NewCustomer_Section7_Property_Is_Present_In_Class_As_Public_Test()
        {
            // Arrange
            const string propertyNameSection7 = "Section7";
            var          rptNewCustomer       = new rpt_NewCustomer();
            var          propertyInfo         = rptNewCustomer.GetType().GetProperty(propertyNameSection7);

            // Act
            var canRead = propertyInfo.CanRead;

            // Assert
            propertyInfo.ShouldNotBeNull();
            canRead.ShouldBeTrue();
        }
        public void rpt_NewCustomer_Parameter_testblast_Property_Is_Present_In_Class_As_Public_Test()
        {
            // Arrange
            const string propertyNameParameterTestblast = "Parameter_testblast";
            var          rptNewCustomer = new rpt_NewCustomer();
            var          propertyInfo   = rptNewCustomer.GetType().GetProperty(propertyNameParameterTestblast);

            // Act
            var canRead = propertyInfo.CanRead;

            // Assert
            propertyInfo.ShouldNotBeNull();
            canRead.ShouldBeTrue();
        }
        public void rpt_NewCustomer_NewGenerator_Property_Bool_Type_Verify_Test()
        {
            // Arrange
            var rptNewCustomer = new rpt_NewCustomer();

            rptNewCustomer.NewGenerator = Fixture.Create <bool>();
            var boolType = rptNewCustomer.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();
        }
        public void Constructor_rpt_NewCustomer_5_Objects_Creation_No_Paramters_Test()
        {
            // Arrange
            var firstrptNewCustomer  = new rpt_NewCustomer();
            var secondrptNewCustomer = new rpt_NewCustomer();
            var thirdrptNewCustomer  = new rpt_NewCustomer();
            var fourthrptNewCustomer = new rpt_NewCustomer();
            var fifthrptNewCustomer  = new rpt_NewCustomer();
            var sixthrptNewCustomer  = new rpt_NewCustomer();

            // Act, Assert
            firstrptNewCustomer.ShouldNotBeNull();
            secondrptNewCustomer.ShouldNotBeNull();
            thirdrptNewCustomer.ShouldNotBeNull();
            fourthrptNewCustomer.ShouldNotBeNull();
            fifthrptNewCustomer.ShouldNotBeNull();
            sixthrptNewCustomer.ShouldNotBeNull();
            firstrptNewCustomer.ShouldNotBeSameAs(secondrptNewCustomer);
            thirdrptNewCustomer.ShouldNotBeSameAs(firstrptNewCustomer);
            fourthrptNewCustomer.ShouldNotBeSameAs(firstrptNewCustomer);
            fifthrptNewCustomer.ShouldNotBeSameAs(firstrptNewCustomer);
            sixthrptNewCustomer.ShouldNotBeSameAs(firstrptNewCustomer);
            sixthrptNewCustomer.ShouldNotBeSameAs(fourthrptNewCustomer);
        }