We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4197eb0 commit 7378cfdCopy full SHA for 7378cfd
tests/Unit/SchemaFaker/StaticArrayFakerTest.php
@@ -10,7 +10,7 @@
10
use Vural\OpenAPIFaker\Tests\Unit\UnitTestCase;
11
12
use function array_unique;
13
-use function Safe\sort;
+use function sort;
14
15
/**
16
* @uses \Vural\OpenAPIFaker\SchemaFaker\BooleanFaker
@@ -34,22 +34,6 @@ public function setUp(): void
34
$this->options = (new Options())->setStrategy(Options::STRATEGY_STATIC);
35
}
36
37
- /** @test */
38
- function it_can_generate_items()
39
- {
40
- $fakeData = ArrayFaker::generate(SchemaFactory::fromJson(
41
- <<<'JSON'
42
-{
43
- "items": {
44
- "type": "string"
45
- }
46
-}
47
-JSON,
48
- ), $this->options);
49
-
50
- $this->assertMatchesJsonSnapshot($fakeData);
51
52
53
/** @test */
54
function it_can_handle_min_items()
55
{
0 commit comments