public void ValidMethodOK()
        {
            //create an instance of the class we want to create
            clsGenre AGenre = new clsGenre();
            //boolean variable to store the result of the validation
            Boolean Ok = false;
            //create some data to use with the method
            string GenreName = "Bob";
            string Age       = "23";

            //invoke the method
            Ok = AGenre.Valid(GenreName, Age);
            //test tto see that the reuslt is correct
            Assert.IsTrue(Ok);
        }