generated from ergebnis/php-package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NullProviderTest.php
45 lines (37 loc) · 1.08 KB
/
NullProviderTest.php
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
<?php
declare(strict_types=1);
/**
* Copyright (c) 2021-2024 Andreas Möller
*
* For the full copyright and license information, please view
* the LICENSE.md file that was distributed with this source code.
*
* @see https://github.com/ergebnis/data-provider
*/
namespace Ergebnis\DataProvider\Test\Unit;
use Ergebnis\DataProvider\NullProvider;
use Ergebnis\DataProvider\Test;
/**
* @covers \Ergebnis\DataProvider\AbstractProvider
* @covers \Ergebnis\DataProvider\NullProvider
*/
final class NullProviderTest extends AbstractProviderTestCase
{
/**
* @dataProvider \Ergebnis\DataProvider\NullProvider::null
*
* @param mixed $value
*/
public function testNullProvidesNull($value): void
{
self::assertNull($value);
}
public function testNullReturnsGeneratorThatProvidesNull(): void
{
$specifications = [
'null' => Test\Util\Specification\Identical::create(null),
];
$provider = NullProvider::null();
self::assertProvidesDataSetsForValuesSatisfyingSpecifications($specifications, $provider);
}
}