Skip to content

Commit f70a02d

Browse files
committed
ENSITECH-74
1 parent da8552a commit f70a02d

13 files changed

+12
-12
lines changed

tests/Models/ProductsIndex.php renamed to tests/Data/Models/ProductsIndex.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Ensi\LaravelElasticQuery\Tests\Models;
3+
namespace Ensi\LaravelElasticQuery\Tests\Data\Models;
44

55
use Ensi\LaravelElasticQuery\ElasticIndex;
66

tests/Seeds/IndexSeeder.php renamed to tests/Data/Seeds/IndexSeeder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Ensi\LaravelElasticQuery\Tests\Seeds;
3+
namespace Ensi\LaravelElasticQuery\Tests\Data\Seeds;
44

55
use Ensi\LaravelElasticQuery\ElasticClient;
66
use Illuminate\Support\Facades\ParallelTesting;

tests/Seeds/ProductIndexSeeder.php renamed to tests/Data/Seeds/ProductIndexSeeder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Ensi\LaravelElasticQuery\Tests\Seeds;
3+
namespace Ensi\LaravelElasticQuery\Tests\Data\Seeds;
44

55
class ProductIndexSeeder extends IndexSeeder
66
{

tests/Seeds/SeedRunner.php renamed to tests/Data/Seeds/SeedRunner.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Ensi\LaravelElasticQuery\Tests\Seeds;
3+
namespace Ensi\LaravelElasticQuery\Tests\Data\Seeds;
44

55
use Ensi\LaravelElasticQuery\ElasticClient;
66

tests/IntegrationTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace Ensi\LaravelElasticQuery\Tests;
44

55
use Ensi\LaravelElasticQuery\ElasticQuery;
6-
use Ensi\LaravelElasticQuery\Tests\Seeds\ProductIndexSeeder;
6+
use Ensi\LaravelElasticQuery\Tests\Data\Seeds\ProductIndexSeeder;
77

88
class IntegrationTestCase extends TestCase
99
{

tests/IntegrationTests/AggregationQueryIntegrationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
use Ensi\LaravelElasticQuery\Aggregating\MinMax;
66
use Ensi\LaravelElasticQuery\Contracts\AggregationsBuilder;
77
use Ensi\LaravelElasticQuery\Search\Sorting\Sort;
8+
use Ensi\LaravelElasticQuery\Tests\Data\Models\ProductsIndex;
89
use Ensi\LaravelElasticQuery\Tests\IntegrationTestCase;
9-
use Ensi\LaravelElasticQuery\Tests\Models\ProductsIndex;
1010

1111
use function PHPUnit\Framework\assertCount;
1212
use function PHPUnit\Framework\assertEquals;

tests/IntegrationTests/ElasticClientIntegrationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

33
use Ensi\LaravelElasticQuery\ElasticClient;
4+
use Ensi\LaravelElasticQuery\Tests\Data\Models\ProductsIndex;
45
use Ensi\LaravelElasticQuery\Tests\IntegrationTestCase;
5-
use Ensi\LaravelElasticQuery\Tests\Models\ProductsIndex;
66

77
use function PHPUnit\Framework\assertArrayNotHasKey;
88
use function PHPUnit\Framework\assertGreaterThanOrEqual;

tests/IntegrationTests/QueryLogIntegrationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

33
use Ensi\LaravelElasticQuery\ElasticQuery;
4+
use Ensi\LaravelElasticQuery\Tests\Data\Models\ProductsIndex;
45
use Ensi\LaravelElasticQuery\Tests\IntegrationTestCase;
5-
use Ensi\LaravelElasticQuery\Tests\Models\ProductsIndex;
66

77
use function PHPUnit\Framework\assertCount;
88
use function PHPUnit\Framework\assertGreaterThan;

tests/IntegrationTests/Search/FilteringSearchQueryIntegrationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
use Ensi\LaravelElasticQuery\Contracts\BoolQuery;
44
use Ensi\LaravelElasticQuery\Contracts\MatchOptions;
55
use Ensi\LaravelElasticQuery\Contracts\MultiMatchOptions;
6+
use Ensi\LaravelElasticQuery\Tests\Data\Models\ProductsIndex;
67
use Ensi\LaravelElasticQuery\Tests\IntegrationTests\Search\TestCases\SearchIntegrationTestCase;
7-
use Ensi\LaravelElasticQuery\Tests\Models\ProductsIndex;
88

99
uses(SearchIntegrationTestCase::class);
1010

0 commit comments

Comments
 (0)