Skip to content

Commit 05952ec

Browse files
Rename test folders
1 parent 844bdc1 commit 05952ec

File tree

110 files changed

+9
-29
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+9
-29
lines changed

phpunit.xml.dist

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,13 @@
66
>
77
<testsuites>
88
<testsuite name="unit">
9-
<directory>tests/Unit</directory>
9+
<directory>tests/unit</directory>
10+
</testsuite>
11+
<testsuite name="end-to-end">
12+
<directory>tests/end-to-end</directory>
1013
</testsuite>
1114
<testsuite name="integration">
12-
<directory>tests/Integration</directory>
15+
<directory>tests/integration</directory>
1316
</testsuite>
1417
</testsuites>
1518
<coverage processUncoveredFiles="true" cacheDirectory="coverage/cache" pathCoverage="true">

tests/Unit/MoviesTest.php renamed to tests/end-to-end/MoviesTest.php

Lines changed: 4 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -7,43 +7,20 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*/
10-
namespace WikibaseSolutions\CypherDSL\Tests\Unit;
10+
namespace WikibaseSolutions\CypherDSL\Tests\EndToEnd;
1111

1212
use PHPUnit\Framework\TestCase;
13-
use TypeError;
14-
use WikibaseSolutions\CypherDSL\Expressions\Literals\Boolean;
15-
use WikibaseSolutions\CypherDSL\Expressions\Literals\Float_;
16-
use WikibaseSolutions\CypherDSL\Expressions\Literals\Integer;
17-
use WikibaseSolutions\CypherDSL\Expressions\Literals\List_;
18-
use WikibaseSolutions\CypherDSL\Expressions\Literals\Literal;
19-
use WikibaseSolutions\CypherDSL\Expressions\Literals\Map;
20-
use WikibaseSolutions\CypherDSL\Expressions\Literals\String_;
21-
use WikibaseSolutions\CypherDSL\Expressions\Procedures\Procedure;
22-
use WikibaseSolutions\CypherDSL\Expressions\RawExpression;
23-
use WikibaseSolutions\CypherDSL\Expressions\Variable;
24-
use function WikibaseSolutions\CypherDSL\float;
25-
use function WikibaseSolutions\CypherDSL\function_;
26-
use function WikibaseSolutions\CypherDSL\integer;
27-
use function WikibaseSolutions\CypherDSL\list_;
28-
use function WikibaseSolutions\CypherDSL\literal;
29-
use function WikibaseSolutions\CypherDSL\map;
3013
use function WikibaseSolutions\CypherDSL\node;
31-
use WikibaseSolutions\CypherDSL\Patterns\Node;
32-
use WikibaseSolutions\CypherDSL\Patterns\Relationship;
33-
use WikibaseSolutions\CypherDSL\Query;
3414
use function WikibaseSolutions\CypherDSL\query;
35-
use function WikibaseSolutions\CypherDSL\raw;
36-
use function WikibaseSolutions\CypherDSL\relationship;
3715
use function WikibaseSolutions\CypherDSL\relationshipUni;
38-
use function WikibaseSolutions\CypherDSL\string;
39-
use function WikibaseSolutions\CypherDSL\variable;
4016

4117
/**
42-
* This class contains some end-to-end tests to test the creation of Cypher queries present in the ":play movies" example.
18+
* This class contains some end-to-end tests to test the creation of Cypher queries present in the ":play movies"
19+
* example.
4320
*
4421
* @coversNothing
4522
*
46-
* @link https://neo4j.com/developer/example-data/
23+
* @see https://neo4j.com/developer/example-data/
4724
*/
4825
final class MoviesTest extends TestCase
4926
{
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)