| 9 | namespace validators { |
| 10 | |
| 11 | EmptyStringValidator::EmptyStringValidator(const QString &message) : IStringValidator(message) |
| 12 | { |
| 13 | // do nothing |
| 14 | } |
| 15 | |
| 16 | bool EmptyStringValidator::validate(const QString &input) const |
| 17 | { |
nothing calls this directly
no outgoing calls
no test coverage detected