public void Testimonial()
        {
            CustomerTestimonial ct = new CustomerTestimonial();

            ct.CustomerName = "John Doe";
            ct.Text         = "Best Hotel ever! Snuggles loved it!";
            Assert.IsNotNull(ct.Text);
            Assert.IsNotNull(ct.CustomerName);
        }
        public void CustomerTestimonialNullCheck()
        {
            CustomerTestimonial ct = new CustomerTestimonial();

            Assert.IsNotNull(ct);
        }