testPwdMethods function

void testPwdMethods()

Implementation

void testPwdMethods() {
  print('Password strength of "adamsmith": ${passwordStrength('adamsmith')}');
  print(
      'Password strength of "numba61987@_": ${passwordStrength('numba61987@_')}');
  print('Security of "numba61987@_": ${isSecure('numba61987@_')}');
  print('Security of "adamsmith": ${isSecure('adamsmith')}');
}