16 $validator = new \ilGroupNameAsMailValidator(
'someHost',
function (
string $groupName) {
20 $this->assertTrue($validator->validate(
new ilMailAddress(
'phpunit',
'someHost')));
28 $validator = new \ilGroupNameAsMailValidator(
'someHost',
function (
string $groupName) {
32 $this->assertFalse($validator->validate(
new ilMailAddress(
'someHost',
'someHost')));
testGroupIsNotDetectedIfGroupNameDoesNotExists()
Class ilGroupNameAsMailValidatorTest.
testGroupIsDetectedIfGroupNameExists()