1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
<?php
declare(strict_types=1);
namespace StellarWP\Validation\Tests\Unit\Rules;
use StellarWP\Validation\Rules\Email; use StellarWP\Validation\Tests\TestCase;
class EmailTest extends TestCase { /** * @since 1.1.0 * * @dataProvider emailsProvider */ public function testEmailRule($email, bool $shouldBeValid) { $rule = new Email();
if ($shouldBeValid) { self::assertValidationRulePassed($rule, $email); } else { self::assertValidationRuleFailed($rule, $email); } }
/** * @since 1.1.0 * * @return array<int, array<mixed, bool>> */ public function emailsProvider(): array { return [ // Valid emails ['[email protected]', true], ['[email protected]', true],
// Invalid emails [true, false], [123, false], ['jason.adams', false], ['jason.adams@', false], ['jason.adams@givewp', false], ['jason.adams@givewp.', false], ]; } }
|