Validate give string is valid email address.
- Define function 'validate_email' which will accept string as argument.
- String should not be null.
- Use regexp to validate email.
- Use keyword pattern to define regex pattern.
- Function should pass all test cases.