public void Set_Another_Validator_To_Replace_10_And_Reset(string no)
 {
     Assert.Throws <ArgumentNullException>(() => VATCodeValidatorHelper.SetValidator((int)VATLength.Ten, null));
     VATCodeValidatorHelper.SetValidator((int)VATLength.Ten, new NotImplementedVATCodeValidator());
     Assert.Throws <NotImplementedException>(() => VATCodeValidatorHelper.Validate(no));
     VATCodeValidatorHelper.ResetDefaultValidator();
     Assert.True(VATCodeValidatorHelper.Validate(no).IsValid);
 }